From b513ce3a4527e998da66c6f179a279472c7262a8 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期二, 18 十一月 2025 10:59:46 +0800
Subject: [PATCH] 代码更新优化
---
项目代码/WMS/WMSClient/src/extension/outbound/extend/SelectedStock.vue | 60 +++++++++++++++++++++++++++++++++++++-----------------------
1 files changed, 37 insertions(+), 23 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/extension/outbound/extend/SelectedStock.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/extension/outbound/extend/SelectedStock.vue"
index 9dcd95e..2b10b84 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/extension/outbound/extend/SelectedStock.vue"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/extension/outbound/extend/SelectedStock.vue"
@@ -11,16 +11,16 @@
<el-alert :closable="false" style="width: 100%">
<el-row>
<el-col :span="24">
- <span class="less-style">鐗╂枡鍚嶇О锛� {{ row.materielName }} </span>
+ <span class="less-style">鐗╂枡鍚嶇О锛� {{ row.materialName }} </span>
<el-divider direction="vertical"></el-divider>
- <span class="less-style">鐗╂枡缂栧彿锛� {{ row.materielCode }} </span>
+ <span class="less-style">鐗╂枡缂栧彿锛� {{ row.materialNo }} </span>
<el-divider direction="vertical"></el-divider>
<span class="less-style"
- >闇�姹傛暟閲忥細 {{ row.orderQuantity }}
+ >闇�姹傛暟閲忥細 {{ row.xqLen }}
</span>
<el-divider direction="vertical"></el-divider>
<span class="less-style"
- >宸插垎閰嶆暟閲忥細 {{ row.lockQuantity }}
+ >宸插垎閰嶆暟閲忥細 {{ row.assignTotalUsage }}
</span>
</el-col>
</el-row>
@@ -81,6 +81,7 @@
data() {
return {
row: null,
+ orderNo:null,
showDetialBox: false,
tableData: [],
tableColumns: [
@@ -105,16 +106,10 @@
hidden: true,
},
{
- prop: "orderType",
- title: "鍗曟嵁绫诲瀷",
+ prop: "materielId",
+ title: "鐗╂枡Id",
type: "string",
width: 90,
- },
- {
- prop: "batchNo",
- title: "鎵规鍙�",
- type: "string",
- width: 120,
},
{
prop: "materielCode",
@@ -129,6 +124,18 @@
width: 150,
},
{
+ prop: "materialWide",
+ title: "鐗╂枡骞呭",
+ type: "string",
+ width: 100,
+ },
+ {
+ prop: "materialWeight",
+ title: "鐗╂枡閲嶉噺",
+ type: "string",
+ width: 100,
+ },
+ {
prop: "stockId",
title: "搴撳瓨涓婚敭",
type: "string",
@@ -136,34 +143,40 @@
hidden: true,
},
{
- prop: "originalQuantity",
- title: "鍘熷搴撳瓨閲�",
+ prop: "orderQuantity",
+ title: "鍗曟嵁闇�姹傞暱搴�",
type: "string",
- width: 100,
+ width: 110,
+ },
+ {
+ prop: "originalQuantity",
+ title: "鍘熷簱瀛橀暱搴�",
+ type: "string",
+ width: 110,
},
{
prop: "assignQuantity",
- title: "鍒嗛厤鍑哄簱閲�",
+ title: "鍒嗛厤鍑哄簱闀垮害",
type: "string",
- width: 100,
+ width: 110,
},
{
prop: "taskNum",
- title: "鍑哄簱浠诲姟鍙�",
+ title: "鍑哄簱浠诲姟",
type: "string",
width: 100,
},
{
prop: "palletCode",
- title: "鎵樼洏缂栧彿",
+ title: "鏉$爜缂栧彿",
type: "string",
- width: 150,
+ width: 130,
},
{
prop: "locationCode",
title: "璐т綅缂栧彿",
type: "string",
- width: 180,
+ width: 200,
},
{
prop: "status",
@@ -174,15 +187,16 @@
};
},
methods: {
- open(row) {
+ open(row,orderNo) {
this.row = row;
+ this.orderNo=orderNo;
this.showDetialBox = true;
this.getData();
},
getData() {
this.http
.post(
- "api/OutStockLockInfo/GetByOrderDetailId?orderDetailId=" +
+ "api/OutStockLockInfo/GetByOrderDetailId?orderNo="+this.orderNo+"&orderDetailId=" +
this.row.id,
null,
"鏌ヨ涓�"
--
Gitblit v1.9.3