物料出库

This commit is contained in:
chenjianan
2019-06-03 11:28:35 +08:00
parent ae5e36932c
commit 8091c16cf3
3 changed files with 84 additions and 35 deletions

View File

@@ -71,3 +71,15 @@ export function searchStockNumber(...params) {
}
})
}
// 出库
export function submitOutStore(...params) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '库存管理_物料出库_出库记录_增加数据',
param: `出库数量=${params[0]}&出库人流水号=${params[1]}&基本件流水号=${params[2]}&标准件和外购件流水号=${params[3]}`
}
})
}