采购入库单bug

This commit is contained in:
chenjianan
2019-03-08 11:28:34 +08:00
parent be253d83fd
commit 2ef6915285
2 changed files with 67 additions and 50 deletions

View File

@@ -33,14 +33,14 @@ export function searchInventory() {
})
}
// 入库记录查询
export function searchInbound(data1, data2, data3) {
export function searchInbound(...data) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_入库记录_采购部查询',
param: '采购合同流水号=' + data1 + '&到货时间=' + data2 + '&仓库流水号=' + data3
param: `采购合同流水号_check=${data[0]}&采购合同流水号=${data[1]}&到货时间_check=${data[2]}&到货开始时间=${data[3]}&到货结束时间=${data[4]}&仓库流水号_check=${data[5]}&仓库流水号=${data[6]}`
}
})
}