车间排产

This commit is contained in:
zhangdingyu
2019-10-25 18:25:54 +08:00
parent cc964bc310
commit 52fece3089
4 changed files with 237 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
import request from '@/utils/request'
// 初始化工艺
export function getPerson() {
return request({
url: '',
method: 'post',
data: {
type: '3',
name: 'SELECT 姓名,人员编号 FROM 人事档案管理_人员名单 inner join dbo.人事档案管理_基础表_部门 on 人事档案管理_人员名单.考核部门编号=人事档案管理_基础表_部门.考核部门编号 where 人事档案管理_人员名单.考核部门编号=12 and 人员编号 <> 82 order by 姓名 '
}
})
}
export function getParts(pageCurrent, pageSize) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间生产管理工艺_车间排产_零件查询',
Pagination: pageCurrent + '&' + pageSize
}
})
}