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

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