From fa1fa26cd00c6a883990fdaaa3ea303b3f053c26 Mon Sep 17 00:00:00 2001
From: lbq <1065079612@qq.com>
Date: 星期三, 04 二月 2026 15:38:39 +0800
Subject: [PATCH] 优化出库页面字段
---
rsf-admin/src/page/orders/outStock/OutOrderEdit.jsx | 66 ++++++++++++++++++++++++++-------
1 files changed, 52 insertions(+), 14 deletions(-)
diff --git a/rsf-admin/src/page/orders/outStock/OutOrderEdit.jsx b/rsf-admin/src/page/orders/outStock/OutOrderEdit.jsx
index 8cb32d5..5377e12 100644
--- a/rsf-admin/src/page/orders/outStock/OutOrderEdit.jsx
+++ b/rsf-admin/src/page/orders/outStock/OutOrderEdit.jsx
@@ -61,19 +61,19 @@
{translate('common.edit.title.main')}
</Typography>
<Stack direction='row' gap={2}>
- <TextInput
+ {/* <TextInput
label="table.field.outStock.code"
source="code"
readOnly
parse={v => v}
- />
+ /> */}
<TextInput
label="table.field.outStock.poCode"
source="poCode"
readOnly
parse={v => v}
/>
- <AutocompleteInput
+ {/* <AutocompleteInput
choices={dicts}
optionText="label"
label="table.field.outStock.type"
@@ -81,21 +81,25 @@
optionValue="value"
parse={v => v}
readOnly
+ /> */}
+ <TextInput
+ label="table.field.outStock.wkType"
+ source="wkType$"
+ readOnly
+ parse={v => v}
/>
- <AutocompleteInput
+ {/* <AutocompleteInput
choices={business}
optionText="label"
label="table.field.outStock.wkType"
- source="wkType"
+ source="wkType$"
optionValue="value"
parse={v => v}
readOnly
- />
- </Stack>
- <Stack direction='row' gap={2}>
+ /> */}
<TextInput
- label="table.field.outStock.logisNo"
- source="logisNo"
+ label="table.field.outStock.saleDate"
+ source="businessTime"
readOnly
parse={v => v}
/>
@@ -111,12 +115,46 @@
readOnly
parse={v => v}
/>
- <DateInput
+ </Stack>
+ <Stack direction='row' gap={2}>
+ {/* 閾跺骇鏂板 */}
+ <TextInput
+ label="table.field.outStock.saleOrgName"
+ source="saleOrgName"
+ readOnly
+ parse={v => v}
+ />
+ <TextInput
+ label="table.field.outStock.saleUserName"
+ source="saleUserName"
+ readOnly
+ parse={v => v}
+ />
+ <TextInput
+ label="table.field.outStock.customerId"
+ source="customerId"
+ readOnly
+ parse={v => v}
+ />
+ <TextInput
+ label="table.field.outStock.customerName"
+ source="customerName"
+ readOnly
+ parse={v => v}
+ />
+ {/* <TextInput
+ label="table.field.outStock.logisNo"
+ source="logisNo"
+ readOnly
+ parse={v => v}
+ /> */}
+
+ {/* <DateInput
label="table.field.outStock.arrTime"
source="arrTime"
readOnly
- />
- <SelectInput
+ /> */}
+ {/* <SelectInput
label="table.field.outStock.rleStatus"
source="rleStatus"
readOnly
@@ -125,7 +163,7 @@
{ id: 1, name: ' 宸查噴鏀�' },
]}
validate={required()}
- />
+ /> */}
</Stack>
</Grid>
</Grid>
--
Gitblit v1.9.1