创建采购合同和零件导入

This commit is contained in:
liushuai
2018-12-05 20:09:23 +08:00
16 changed files with 318 additions and 110 deletions

View File

@@ -330,3 +330,25 @@ export function delPost(num1) {
}
})
}
export function quit(num1) {
return request({
url: '',
method: 'post',
data: {
type: 2,
name: '人事档案管理_人员_离职操作',
param: '人员编号=' + num1 + '=int'
}
})
}
export function searchLeavingList(pageCurrent, pageSize) {
return request({
url: '',
method: 'post',
data: {
type: 1,
name: '人事档案管理_人员_离职人员查询',
pagination: pageCurrent + '&' + pageSize
}
})
}

View File

@@ -85,14 +85,14 @@ export function addExchangepart(data1, data2, data3, data4, data5, data6, data7,
})
}
// 删除交换单
export function dropExchangeList(PickingListNumberx, data) {
export function dropExchangeList(PickingListNumberx) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '库存管理_交换件_交换件删除',
param: '交换单流水号=' + PickingListNumberx + '&交换件组件零件流水号=' + data
param: '交换单流水号=' + PickingListNumberx
}
})
}