From c48093016b1511ce8b33ffb49062a3bf7a1aed16 Mon Sep 17 00:00:00 2001
From: whycq <10027870+whycq@user.noreply.gitee.com>
Date: 星期四, 06 六月 2024 08:24:10 +0800
Subject: [PATCH] Merge branch 'phyzasrs' of http://47.97.1.152:5880/r/wms_app into phyzasrs

---
 pages/phyz/stationManage/pickAgain.vue |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diff --git a/pages/phyz/stationManage/pickAgain.vue b/pages/phyz/stationManage/pickAgain.vue
index 3c22660..f4d44ab 100644
--- a/pages/phyz/stationManage/pickAgain.vue
+++ b/pages/phyz/stationManage/pickAgain.vue
@@ -155,7 +155,23 @@
 				// 鍒ゆ柇娣诲姞鐨勫晢鍝佹槸鍚﹀拰宸茬粡娣诲姞鐨勯噸澶�
 				let dataList = this.dataList
 				this.index = index
-				this.maxCount = this.dataList[index].stock
+				let orderCount = this.dataList[index].stock
+				let locCount = this.dataList[index].anfme
+				let pickedAnfme = this.dataList[index].pickedAnfme
+				// 棰勮鏈�澶ц鍑哄簱
+				let ftCount = pickedAnfme + orderCount
+				
+				if (orderCount > locCount) {
+					this.maxCount = locCount - pickedAnfme
+				} else {
+					if (ftCount > locCount) {
+						this.maxCount = locCount -pickedAnfme
+					} else {
+						this.maxCount = orderCount 
+					}
+					
+				}
+				
 				this.$refs.addItem.open()
 			},
 			addClose() {

--
Gitblit v1.9.1