add:株洲中钨来料入库功能

This commit is contained in:
zhengxuming
2025-07-25 17:59:28 +08:00
parent 2b1b731ee5
commit 63168a7911
22 changed files with 702 additions and 19 deletions

View File

@@ -259,9 +259,12 @@ export default {
this.sects = res.content
})
const area_type = 'RKQ'
const area_type = 'YLXCQ'
crudPoint.getPointList({ 'region_code': area_type }).then(res => {
// 点位类型,因为卸货区的点位类型(出库区、入库区)会变动,因需要增加点位类型字段进行判断
// 1-入库区2-出库区
const region_type = '1'
crudPoint.getPointList({ 'region_code': area_type, 'region_type': region_type }).then(res => {
this.pointlist = res
})
},

View File

@@ -323,10 +323,12 @@ export default {
crudSectattr.getSect({ 'stor_id': this.storId }).then(res => {
this.sects = res.content
})
const area_type = 'CKQ'
crudPoint.getPointList({ 'region_code': area_type }).then(res => {
this.pointList = res
const area_type = 'YLXCQ'
// 点位类型,因为卸货区的点位类型(出库区、入库区)会变动,因需要增加点位类型字段进行判断
// 1-入库区2-出库区
const region_type = '2'
crudPoint.getPointList({ 'region_code': area_type, 'region_type': region_type }).then(res => {
this.pointlist = res
})
},
close() {