|
|
@@ -197,11 +197,6 @@
|
|
|
<el-table-column align="left" label="计划用料" prop="计划用料" width="100" />
|
|
|
<el-table-column align="left" label="定额用料" prop="定额用料" width="90"/>
|
|
|
<el-table-column align="left" label="门封" prop="门封" width="80"/>
|
|
|
- <el-table-column align="left" label="裁床实际用料" prop="裁床实际用料" width="120"/>
|
|
|
- <el-table-column align="left" label="裁床领用面料" prop="裁床领用面料" width="120"/>
|
|
|
- <el-table-column align="left" label="裁床退回仓库面料" prop="裁床退回仓库面料" width="140"/>
|
|
|
- <el-table-column align="left" label="入库总量" prop="入库总量" width="90"/>
|
|
|
- <el-table-column align="left" label="面料结余" prop="面料结余" width="90"/>
|
|
|
<el-table-column align="left" label="单位" prop="投料单位" width="60"/>
|
|
|
<el-table-column align="left" label="备注" prop="备注" width="180"/>
|
|
|
<el-table-column align="left" label="更新用户" prop="ID" width="160"/>
|
|
|
@@ -222,14 +217,21 @@
|
|
|
:summary-method="mlgetSummaries"
|
|
|
style="width: 100%;height: 36vh" border tooltip-effect="dark" :data="mltableData" row-key="ID" @selection-change="handleSelectionChange">
|
|
|
<!-- <el-table-column type="selection" width="30" />-->
|
|
|
- <el-table-column align="left" label="订单编号" prop="订单编号" width="110"/>
|
|
|
- <el-table-column align="left" label="生产款号" prop="生产款号" width="130"/>
|
|
|
- <el-table-column align="left" label="客户编号" prop="客户编号" width="100"/>
|
|
|
- <el-table-column align="left" label="款式" prop="款式" width="150"/>
|
|
|
- <el-table-column align="left" label="物料名称" prop="物料名称" width="170" />
|
|
|
- <el-table-column align="left" label="库存总量" prop="入库总量" width="120"/>
|
|
|
- <el-table-column align="left" label="面料结余" prop="面料结余" width="160"/>
|
|
|
- <el-table-column align="left" label="投料单位" prop="投料单位" width="100"/>
|
|
|
+ <el-table-column type="selection" width="30" />
|
|
|
+ <el-table-column align="left" label="订单编号" prop="订单编号" width="105"/>
|
|
|
+ <el-table-column align="left" label="物料名称" prop="物料名称" width="170"/>
|
|
|
+ <el-table-column align="left" label="计划用料" prop="计划用料" width="100" />
|
|
|
+ <el-table-column align="left" label="定额用料" prop="定额用料" width="90"/>
|
|
|
+ <el-table-column align="left" label="门封" prop="门封" width="80"/>
|
|
|
+ <el-table-column align="left" label="裁床实际用料" prop="裁床实际用料" width="120"/>
|
|
|
+ <el-table-column align="left" label="裁床领用面料" prop="裁床领用面料" width="120"/>
|
|
|
+ <el-table-column align="left" label="裁床退回仓库面料" prop="裁床退回仓库面料" width="140"/>
|
|
|
+ <el-table-column align="left" label="入库总量" prop="入库总量" width="90"/>
|
|
|
+ <el-table-column align="left" label="面料结余" prop="面料结余" width="90"/>
|
|
|
+ <el-table-column align="left" label="单位" prop="投料单位" width="60"/>
|
|
|
+ <el-table-column align="left" label="备注" prop="备注" width="180"/>
|
|
|
+ <el-table-column align="left" label="更新用户" prop="ID" width="160"/>
|
|
|
+ <el-table-column align="left" label="更新日期" prop="日期" width="160"/>
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
@@ -1550,10 +1552,10 @@ const ys_edit_closeDialog = async (row) => {
|
|
|
};
|
|
|
const mlinventoryVisible = ref(false)
|
|
|
const historytableData = ref([])
|
|
|
-//双击面料库存
|
|
|
-const mlupdateCompanyFunc = async (row) => {
|
|
|
- mlinventoryVisible.value = true;
|
|
|
-}
|
|
|
+// //双击面料库存
|
|
|
+// const mlupdateCompanyFunc = async (row) => {
|
|
|
+// mlinventoryVisible.value = true;
|
|
|
+// }
|
|
|
|
|
|
//库存测试
|
|
|
const CSclick = async (row) => {
|
|
|
@@ -2111,7 +2113,7 @@ const BOMclick = () => {
|
|
|
}
|
|
|
|
|
|
const handleInput = (value, row, prop) => {
|
|
|
- if(prop != "物料名称"){
|
|
|
+ if(prop != "物料名称" && prop != "备注" ){
|
|
|
// 使用正则表达式过滤非数字和小数点的字符
|
|
|
let filteredValue = value.replace(/[^\d.]/g, '');
|
|
|
|