This commit is contained in:
lixin
2018-12-30 01:57:22 +08:00
parent ba40c3396f
commit 6ebafc1331
6 changed files with 123 additions and 34 deletions

View File

@@ -36,26 +36,26 @@ export function searchTeam(machineNumber) {
})
}
// 外购件、标准件查询
export function searchPurchasePart(project_check, project, machine_check, machine, group_check, group) {
export function searchPurchasePart(pageCurrent, pageSize, project_check, project, machine_check, machine, group_check, group) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_外购件出库_零件查询',
param: '项目流水号_check=' + project_check + '&项目流水号=' + project + '&机床流水号_check=' + machine_check + '&机床流水号=' + machine + '&组件流水号_check=' + group_check + '&组件流水号=' + group
param: '项目流水号_check=' + project_check + '&项目流水号=' + project + '&机床流水号_check=' + machine_check + '&机床流水号=' + machine + '&组件流水号_check=' + group_check + '&组件流水号=' + group,
Pagination: pageCurrent + '&' + pageSize
}
})
}
// 被替换件查询
export function searchSubstituted(material_check, material) {
export function searchSubstituted() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_替换件_被替换件查询',
param: '物料名称_check=' + material_check + '&物料名称=' + material
name: '库存管理_离线外购件_出库查询'
}
})
}