From 0717d2ba704e2340beaf90b0aae4c24a49ef347a Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Tue, 7 Jan 2025 10:27:14 +0800
Subject: [PATCH] =?UTF-8?q?1/7=20=E9=A1=B5=E9=9D=A2=E4=BC=98=E5=8C=961.0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/collect/DealOrder.vue | 12 ++++----
src/views/collect/DialogScanCodeDetail.vue | 34 +++++++++++++++++++---
2 files changed, 36 insertions(+), 10 deletions(-)
diff --git a/src/views/collect/DealOrder.vue b/src/views/collect/DealOrder.vue
index f2a7d530..1a15cd8a 100644
--- a/src/views/collect/DealOrder.vue
+++ b/src/views/collect/DealOrder.vue
@@ -23,12 +23,12 @@
@click.native="overdeleteCode"
>结束剔除
- 下一单
-
+
+
+
+
+
+
@@ -71,6 +71,20 @@
width="120"
show-overflow-tooltip
>
+
+
+
+
+ {{ fifoSplitMap[scope.row.fifoSplit] }}
+
+
+
+
@@ -204,7 +218,13 @@ export default {
selectType: 1,
relId: ''
},
- codeTotal:0
+ codeTotal:0,
+ fifoSplitMap:{
+ 1 : "自动拆零",
+ 2 : "自动整取",
+ 3 : "手动整取",
+ 4 : "手动拆零"
+ }
}
},
methods: {
@@ -354,11 +374,17 @@ export default {
tQuery.action = this.orderFormData.action
this.closeCodeDialog()
+ },
+ getFifoSplitType(fifoSplit){
+ if (fifoSplit == 1 || fifoSplit == 4){
+ return ""
+ }
+ if (fifoSplit == 2 || fifoSplit == 3){
+ return "success"
+ }
}
-
},
created() {
- console.log('hahhahahah', this.prescribeData)
if (this.prescribeData.id != null) {
this.getCodeList()
}