This commit is contained in:
lixin
2018-12-21 19:20:03 +08:00
parent 7994ed0baa
commit bdb80fa59e
9 changed files with 199 additions and 73 deletions

View File

@@ -72,14 +72,14 @@ export function searchDirectPart(pageCurrent, pageSize, project_check, project,
})
}
// 人员查询 需要在部门确定之后修改
export function searchPeople() {
export function searchPeople(data1) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '人事档案管理_人员_部门与人员_查询数据_根据部门编号',
param: '考核部门编号=18'
name: '库存管理_人员查询_库存部门',
param: '角色编号=' + data1
}
})
}

View File

@@ -10,6 +10,17 @@ export function searchContract() {
}
})
}
export function searchShopContract() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_库存管理_车间采购合同查询'
}
})
}
// 仓库查询
export function searchInventory() {
return request({
@@ -33,7 +44,7 @@ export function searchInbound(data1, data2, data3) {
}
})
}
// 入库记录查询
// 车间采购查询
export function searchShopInbound(data1, data2, data3) {
return request({
url: '',
@@ -108,3 +119,15 @@ export function addInboundCardDetail(data1, data2, data3, data4, data5, data6, d
})
}
// 入库单明细查询
export function deleteInboundCardDetail(data1) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '库存管理_采购入库单_采购入库单明细删除',
param: '采购入库单明细流水号=' + data1
}
})
}

View File

@@ -47,14 +47,14 @@ export function searchPart() {
})
}
// 人员查询 需要在部门确定之后修改
export function searchPeople() {
export function searchPeople(data1) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '人事档案管理_人员_部门与人员_查询数据_根据部门编号',
param: '考核部门编号=' + 18
name: '库存管理_人员查询_库存部门',
param: '角色编号=' + data1
}
})
}