Browse Source

盘点需求优化-盘点调整申请,表头需要增加调整金额合计(标准成本单价*盘点差异数量,累合计)。

intex
叶佳兴 2 days ago
parent
commit
e9b78b830e
  1. 64
      src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts

64
src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts

@ -115,6 +115,29 @@ export const CountadjustRequestMain = useCrudSchemas(<CrudSchema[]>([
}
}
},
{
label: '调整金额合计',
field: 'allAdjustmentPrice',
sort: 'custom',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 1,
precision: 2
}
},
tableForm: {
type: 'InputNumber',
min: 1,
precision: 2
}
},
{
label: '申请时间',
field: 'requestTime',
@ -525,6 +548,47 @@ export const CountadjustRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
min: 1,
precision: 6
}
},
{
label: '标准成本价格',
field: 'standardCostPrice',
sort: 'custom',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 1,
precision: 6
}
},
tableForm: {
type: 'InputNumber',
min: 1,
precision: 6
}
},
{
label: '调整后金额',
field: 'adjustmentPrice',
sort: 'custom',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 1,
precision: 2
}
},
tableForm: {
type: 'InputNumber',
min: 1,
precision: 2
}
},
{
label: '仓库代码',

Loading…
Cancel
Save