车间排产

This commit is contained in:
zhangdingyu
2019-10-26 15:48:41 +08:00
parent b1ddb09a80
commit ac3477bf77
3 changed files with 154 additions and 24 deletions

View File

@@ -22,3 +22,43 @@ export function getParts(pageCurrent, pageSize) {
}
})
}
export function getGongxu(num) {
return request({
url: '',
method: 'post',
data: {
type: '3',
name: `select 姓名,排产时间,工序流水号,工艺名称,投产数量,完成日期,工序顺序,工序间是否外协,加工完成状态,工序状态 from dbo.车间生产管理工艺_插件排产查询_视图 where 工艺编号 is not null and 工艺编号<>0 and 考核状态 = 6 and 工艺计划流水号=${num} order by 工序顺序`
}
})
}
export function searchTableData2(num) {
return request({
url: '',
method: 'post',
data: {
type: '3',
name: `select 姓名,零件图号,零件名称,工序流水号,工艺名称,投产数量,完成日期,工序顺序,工序间是否外协,加工完成状态,工序状态 from dbo.车间生产管理工艺_插件排产查询_视图 where 排产人员=${num} order by 工序顺序`
}
})
}
export function XuanRu(num, num2) {
return request({
url: '',
method: 'post',
data: {
type: '4',
name: `update 车间生产管理工艺_零件工序 set 排产人员=${num},排产时间= GETDATE() where 工序流水号=${num2}`
}
})
}
export function XuanChu(num) {
return request({
url: '',
method: 'post',
data: {
type: '4',
name: `update 车间生产管理工艺_零件工序 set 排产人员= null,排产时间= null where 工序流水号=${num}`
}
})
}