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

@@ -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
}
})
}