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.

25 lines
1.0 KiB

6 months ago
  1. import { createAPI } from '@/utils/httpRequest.js'
  2. // 校验创建分卷的操作
  3. export const checkCreateSplitSfdcRoll = data => createAPI('schedule/checkCreateSplitSfdcRoll', 'POST', data)
  4. // 执行创建分卷的操作
  5. export const createSplitSfdcRoll = data => createAPI('schedule/createSplitSfdcRoll', 'POST', data)
  6. // 校验fqc创建分卷的操作
  7. export const otherCheckCreateSplitSfdcRoll = data => createAPI('schedule/otherCheckCreateSplitSfdcRoll', 'POST', data)
  8. // 执行fqc创建分卷的操作
  9. export const otherCreateSplitSfdcRoll = data => createAPI('schedule/otherCreateSplitSfdcRoll', 'POST', data)
  10. // 换包装分卷
  11. export const workbenchCreateslittingrollRepackAction = data => createAPI('schedule/workbench_createslittingroll_Repack_action', 'POST', data)
  12. // 获取固定载具列表
  13. export const getFixedCarrierList = data => createAPI('schedule/getFixedCarrierList', 'POST', data)
  14. // 批量更新固定载具可用数量
  15. export const updateFixedCarrierBatch = data => createAPI('schedule/updateFixedCarrierBatch', 'POST', data)