Browse Source

增加已发货数量

master
zhaoxuebing 9 months ago
parent
commit
224218d8af
  1. 1
      src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue
  2. 25
      src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/supplierdeliverRequestMain.data.ts

1
src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue

@ -154,6 +154,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row) =>
row['poLine'] = val[0]['poLine'] row['poLine'] = val[0]['poLine']
row['uom'] = val[0]['uom'] row['uom'] = val[0]['uom']
row['planQty'] = val[0]['planQty'] row['planQty'] = val[0]['planQty']
row['shippedQty'] = val[0]['shippedQty']
} }
} else { } else {
const setV = {} const setV = {}

25
src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/supplierdeliverRequestMain.data.ts

@ -858,7 +858,7 @@ export const SupplierdeliverRequestDetail = useCrudSchemas(reactive<CrudSchema[]
} }
}, },
{ {
label: '计划数量数量', label: '计划数量',
field: 'planQty', field: 'planQty',
sort: 'custom', sort: 'custom',
table: { table: {
@ -880,6 +880,29 @@ export const SupplierdeliverRequestDetail = useCrudSchemas(reactive<CrudSchema[]
precision: 6 precision: 6
} }
}, },
{
label: '已发货数量',
field: 'shippedQty',
sort: 'custom',
table: {
width: 150
},
isForm:false,
form: {
component: 'InputNumber',
componentProps: {
disabled:true,
min: 1,
precision: 6
}
},
tableForm: {
disabled:true,
type: 'InputNumber',
min: 1,
precision: 6
}
},
{ {
label: '数量', label: '数量',
field: 'qty', field: 'qty',

Loading…
Cancel
Save