From 89a4e90378ce9888255bfb52f48023726ce824f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=99=B9=E7=9D=BF?= <297504645@qq.com> Date: Thu, 23 Jan 2025 14:48:46 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=89=8D=E7=AB=AFpc=E3=80=91=E9=9C=80?= =?UTF-8?q?=E6=B1=82=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fe/PC/src/components/StepsCountPlanForm/index.vue | 15 +++++++++++++++ fe/PC/src/utils/index.js | 2 ++ fe/PC/src/utils/tableColumns/index.js | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/fe/PC/src/components/StepsCountPlanForm/index.vue b/fe/PC/src/components/StepsCountPlanForm/index.vue index bd65b9f70..3c3391151 100644 --- a/fe/PC/src/components/StepsCountPlanForm/index.vue +++ b/fe/PC/src/components/StepsCountPlanForm/index.vue @@ -441,6 +441,21 @@ export default { this.$forceUpdate() }) } + else if(item.column == "areaCode"){ + this.filterActionOptions=[{ + value: '==', + label: '等于' + }, { + value: '!=', + label: '不等于' + },{ + value: 'Like', + label: '包含' + }] + this.$nextTick(()=>{ + this.$forceUpdate() + }) + } if(item.action == "Like"){item.action = '=='} }, // 初始化库位筛选列表数据,目的:pda的库位类型不可以选择线边库位 diff --git a/fe/PC/src/utils/index.js b/fe/PC/src/utils/index.js index 3acd355bb..9b640f235 100644 --- a/fe/PC/src/utils/index.js +++ b/fe/PC/src/utils/index.js @@ -589,6 +589,8 @@ export function initInterfaceType(res){ _item.interfaceType = '【TYRP】-【线边仓调拨单 / 领料单】' } else if (item.transType == 16) { _item.interfaceType = '【TYRP】-【线边仓退料单】' + } else if (item.transType == 31 && item.transSubType == 1510) { + _item.interfaceType = '【TYRP】-【线边仓调拨单】' } else if (item.transType == 31 && item.transSubType == 3102) { _item.interfaceType = '【TYRP】-【储位、线边仓调拨单 和 客户储位调拨单】' } else if (item.transType == 31 && item.transSubType == 3104) { diff --git a/fe/PC/src/utils/tableColumns/index.js b/fe/PC/src/utils/tableColumns/index.js index 3bd1c7539..add633485 100644 --- a/fe/PC/src/utils/tableColumns/index.js +++ b/fe/PC/src/utils/tableColumns/index.js @@ -2941,7 +2941,7 @@ export const CountPlanByAddLocation = [ prop: "code" }, { label: "库位名称", prop: "name", showProp:true }, - { label: "区域代码", prop: "areaCode", showProp:true }, + { label: "区域代码", prop: "areaCode" }, { label: "库位组代码", prop: "locationGroupCode", showProp:true }, { label: "工作组代码", prop: "workGroupCode", showProp:true }, { label: "库位类型", prop: "type", type: "filter", filters: "locationType" },