Commit ffec3b5e authored by krysent's avatar krysent

new

parent 61115206
...@@ -634,7 +634,11 @@ function Outstore(props) { ...@@ -634,7 +634,11 @@ function Outstore(props) {
}; };
}, },
renderFormItem: ({ entry }) => { renderFormItem: ({ entry }) => {
return <MySelect record={entry} />; if (entry?.materieControlNo) {
return <span>{entry?.materieControlNo}</span>;
} else {
return <MySelect record={entry} />;
}
// return storeId; // return storeId;
}, },
}, },
...@@ -672,9 +676,9 @@ function Outstore(props) { ...@@ -672,9 +676,9 @@ function Outstore(props) {
}, },
{ {
title: "可用库存", title: "可用库存",
dataIndex: "holdNum", dataIndex: "usableNum",
key: "holdNum", key: "usableNum",
readonly: "holdNum", readonly: "usableNum",
}, },
{ {
title: "库存单位", title: "库存单位",
...@@ -1069,6 +1073,9 @@ function Outstore(props) { ...@@ -1069,6 +1073,9 @@ function Outstore(props) {
activeTabKey, activeTabKey,
onTabChange, onTabChange,
columns, columns,
extraparams: {
outstoreType: 4,
},
path: path:
activeTabKey == "1" activeTabKey == "1"
? "/ngic-workmanship/wmsMaterieOutstore/queryList" ? "/ngic-workmanship/wmsMaterieOutstore/queryList"
......
...@@ -402,6 +402,9 @@ function Outstore(props) { ...@@ -402,6 +402,9 @@ function Outstore(props) {
activeTabKey, activeTabKey,
onTabChange, onTabChange,
columns, columns,
extraparams: {
outstoreType: 1,
},
path: path:
activeTabKey == "1" activeTabKey == "1"
? "/ngic-workmanship/wmsMaterieOutstore/queryList" ? "/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