物料出库

This commit is contained in:
chenjianan
2019-06-02 13:59:05 +08:00
parent a4d0669550
commit 35d4a98f9d
5 changed files with 277 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
import request from '@/utils/request'
// 领料单查询
export function searchList(pageCurrent, pageSize, listNumber_check, listNumber) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间装配管理_领料单_查询数据',
param: '领料单编号_check=' + listNumber_check + '&领料单编号=' + listNumber,
Pagination: pageCurrent + '&' + pageSize
}
})
}
// 查询领料单明细
export function searchListDetail(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间装配管理_领料单明细_查询数据',
param: `领料单流水号=${params[0]}`
}
})
}
// 查看领料单明细相关的物料货位数量
export function searchStockNumber(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_物料出库_标准件和外购件_查询数据',
param: `物料流水号=${params[0]}`
}
})
}