From 69c67ff5acedc217a07a18b847ed22284e80a56d Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期一, 03 十一月 2025 17:49:04 +0800
Subject: [PATCH] 核磅录入增加根据接口查询客户名称校验是否一致
---
pages/wareHouse/nuclearScale/index.vue | 83 ++++++++++++++++++-----------------------
1 files changed, 36 insertions(+), 47 deletions(-)
diff --git a/pages/wareHouse/nuclearScale/index.vue b/pages/wareHouse/nuclearScale/index.vue
index 132bb04..5f7d6be 100644
--- a/pages/wareHouse/nuclearScale/index.vue
+++ b/pages/wareHouse/nuclearScale/index.vue
@@ -130,7 +130,9 @@
@click="cancelReport(item)"
>
<view class="content-header">
- <view class="content-header-title">{{ ScanCodeRecord.length - index }}</view>
+ <view class="content-header-title">{{
+ ScanCodeRecord.length - index
+ }}</view>
</view>
<view class="content-body">
<view class="row-list">
@@ -204,7 +206,7 @@
</view>
<view class="packing-registration-param-item-right">
<u-input
- type="number"
+ type="number"
class="item-one item-two"
v-model="modalList.verificationWeight"
/>
@@ -216,7 +218,7 @@
</view>
<view class="packing-registration-param-item-right">
<u-input
- type="number"
+ type="number"
class="item-one item-two"
v-model="modalList.forkliftWeight"
/>
@@ -332,51 +334,37 @@
waivDevRejNo: codeInfo.WDR ? codeInfo.WDR : "*", // wdr鍙�
productType: that.form.productType,
};
- if (codeInfo.CN != "") {
- if (codeInfo.CN != that.form.customerName1) {
- // 鎵弿鎶ュ伐鍗曚簩缁寸爜
- uni.showModal({
- title: "鎻愮ず",
- content:
- "瀹㈡埛涓嶄竴鑷达細" + codeInfo.CN + "||" + that.form.customerName1,
- showCancel: true,
- success: function (res) {
- const isDuplicate = that.ScanCodeRecord.some(
- (item) => item.outBatchNo === codeInfo.BN
- );
- if (!isDuplicate) {
- if (that.form.productType == "TG01") {
- that.$refs.saveForm.open(ScanCodeRecordList);
- } else {
- that.ScanCodeRecord.unshift(ScanCodeRecordList);
- }
- } else {
- uni.showToast({
- icon: "none",
- title: "璇峰嬁閲嶅鎵爜锛�",
- duration: 2 * 1000,
- });
- }
- },
- });
- } else {
- if (that.form.productType == "TG01") {
- that.$refs.saveForm.open(ScanCodeRecordList);
- } else {
- that.ScanCodeRecord.unshift(ScanCodeRecordList);
- }
- }
+ if (that.form.productType == "TG01") {
+ that.$refs.saveForm.open(ScanCodeRecordList);
} else {
- if (that.form.productType == "TG01") {
- that.$refs.saveForm.open(ScanCodeRecordList);
- } else {
- that.ScanCodeRecord.unshift(ScanCodeRecordList);
- }
+ that.queryCustomName(codeInfo,ScanCodeRecordList);
}
}
});
},
methods: {
+ queryCustomName(codeInfo,ScanCodeRecordList) {
+ // 鏌ヨ瀹㈡埛鍚嶇О
+ this.$u.api.NuclearScaleEntry.queryCustomName({
+ BN: codeInfo.BN,
+ }).then((res) => {
+ console.log("瀹㈡埛鍚嶇О锛�", res);
+ if (res.data != this.form.customerName1) {
+ let that = this;
+ // 鎵弿鎶ュ伐鍗曚簩缁寸爜
+ uni.showModal({
+ title: "鎻愮ず",
+ content: "瀹㈡埛涓嶄竴鑷达細" + res.data + " || " + that.form.customerName1,
+ showCancel: true,
+ success: function (res) {
+ that.ScanCodeRecord.unshift(ScanCodeRecordList);
+ },
+ });
+ } else {
+ this.ScanCodeRecord.unshift(ScanCodeRecordList);
+ }
+ });
+ },
// 鍙栨秷鎵爜璁板綍
cancelReport(item) {
let that = this;
@@ -413,7 +401,7 @@
this.form.forkliftWeight = this.modalList.forkliftWeight;
switch (this.form.productType) {
case "DT01":
- if (magnetic >= 0 && magnetic <= 3) {
+ if (magnetic >= -3 && magnetic <= 3) {
this.allSubmit();
} else {
this.$u.toast("纾呭樊:" + magnetic + "锛岃杞﹂棿鏍告煡");
@@ -446,10 +434,10 @@
this.$u.toast("鎻愪氦鎴愬姛");
this.ScanCodeRecord = [];
// if (this.form.productTypeMap == "DT01") {
- this.modalList = {
- verificationWeight: "",
+ this.modalList = {
+ verificationWeight: "",
// };
- }
+ };
})
.catch((err) => {
uni.hideLoading();
@@ -480,7 +468,8 @@
this.$u.api.NuclearScaleEntry.createDetail(this.form)
.then((res) => {
this.$u.toast("鎻愪氦鎴愬姛");
- this.ScanCodeRecord.unshift(Obj);
+ this.ScanCodeRecord = [];
+ // this.ScanCodeRecord.unshift(Obj);
this.$refs.saveForm.cancel();
})
.catch(() => {
--
Gitblit v1.9.3