This commit is contained in:
liushuai
2020-02-04 09:39:34 +08:00
parent 311e014375
commit 5f41045ae7
22 changed files with 521 additions and 161 deletions

View File

@@ -49,3 +49,15 @@ export function edit2(num1) {
}
})
}
export function getExport(num1, num2, num3, num4) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间生产管理工艺_零件工艺计划_编制工艺_备料零件查询',
param: '零件图号_check=' + num1 + '&零件图号=' + num2 + '&备料打印_check=' + num3 + '&备料打印=' + num4 + '&备料到货=0'
}
})
}

View File

@@ -47,6 +47,18 @@ export function getTable1(check, partNumber) {
}
})
}
// 打回
export function getBack(processPlan) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '车间生产管理工艺_外协零件_打回',
param: '工艺计划流水号=' + processPlan
}
})
}
// 获取零件工序信息(零件号表中)
export function getprocedure(processPlan, single) {
return request({

View File

@@ -25,3 +25,15 @@ export function searchTable(check, supplierNameValue, check1, partNumber, check2
}
})
}
// 导出
export function searchTablesheet(check, supplierNameValue, check1, partNumber, check2, MaterialsValue, pageSize, pageCurrent) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '备料管理_外购备料_综合查询数据',
param: '供应商流水号_check=' + check + '&供应商流水号=' + supplierNameValue + '&零件图号_check=' + check1 + '&零件图号=' + partNumber + '&备料状态_check=' + check2 + '&备料状态=' + MaterialsValue
}
})
}