直达件:改查询条件无效,编辑领用者显示编号

This commit is contained in:
chenjianan
2018-11-23 09:48:29 +08:00
parent a0e238ef01
commit 3b215d048b
2 changed files with 16 additions and 22 deletions

View File

@@ -59,14 +59,14 @@ export function searchContractDetail(contractnumber) {
})
}
// 直达件查询
export function searchDirectPart(pageCurrent, pageSize, project_check, project, machine_check, machine, group_check, group, contract) {
export function searchDirectPart(pageCurrent, pageSize, project_check, project, machine_check, machine, group_check, group, contract_check, contract) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_直达件_零件查询',
param: '项目流水号_check=' + project_check + '&项目流水号=' + project + '&机床流水号_check=' + machine_check + '&机床流水号=' + machine + '&组件流水号_check=' + group_check + '&组件流水号=' + group + '&合同流水号=' + contract,
param: '项目流水号_check=' + project_check + '&项目流水号=' + project + '&机床流水号_check=' + machine_check + '&机床流水号=' + machine + '&组件流水号_check=' + group_check + '&组件流水号=' + group + '&合同流水号_check=' + contract_check + '&合同流水号=' + contract,
Pagination: pageCurrent + '&' + pageSize
}
})
@@ -79,7 +79,7 @@ export function searchPeople() {
data: {
type: '1',
name: '人事档案管理_人员_部门与人员_查询数据_根据部门编号',
param: '考核部门编号=' + 18
param: '考核部门编号=18'
}
})
}