到货查询

This commit is contained in:
zhangdingyu
2019-10-12 10:30:00 +08:00
parent 1387e332f2
commit f7fa095b73
2 changed files with 55 additions and 10 deletions

View File

@@ -1,13 +1,14 @@
import request from '@/utils/request'
// 初始化合同
export function initArrivalStateContact() {
export function initArrivalStateContact(num) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_采购请款表_查询数据'
name: '采购管理_采购请款表_查询数据',
param: `供应商流水号_check=1&供应商流水号=${num}`
}
})
}
@@ -61,3 +62,26 @@ export function submit(num) {
}
})
}
// 查询仓库到货情况
export function searchArrivalState12(pageCurrent, pageSize, check1, num, check2, name) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_仓库到货情况_查询数据_NEW',
param: `采购合同流水号_check=${check1}&采购合同流水号=${num}&供应商流水号_check=${check2}&供应商流水号=${name}`,
Pagination: pageCurrent + '&' + pageSize
}
})
}
export function searchgongyings() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_仓库到货情况_供货商查询数据'
}
})
}