fixed bug

This commit is contained in:
chenjianan
2019-05-25 14:14:53 +08:00
parent e59d3f8114
commit 139431e6fe
7 changed files with 767 additions and 352 deletions

View File

@@ -143,3 +143,27 @@ export function executeReturn2(...params) {
}
})
}
// 执行退回1标准件和外购件
export function retract1(num) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购部采购_撤回物料',
param: `标准件和外购件流水号=${num}`
}
})
}
// 执行退回1基本件
export function retract2(num) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购部采购_撤回物料_基本件',
param: `基本件流水号=${num}`
}
})
}