取消使用滞货

This commit is contained in:
chenjianan
2019-03-28 17:53:38 +08:00
parent 40e88b96cd
commit cecb319b45
2 changed files with 51 additions and 23 deletions

View File

@@ -183,7 +183,7 @@ export function saveOrder(num1, num2, num3) {
}
})
}
// 编辑询价单
// 使用滞货
export function submitUseInventory(...params) {
return request({
url: '',
@@ -195,3 +195,15 @@ export function submitUseInventory(...params) {
}
})
}
// 取消使用滞货
export function cancelUseInventory(...params) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '采购管理_取消使用滞货',
param: `物料流水号=${params[0]}&取消数量=${params[1]}&组件零件流水号=${params[2]}`
}
})
}