diff --git a/src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts b/src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts index 3a293baad..0cbf56894 100644 --- a/src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts +++ b/src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts @@ -115,6 +115,29 @@ export const CountadjustRequestMain = useCrudSchemas(([ } } }, + + { + 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([ 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: '仓库代码',