This commit is contained in:
liushuai
2020-04-09 18:36:11 +08:00
13 changed files with 89 additions and 100 deletions

View File

@@ -46,7 +46,7 @@ export function edit(num1) {
})
}
// 外购备料
export function edit2(num1) {
export function edit2(num1, id) {
return request({
url: '',
method: 'post',
@@ -55,7 +55,7 @@ export function edit2(num1) {
ModularID: router.currentRoute.path,
type: '2',
name: '车间生产管理工艺_备料单导出_外购备料',
param: `工艺计划流水号组=${num1}&是否外购备料=1`
param: `工艺计划流水号组=${num1}&是否外购备料=1&分配人员编号=${id}`
}
})
}

View File

@@ -395,3 +395,15 @@ export function OutPart(num) {
}
})
}
export function searchBillNumber(num) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '1',
name: '车间管理_基本件采购_请购单_查询请购单号_查询数据'
}
})
}