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.
92 lines
1.7 KiB
TypeScript
92 lines
1.7 KiB
TypeScript
/*
|
|
* @Author: zhou lei
|
|
* @Date: 2021-11-10 17:14:44
|
|
* @LastEditTime: 2021-12-14 10:13:56
|
|
* @LastEditors: zhou lei
|
|
* @Description:
|
|
* @FilePath: /wms_haiwai_app/src/pages/raw/commission/entrant/config.ts
|
|
* 联系方式:910592680@qq.com 18669792120 科海达信息技术有限公司
|
|
*/
|
|
/**
|
|
* 看单明细表格列
|
|
*/
|
|
import vm from '@/main';
|
|
export const headers = [
|
|
{
|
|
label: vm.$t('message.CommissionedSingleNumber'),
|
|
key: 'poNo',
|
|
width: 200,
|
|
},
|
|
{
|
|
label: vm.$t('message.po_MaterielNo'),
|
|
key: 'materialCode',
|
|
width: 300,
|
|
},
|
|
{
|
|
label: vm.$t('message.CommissionedMaterielDesc'),
|
|
key: 'materialDesc',
|
|
width: 300,
|
|
},
|
|
{
|
|
label: vm.$t('message.CommissionedNumber'),
|
|
key: 'receiptAmount',
|
|
width: 200,
|
|
},
|
|
{
|
|
label: vm.$t('message.CommissionedLocation'),
|
|
key: 'wlCode',
|
|
width: 200,
|
|
},
|
|
{
|
|
label: vm.$t('message.Container'),
|
|
key: 'sn',
|
|
width: 400,
|
|
},
|
|
];
|
|
export const detailHeader = [
|
|
{
|
|
label: vm.$t('message.po_MaterielNo'),
|
|
key: 'materialCode',
|
|
width: 301,
|
|
},
|
|
{
|
|
label: vm.$t('message.CommissionedLocation'),
|
|
key: 'wlCode',
|
|
width: 186,
|
|
},
|
|
{
|
|
label: vm.$t('message.product_Number'),
|
|
key: 'nowAmount',
|
|
width: 186,
|
|
},
|
|
];
|
|
export const DNheader = [
|
|
{
|
|
label: vm.$t('message.Line'),
|
|
key: 'poLine',
|
|
},
|
|
{
|
|
label: vm.$t('message.po_OddNumbers'),
|
|
key: 'poNo',
|
|
width: 350,
|
|
},
|
|
{
|
|
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.Container'),
|
|
key: 'palletCode',
|
|
width: 400,
|
|
},
|
|
];
|