技术中心部分修改,添加库存系统
This commit is contained in:
35
src/api/Inventory/InboundCard.js
Normal file
35
src/api/Inventory/InboundCard.js
Normal file
@@ -0,0 +1,35 @@
|
||||
import request from '@/utils/request'
|
||||
// 采购合同查询
|
||||
export function searchContract() {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '1',
|
||||
name: '库存管理_库存管理_采购合同查询'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 仓库查询
|
||||
export function searchInventory() {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '1',
|
||||
name: '库存管理_货位主文件_仓库查询'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 入库记录查询
|
||||
export function searchInbound(data1, data2, data3) {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '1',
|
||||
name: '库存管理_入库记录_查询',
|
||||
param: '采购合同流水号=' + data1 + '&到货时间=' + data2 + '&仓库流水号=' + data3
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user