|
|
@ -4,6 +4,7 @@ import * as CustomerApi from '@/api/wms/customer' |
|
|
|
import { Customer } from '../../../basicDataManage/customerManage/customer/customer.data' |
|
|
|
import * as LocationApi from '@/api/wms/location' |
|
|
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' |
|
|
|
import { truncate } from 'fs' |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
@ -55,20 +56,20 @@ export const DeliverRecordMain = useCrudSchemas( |
|
|
|
isTable: true, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '客户订单号', |
|
|
|
field: 'customerOrderNumber', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
isSearch: true, |
|
|
|
isTable: true, |
|
|
|
isForm: false, |
|
|
|
search: { |
|
|
|
component: 'Input', |
|
|
|
} |
|
|
|
}, |
|
|
|
// {
|
|
|
|
// label: '客户订单号',
|
|
|
|
// field: 'customerOrderNumber',
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 180
|
|
|
|
// },
|
|
|
|
// isSearch: true,
|
|
|
|
// isTable: true,
|
|
|
|
// isForm: false,
|
|
|
|
// search: {
|
|
|
|
// component: 'Input',
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
{ |
|
|
|
label: '车牌号', |
|
|
|
field: 'vehiclePlateNumber', |
|
|
@ -244,14 +245,21 @@ export const DeliverRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
// width: 150
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
|
|
|
|
{ |
|
|
|
label: '到库位', |
|
|
|
field: 'toLocationCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
label: '客户订单号', |
|
|
|
field: 'customerOrderNumber', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
isSearch: true, |
|
|
|
isTable: true, |
|
|
|
isForm: false, |
|
|
|
search: { |
|
|
|
component: 'Input', |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '品番', |
|
|
|
field: 'itemCode', |
|
|
@ -350,6 +358,7 @@ export const DeliverRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
}, |
|
|
|
hiddenInMain: true, |
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
label: '单价', |
|
|
|
field: 'singlePrice', |
|
|
@ -402,6 +411,14 @@ export const DeliverRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
}, |
|
|
|
hiddenInMain: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '到库位', |
|
|
|
field: 'toLocationCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '到库位组', |
|
|
|
field: 'toLocationGroupCode', |
|
|
|