Browse Source

SCP《要货计划》增加 “已收库存数量” 字段,已收库存数量=《采购收货记录》中该要货计划该品番的收货数量之和;已收采购数量=已收库存数量 / 转换率。已收库存数量和已收采购数量需要根据《采购收货记录》实时更新

intex_online20250509
叶佳兴 4 weeks ago
parent
commit
4c690828df
  1. 3
      src/views/wms/purchasereceiptManage/purchasereceipt/purchasereceiptRecordMain/purchasereceiptRecordMain.data.ts
  2. 12
      src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts

3
src/views/wms/purchasereceiptManage/purchasereceipt/purchasereceiptRecordMain/purchasereceiptRecordMain.data.ts

@ -74,7 +74,8 @@ export const PurchasereceiptRecordMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 180 width: 180
}, },
isTable:false isTable:true,
sortTableDefault:5,
}, },
{ {
label: '供应商代码', label: '供应商代码',

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

@ -1052,6 +1052,18 @@ export const PurchasePlanDetail = useCrudSchemas(
isTable: true, isTable: true,
}, },
{
label: '已收库存数量',
field: 'inventoryedQty',
sort: 'custom',
table: {
width: 150
},
isTableForm: false,
isForm: false,
isTable: true,
},
// {需求作废 // {需求作废
// label: '受入地', // label: '受入地',

Loading…
Cancel
Save