Commit ffec3b5e authored by krysent's avatar krysent

new

parent 61115206
......@@ -634,7 +634,11 @@ function Outstore(props) {
};
},
renderFormItem: ({ entry }) => {
return <MySelect record={entry} />;
if (entry?.materieControlNo) {
return <span>{entry?.materieControlNo}</span>;
} else {
return <MySelect record={entry} />;
}
// return storeId;
},
},
......@@ -672,9 +676,9 @@ function Outstore(props) {
},
{
title: "可用库存",
dataIndex: "holdNum",
key: "holdNum",
readonly: "holdNum",
dataIndex: "usableNum",
key: "usableNum",
readonly: "usableNum",
},
{
title: "库存单位",
......@@ -1069,6 +1073,9 @@ function Outstore(props) {
activeTabKey,
onTabChange,
columns,
extraparams: {
outstoreType: 4,
},
path:
activeTabKey == "1"
? "/ngic-workmanship/wmsMaterieOutstore/queryList"
......
......@@ -402,6 +402,9 @@ function Outstore(props) {
activeTabKey,
onTabChange,
columns,
extraparams: {
outstoreType: 1,
},
path:
activeTabKey == "1"
? "/ngic-workmanship/wmsMaterieOutstore/queryList"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment