Browse Source

YT-1215创建供应商发货申请,选择要货计划单号时,弹窗内列表把 “要货计划单号” 挪到最前面

intex_online20241228
张立 3 months ago
parent
commit
725c3fca61
  1. 31
      src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts

31
src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts

@ -550,6 +550,21 @@ export const PurchasePlanMainRules = reactive({
*/
export const PurchasePlanDetail = useCrudSchemas(
reactive<CrudSchema[]>([
{
label: '要货计划单号',
field: 'number',
sort: 'custom',
isTableForm: false,
hiddenInMain: true,
table: {
width: 180
},
form: {
componentProps: {
disabled: true
}
}
},
{
label: '采购订单号',
field: 'poNumber',
@ -861,21 +876,7 @@ export const PurchasePlanDetail = useCrudSchemas(
}
},
{
label: '要货计划单号',
field: 'number',
sort: 'custom',
isTableForm: false,
hiddenInMain: true,
table: {
width: 180
},
form: {
componentProps: {
disabled: true
}
}
},
{
label: '已收货数量',
field: 'receivedQty',

Loading…
Cancel
Save