设备监控、采购件入库

This commit is contained in:
zhangdingyu
2019-10-10 11:29:43 +08:00
parent 12fa29bc00
commit aa27408b54
3 changed files with 582 additions and 12 deletions

View File

@@ -57,3 +57,25 @@ export function getDaijiagong(num) {
}
})
}
// 查询总装
export function getZongzhuang() {
return request({
url: '',
method: 'post',
data: {
type: '3',
name: 'SELECT 机床图号 FROM PDM_机床名称 where 机床装配实际开始时间 is not null and 机床装配实际完成时间 is null'
}
})
}
// 查询部装
export function getBuzhuang() {
return request({
url: '',
method: 'post',
data: {
type: '3',
name: 'SELECT 机床图号,组号,任务名称 FROM 车间管理_工作计划 inner join PDM_机床名称 on 车间管理_工作计划.机床流水号=PDM_机床名称.机床流水号 where 计划类型=1 and 是否工作=1 and 组号 <> \'\''
}
})
}