You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
495 B

import { createAPI } from '@/utils/httpRequest.js'
// 获取待排产的工单
export const getShopOrderList = data => createAPI('scheduling/getShopOrderList', 'POST', data)
//获取当前人员的日历编码和描述
export const getCurrentWorkCenterNoByResourceId = data => createAPI('scheduling/getCurrentWorkCenterNoByResourceId', 'POST', data)
// 批量拓展排产
export const batchScheduleOrderWithExpand = data => createAPI('scheduling/batchScheduleOrderWithExpand', 'POST', data)