From 0dbf395280c70afdb8cfd3b211d1a9487f06d517 Mon Sep 17 00:00:00 2001
From: qb <1191961160@qq.com>
Date: Thu, 14 Nov 2024 09:34:51 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=9B=B6=E6=8B=85=E5=85=81?=
=?UTF-8?q?=E8=AE=B8=E6=9C=AA=E9=BD=90=E5=A5=97=E6=94=B9=E5=8D=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/SelectBox/SelectBox.vue | 5 +-
.../distribution/inventory/BookingNote.vue | 94 ++++++++++++++++++-
src/views/waybill/CreateZeroOrder.vue | 2 +
3 files changed, 99 insertions(+), 2 deletions(-)
diff --git a/src/components/SelectBox/SelectBox.vue b/src/components/SelectBox/SelectBox.vue
index 4c95168f..757e2448 100644
--- a/src/components/SelectBox/SelectBox.vue
+++ b/src/components/SelectBox/SelectBox.vue
@@ -21,7 +21,7 @@
: 'min-width:' + props.minWidth
: ''
"
- v-if="isShowBox"
+ v-if="isShowBox && !props.disabled"
>
> ', props);
+
const $emit = defineEmits(['update:modelValue']);
const _computed = computed({
diff --git a/src/views/distribution/inventory/BookingNote.vue b/src/views/distribution/inventory/BookingNote.vue
index 7d8b8dbc..26550851 100644
--- a/src/views/distribution/inventory/BookingNote.vue
+++ b/src/views/distribution/inventory/BookingNote.vue
@@ -71,9 +71,50 @@
>
+
+
+
+
+
{
getLazyTreeAll().then(res => {
if (res.data.success) {
details.regionOptione = res.data.data;
+
+ // 转译到站
+ if (details.regionOptione.length !== 0) {
+ handleTranslationLocation('departure');
+ handleTranslationLocation('destination');
+ }
}
});
+// 改单时, 对数据库内到站值进行转译
+const handleTranslationLocation = key => {
+ // 获取数据库中地址值
+ const _location = details.query[key];
+
+ let _arr = [];
+
+ // 循环查找匹配的到站地址
+ for (const iterator of details.regionOptione) {
+ let isBreak = false;
+
+ if (iterator.label === _location) {
+ _arr = [iterator.label];
+ isBreak = true;
+ } else if (getObjType(iterator.children) === 'array') {
+ for (const item of iterator.children) {
+ if (item.label === _location) {
+ _arr = [iterator.label, item.label];
+ isBreak = true;
+ break;
+ } else if (getObjType(item.children) === 'array') {
+ for (const value of item.children) {
+ if (value.label === _location) {
+ _arr = [iterator.label, item.label, value.label];
+ isBreak = true;
+ break;
+ }
+ }
+ }
+ }
+ if (isBreak) break;
+ }
+
+ if (isBreak) break;
+ }
+
+ const _label = _arr.slice(1).join('/');
+
+ details.query[key] = _label;
+};
+
/** 请求页面数据 */
const onLoad = async () => {
try {
@@ -1360,8 +1448,12 @@ const onLoad = async () => {
details.query.daoPay = isNumber(data.warehouseWaybill.dPay)
? Number(data.warehouseWaybill.dPay)
: data.warehouseWaybill.dPay;
+
// 转译到站
- console.log('details.query :>> ', details.query);
+ if (details.regionOptione.length !== 0) {
+ handleTranslationLocation('departure');
+ handleTranslationLocation('destination');
+ }
// 初始化goodsList
if (data.warehouseWaybill.detailList.length === 0)
diff --git a/src/views/waybill/CreateZeroOrder.vue b/src/views/waybill/CreateZeroOrder.vue
index 34da83a3..e7f9cf28 100644
--- a/src/views/waybill/CreateZeroOrder.vue
+++ b/src/views/waybill/CreateZeroOrder.vue
@@ -543,6 +543,7 @@
:focus="handleCloseSelcet"
v-model="item.goodsName"
:class="!item.goodsId ? 'is-error' : ''"
+ :disabled="query.zeroEditStatus === 0"
placeholder="货物名称"
>
@@ -565,6 +566,7 @@