Browse Source

YT-2619 《供应商模具费用》增加 “品号” 的查询项;主表增加字段 “模具费总金额”,模具费总金额=明细中的金额之和,保留两位小数

intex_online20250523
叶佳兴 2 weeks ago
parent
commit
ae04ca74c5
  1. 18
      src/views/wms/deliversettlementManage/moldAllocation/supplierMoldCostMain/supplierMoldCostMain.data.ts

18
src/views/wms/deliversettlementManage/moldAllocation/supplierMoldCostMain/supplierMoldCostMain.data.ts

@ -68,12 +68,26 @@ export const SupplierMoldCostMain = useCrudSchemas(reactive<CrudSchema[]>([
}
}
},
{
label: '物料品号',
field: 'articleNumber',
sort: 'custom',
isTable: false,
isForm: false,
isSearch: true,
},
{
label: '版本号',
field: 'versionNumber',
sort: 'custom',
isTable: true
},
{
label: '模具费总金额',
field: 'allAmount',
sort: 'custom',
isTable: true
},
{
label: '创建者',
field: 'creator',
@ -156,7 +170,9 @@ export const SupplierMoldCostDetail = useCrudSchemas(reactive<CrudSchema[]>([
label: '物料品号',
field: 'articleNumber',
sort: 'custom',
isForm: false,
isForm: true,
isSearch: true,
isTable: true,
},
{
label: '车型',

Loading…
Cancel
Save