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" },