From e9b78b830ebeac25d5796c562cb07cc1d429e5e1 Mon Sep 17 00:00:00 2001 From: "YEJIAXING-PC\\lenovo" <591141169@qq.com> Date: Mon, 23 Jun 2025 17:02:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=98=E7=82=B9=E9=9C=80=E6=B1=82=E4=BC=98?= =?UTF-8?q?=E5=8C=96-=E7=9B=98=E7=82=B9=E8=B0=83=E6=95=B4=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=EF=BC=8C=E8=A1=A8=E5=A4=B4=E9=9C=80=E8=A6=81=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E8=B0=83=E6=95=B4=E9=87=91=E9=A2=9D=E5=90=88=E8=AE=A1?= =?UTF-8?q?=EF=BC=88=E6=A0=87=E5=87=86=E6=88=90=E6=9C=AC=E5=8D=95=E4=BB=B7?= =?UTF-8?q?*=E7=9B=98=E7=82=B9=E5=B7=AE=E5=BC=82=E6=95=B0=E9=87=8F?= =?UTF-8?q?=EF=BC=8C=E7=B4=AF=E5=90=88=E8=AE=A1=EF=BC=89=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../countadjustRequestMain.data.ts | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) 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: '仓库代码',