From 3a770819f22efdc0ecb0ba57de0ac64f08421c55 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期四, 13 十一月 2025 16:54:20 +0800
Subject: [PATCH] 波次拣货功能优化

---
 pages/listing/itemSelect.vue |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/pages/listing/itemSelect.vue b/pages/listing/itemSelect.vue
index b1ec2ba..20e7d72 100644
--- a/pages/listing/itemSelect.vue
+++ b/pages/listing/itemSelect.vue
@@ -4,8 +4,6 @@
 		<view class="search-bar">
 			<uni-search-bar v-model="condition" placeholder=" 杈撳叆鎵规/缂栫爜/鍗曞彿" bgColor="#EEEEEE"  @confirm="search()"/>
 		</view>
-		
-		 
 		<view>
 			<view class="padding-lr margin-top-sm">
 				<block v-for="(item, index) in matList" :key="index">
@@ -33,13 +31,20 @@
 								<text class="text-grey ">{{item.asnCode}}</text>
 							</view>
 						</view>
-						
 						<view class="cu-item">
 							<view class="content">
 								<text class="text-black">渚涘簲鍟嗘壒娆�:</text>
 							</view>
 							<view class="action">
 								<text class="text-grey ">{{item.splrBatch}}</text>
+							</view>
+						</view>
+						<view class="cu-item">
+							<view class="content">
+								<text class="text-black">鐜板搧绁ㄥ彿:</text>
+							</view>
+							<view class="action">
+								<text class="text-grey ">{{item.extendFields.crushNo}}</text>
 							</view>
 						</view>
 						<view class="cu-item">
@@ -127,6 +132,7 @@
 					matnrCode: this.condition,
 					asnCode: this.condition,
 					code: this.condition,
+					fieldsIndex: this.condition,
 					batch: this.condition
 				}
 				this.getDet(req);
@@ -134,6 +140,7 @@
 			back() {
 				for (var i = 0; i < this.matList.length; i++) {
 					if(this.matList[i].selected === true){
+						this.matList[i].receiptQty = this.matList[i].anfme - this.matList[i].workQty
 						this.selectedList.push(this.matList[i])
 					}						
 				}				
@@ -163,6 +170,7 @@
 					matnrCode: req.matnrCode,
 					asnCode: req.asnCode,
 					code: req.code,
+					fieldsIndex: req.fieldsIndex,
 					batch: req.batch
 				}, "post")
 				if (code === 200) {

--
Gitblit v1.9.1