From cebd9afa05ca5b17ca62b672010c29d115b89d60 Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期二, 18 二月 2025 09:47:03 +0800 Subject: [PATCH] #新增 1. 添加批次规则信息 2. 物料添加控制属性 --- rsf-admin/src/page/matnr/MatnrPanel.jsx | 64 ++++++++++++++++++++++++++++---- 1 files changed, 56 insertions(+), 8 deletions(-) diff --git a/rsf-admin/src/page/matnr/MatnrPanel.jsx b/rsf-admin/src/page/matnr/MatnrPanel.jsx index 434ce30..fe8ad1f 100644 --- a/rsf-admin/src/page/matnr/MatnrPanel.jsx +++ b/rsf-admin/src/page/matnr/MatnrPanel.jsx @@ -42,12 +42,6 @@ <Grid container spacing={2}> <Grid item xs={6}> <PanelTypography - title="table.field.matnr.shipperId" - property={record.shipperId$} - /> - </Grid> - <Grid item xs={6}> - <PanelTypography title="table.field.matnr.name" property={record.name} /> @@ -60,8 +54,20 @@ </Grid> <Grid item xs={6}> <PanelTypography + title="table.field.matnr.shipperId" + property={record.shipperId$} + /> + </Grid> + <Grid item xs={6}> + <PanelTypography title="table.field.matnr.groupId" property={record.groupId$} + /> + </Grid> + <Grid item xs={6}> + <PanelTypography + title="table.field.matnr.batchRegularId" + property={record.batchRegularId$} /> </Grid> <Grid item xs={6}> @@ -102,8 +108,8 @@ </Grid> <Grid item xs={6}> <PanelTypography - title="table.field.matnr.desc" - property={record.desc} + title="table.field.matnr.describle" + property={record.describle} /> </Grid> <Grid item xs={6}> @@ -142,6 +148,48 @@ property={record.isLabelMange$} /> </Grid> + <Grid item xs={6}> + <PanelTypography + title="table.field.matnr.safetyQty" + property={record.safetyQty} + /> + </Grid> + <Grid item xs={6}> + <PanelTypography + title="table.field.matnr.minQty" + property={record.minQty} + /> + </Grid> + <Grid item xs={6}> + <PanelTypography + title="table.field.matnr.maxQty" + property={record.maxQty} + /> + </Grid> + <Grid item xs={6}> + <PanelTypography + title="table.field.matnr.stagnate" + property={record.stagnate} + /> + </Grid> + <Grid item xs={6}> + <PanelTypography + title="table.field.matnr.validity" + property={record.validity} + /> + </Grid> + <Grid item xs={6}> + <PanelTypography + title="table.field.matnr.validityWarr" + property={record.validityWarr} + /> + </Grid> + <Grid item xs={6}> + <PanelTypography + title="table.field.matnr.flagCheck" + property={record.flagCheck} + /> + </Grid> </Grid> </CardContent> -- Gitblit v1.9.1