From 0bc021a1c7515af5a0f102776488f0457d418d27 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期一, 30 十二月 2024 11:46:05 +0800
Subject: [PATCH] 获取最新代码
---
代码管理/淮安PDA/pages/stash/raworderboxing.vue | 47 +++++++++++++++++++++++++----------------------
1 files changed, 25 insertions(+), 22 deletions(-)
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/\346\267\256\345\256\211PDA/pages/stash/raworderboxing.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/\346\267\256\345\256\211PDA/pages/stash/raworderboxing.vue"
index ea55d1b..8b187e7 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/\346\267\256\345\256\211PDA/pages/stash/raworderboxing.vue"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/\346\267\256\345\256\211PDA/pages/stash/raworderboxing.vue"
@@ -37,11 +37,11 @@
</view>
</template>
</uni-list-item> -->
- <uni-list-item direction="column" v-for="(item,index) in matInfos" :key="item.sn">
+ <uni-list-item direction="column" v-for="(item,index) in matInfos" :key="index">
<template v-slot:body>
<view class="uni-list-box">
<uni-icons type="trash" size="22" style="position: absolute;right: 5%;"
- @click="deleteList(item.sn)">
+ @click="deleteList(index)">
</uni-icons>
<view class="uni-content">
<view class="uni-title-sub uni-ellipsis-2">閲囪喘鍗曞彿锛歿{item.purchaseOrderNo}}</view>
@@ -187,7 +187,7 @@
this.addressFocus = false;
this.orderNo = res.orderNo;
this.warehouseId = res.warehouseId;
- this.Test = this.warehouseId == 1; //鎶�1鏀规垚娴嬭瘯鏋朵粨搴撳尯ID
+ this.Test = this.warehouseId == 6; //娴嬭瘯鏋朵粨搴撳尯ID
this.label = "鍗曟嵁缂栧彿锛�" + this.orderNo;
this.getData();
},
@@ -351,9 +351,9 @@
// matCode: res.data.materielCode,
// matQuantity: parseInt(res.data.quantity)
// });
- // this.sns.push(res.data.serialNumber);
+ this.sns.push(res.data.serialNumber);
- this.matInfos.splice(0, this.matInfos.length);
+ // this.matInfos.splice(0, this.matInfos.length);
this.matInfos.push(res.data);
if (res.message) {
this.$refs.uToast.show({
@@ -486,24 +486,27 @@
})
},
deleteList(res) {
- var sn = '';
- this.matInfos.map((item, index) => {
- if (item.sn == res) {
- this.matInfos.splice(index, 1);
- sn = item.sn;
- var tmp = this.matTotal.find(x => x.matCode == item.matCode);
- if (tmp) {
- tmp.matQuantity -= parseInt(item.quantity);
- } else {
+ // var sn = '';
+
+ this.matInfos.splice(res, 1);
+ this.sns.splice(res, 1);
+ // this.matInfos.map((item, index) => {
+ // if (item.sn == res) {
+ // this.matInfos.splice(index, 1);
+ // sn = item.sn;
+ // var tmp = this.matTotal.find(x => x.matCode == item.matCode);
+ // if (tmp) {
+ // tmp.matQuantity -= parseInt(item.quantity);
+ // } else {
- }
- }
- })
- this.sns.map((item, index) => {
- if (item == res) {
- this.sns.splice(index, 1);
- }
- })
+ // }
+ // }
+ // })
+ // this.sns.map((item, index) => {
+ // if (item == res) {
+ // this.sns.splice(index, 1);
+ // }
+ // })
},
submit() {
if (this.barcode == "") {
--
Gitblit v1.9.3