Browse Source

新增盘点计划:增加判断:如果不是Excel盘点类型,过滤线边仓数据

dev_web_online
安虹睿 2 years ago
parent
commit
6a364259e0
  1. 4
      fe/PC/src/components/StepsCountPlanForm/index.vue

4
fe/PC/src/components/StepsCountPlanForm/index.vue

@ -413,7 +413,9 @@ export default {
advancedFilter(url, list, TotalCount, data, oldSkipCount) { advancedFilter(url, list, TotalCount, data, oldSkipCount) {
return () => { return () => {
// 线 20230417 // 线 20230417
if (data == 'locationData') { // Excel(this.CreateFormData.requestType != 1)线 20230626
list.condition.filters = []
if (data == 'locationData' && this.CreateFormData.requestType != 1) {
list.condition.filters.push({ list.condition.filters.push({
action: "!=", action: "!=",
column: "type", column: "type",

Loading…
Cancel
Save