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.
79 lines
1.4 KiB
TypeScript
79 lines
1.4 KiB
TypeScript
2 years ago
|
/*
|
||
|
* @Author: zhou lei
|
||
|
* @Date: 2021-11-11 11:09:57
|
||
|
* @LastEditTime: 2021-12-14 10:13:18
|
||
|
* @LastEditors: zhou lei
|
||
|
* @Description:
|
||
|
* @FilePath: /wms_haiwai_app/src/pages/raw/commission/goOut/config.ts
|
||
|
* 联系方式:910592680@qq.com 18669792120 科海达信息技术有限公司
|
||
|
*/
|
||
|
/**
|
||
|
* 看单明细表格列
|
||
|
*/
|
||
|
import vm from '@/main';
|
||
|
export const headers = [
|
||
|
{
|
||
|
label: vm.$t('message.Pi_OrderNo'),
|
||
|
key: 'order1',
|
||
|
width: 200,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.Line'),
|
||
|
key: 'order2',
|
||
|
width: 200,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.matcode'),
|
||
|
key: 'productCode',
|
||
|
width: 300,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.po_MaterielDes'),
|
||
|
key: 'productDescZh',
|
||
|
width: 430,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.product_barCode'),
|
||
|
key: 'barcode',
|
||
|
width: 260,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.CommissionedLocation'),
|
||
|
key: 'locCode',
|
||
|
width: 200,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.Operation'),
|
||
|
key: 'createdBy',
|
||
|
width: 200,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.operatingTime'),
|
||
|
key: 'createdDate',
|
||
|
width: 470,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export const detailHeader = [
|
||
|
{
|
||
|
label: vm.$t('message.po_MaterielNo'),
|
||
|
key: 'materialCode',
|
||
|
width: 301,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.CommissionedLocation'),
|
||
|
key: 'locCode',
|
||
|
width: 186,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.product_Number'),
|
||
|
key: 'qty',
|
||
|
width: 186,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.product_barCode'),
|
||
|
key: 'barcode',
|
||
|
width: 300,
|
||
|
},
|
||
|
];
|