物料变更规格型号

This commit is contained in:
chenjianan
2019-04-18 12:03:17 +08:00
parent 47a2ea0071
commit 8dd0013928
2 changed files with 27 additions and 9 deletions

View File

@@ -136,14 +136,14 @@ export function outInquirySheet(num1, num2, num3) {
})
}
// 查询物料
export function searchAllMaterial(MaterialName, pageCurrent, pageSize) {
export function searchAllMaterial(check1, MaterialName, check2, MaterialSpec, check3, MaterialModel, pageCurrent, pageSize) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_物料主文件_基本_查询数据_分页',
param: '物料名称_check=1&物料名称=' + MaterialName + '&PageCurrent=' + pageCurrent + '=int&PageSize=' + pageSize + '=int&PageCount=1=int=output&ItemCount=1=int=output'
param: `物料名称_check=${check1}&物料名称=${MaterialName}&物料规格_check=${check2}&物料规格=${MaterialSpec}&物料型号_check=${check3}&物料型号=${MaterialModel}&PageCurrent=${pageCurrent}=int&PageSize=${pageSize}=int&PageCount=1=int=output&ItemCount=1=int=output`
}
})
}