Browse Source

HL-5375盘点 盘点计划新增时,盘点类型范围中的库区代码没有放大镜的筛选,导致没有校验。应该加上放大镜的查询框

hella_online_20240816
zhang_li 1 month ago
parent
commit
dccb316f2e
  1. 2
      src/components/TableFormCountPlan/src/TableFormCountPlan.vue
  2. 12
      src/views/wms/countManage/count/countPlanMain/index.vue

2
src/components/TableFormCountPlan/src/TableFormCountPlan.vue

@ -61,7 +61,7 @@
row.type == 'CUSTOMER' ||
row.type == 'ITEM_CODE' ||
row.type == 'WAREHOUSE_CODE' ||
row.type == 'AREABASIC_CODE' ||
row.type == 'AREA_CODE' ||
row.type == 'LOCATIONGROUP_CODE' ||
row.type == 'LOCATION_CODE'
"

12
src/views/wms/countManage/count/countPlanMain/index.vue

@ -473,7 +473,7 @@ const detailOpenForm = (type, row) => {
row.type == 'ITEMS_GROUP' ||
row.type == 'ITEM_CODE' ||
row.type == 'WAREHOUSE_CODE' ||
row.type == 'AREABASIC_CODE' ||
row.type == 'AREA_CODE' ||
row.type == 'LOCATIONGROUP_CODE' ||
row.type == 'LOCATION_CODE'
) {
@ -559,7 +559,7 @@ const detailOpenForm = (type, row) => {
}
})
break
case 'AREABASIC_CODE':
case 'AREA_CODE':
CountPlanDetail.allSchemas.formSchema.forEach((item) => {
if (item.field == 'value') {
item.componentProps.isInpuFocusShow = true
@ -801,7 +801,7 @@ const selectChangeDetail = (field, val) => {
val == 'ITEMS_GROUP' ||
val == 'ITEM_CODE' ||
val == 'WAREHOUSE_CODE' ||
val == 'AREABASIC_CODE' ||
val == 'AREA_CODE' ||
val == 'LOCATIONGROUP_CODE' ||
val == 'LOCATION_CODE'
) {
@ -887,7 +887,7 @@ const selectChangeDetail = (field, val) => {
}
})
break
case 'AREABASIC_CODE':
case 'AREA_CODE':
CountPlanDetail.allSchemas.formSchema.forEach((item) => {
if (item.field == 'value') {
item.componentProps.isSearchList = true
@ -938,7 +938,7 @@ const tableFormChange = async (field, val, row) => {
row.type == 'ITEMS_GROUP' ||
row.type == 'ITEM_CODE' ||
row.type == 'WAREHOUSE_CODE' ||
row.type == 'AREABASIC_CODE' ||
row.type == 'AREA_CODE' ||
row.type == 'LOCATIONGROUP_CODE' ||
row.type == 'LOCATION_CODE'
) {
@ -1018,7 +1018,7 @@ const tableFormChange = async (field, val, row) => {
searchPage: WarehouseApi.getWarehousePage
}
break
case 'AREABASIC_CODE':
case 'AREA_CODE':
row.searchTable = {
isInpuFocusShow: true,
searchTitle: '库区信息',

Loading…
Cancel
Save