This commit is contained in:
liushuai
2019-08-03 11:05:18 +08:00
4 changed files with 902 additions and 34 deletions

View File

@@ -107,7 +107,7 @@ export function submitOutStore(...params) {
}
})
}
// 出库
// 异常出库
export function errorRecord(...params) {
return request({
url: '',
@@ -130,3 +130,27 @@ export function initOutType() {
}
})
}
// 领料确认
export function pickingSubmit(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_物料出库_领料确认_修改数据',
param: `人员编号=${params[0]}&密码=${params[1]}`
}
})
}
// 归还
export function sendBack(...params) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '库存管理_物料出库_归还记录_增加数据',
param: `货位流水号=${params[0]}&物料流水号=${params[1]}&入库数量=${params[2]}&入库人流水号=${params[3]}&基本件流水号=${params[4]}&标准件和外购件流水号=${params[5]}&请购单明细流水号=${params[6]}&仓库流水号=${params[7]}&领料单流水号=${params[8]}`
}
})
}