You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
1.7 KiB
TypeScript
100 lines
1.7 KiB
TypeScript
/**
|
|
* 看单明细表格列
|
|
*/
|
|
import vm from '@/main';
|
|
export const headers = [
|
|
{
|
|
label: vm.$t('message.Line'),
|
|
key: 'poLine',
|
|
},
|
|
{
|
|
label: vm.$t('message.Pi_materielNo'),
|
|
key: 'materialCode',
|
|
width: 350,
|
|
},
|
|
{
|
|
label: vm.$t('message.CommissionedLocation'),
|
|
key: 'wlCode',
|
|
},
|
|
{
|
|
label: vm.$t('message.product_Number'),
|
|
key: 'receiptAmount',
|
|
},
|
|
// {
|
|
// label: vm.$t('message.po_RemainingQuantity'),
|
|
// key: 'splitAmount',
|
|
// },
|
|
// {
|
|
// label: vm.$t('message.po_Location'),
|
|
// key: 'location',
|
|
// },
|
|
// {
|
|
// label: '物料详情',
|
|
// key: 'materialDesc',
|
|
// },
|
|
// {
|
|
// label: '收货数量',
|
|
// key: 'receiptAmount',
|
|
// },
|
|
// {
|
|
// label: '发货数量',
|
|
// key: 'requestAmount',
|
|
// },
|
|
// {
|
|
// label: '过账信息',
|
|
// key: 'accountingMessage',
|
|
// },
|
|
// {
|
|
// label: '应',
|
|
// key: 'y',
|
|
// },
|
|
// {
|
|
// label: '过账状态',
|
|
// key: 'accountingStatus',
|
|
// },
|
|
// {
|
|
// label: '采购订单号',
|
|
// key: 'poNo',
|
|
// },
|
|
// {
|
|
// label: '行号',
|
|
// key: 'poLine',
|
|
// },
|
|
// {
|
|
// label: '单位',
|
|
// key: 'dw',
|
|
// },
|
|
// {
|
|
// label: 'sap库存地点',
|
|
// key: 'kw',
|
|
// },
|
|
// {
|
|
// label: 'ID',
|
|
// key: 'rawOrderInId',
|
|
// },
|
|
// {
|
|
// label: '工厂',
|
|
// key: 'factoryCodeSap',
|
|
// },
|
|
// {
|
|
// label: '质检状态',
|
|
// key: 'qualityStatus',
|
|
// },
|
|
// {
|
|
// label: '供应商',
|
|
// key: 'supplyCode',
|
|
// },
|
|
// {
|
|
// label: '采购组',
|
|
// key: 'buyerGroup',
|
|
// },
|
|
// {
|
|
// label: '工位',
|
|
// key: 'sendSpot',
|
|
// },
|
|
// {
|
|
// label: 'mrp',
|
|
// key: 'mrpCode',
|
|
// },
|
|
];
|