赫艾前端
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.

45 lines
2.1 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // 获取生产报告信息
  3. export const getGenerateReportList = data => createAPI(`dailyPlan/getGenerateReportList`, 'post', data);
  4. // 获取生产报告信息
  5. export const saveGenerateReport = data => createAPI(`dailyPlan/saveGenerateReport`, 'post', data);
  6. // 获取生产报告信息
  7. export const getSOScheduleRoutingData = data => createAPI(`dailyPlan/getSOScheduleRoutingData`, 'post', data);
  8. // 获取生产报告信息
  9. export const saveGenerateReportForSchedule = data => createAPI(`dailyPlan/saveGenerateReportForSchedule`, 'post', data);
  10. export const cancelJob = data => createAPI(`dailyPlan/cancelJob`, 'post', data);
  11. export const searchReportedQty= data => createAPI(`dailyPlan/searchReportedQty`, 'post', data);
  12. export const getStockPrint= data => createAPI(`dailyPlan/getStockPrint`, 'post', data);
  13. export const updatePrintStock= data => createAPI(`dailyPlan/updatePrintStock`, 'post', data);
  14. // 扫描派工单获取改派工单数据
  15. export const searchSeqNo= data => createAPI(`dailyPlan/searchSeqNo`, 'post', data);
  16. //保存开始时间
  17. export const startSeqNo= data => createAPI(`dailyPlan/startSeqNo`, 'post', data);
  18. export const stopWork= data => createAPI(`dailyPlan/stopWork`, 'post', data);
  19. export const continueWork= data => createAPI(`dailyPlan/continueWork`, 'post', data);
  20. export const circulationSchedule= data => createAPI(`dailyPlan/circulationSchedule`, 'post', data);
  21. export const closeSchedule= data => createAPI(`dailyPlan/closeSchedule`, 'post', data);
  22. export const searchLastApproveQty= data => createAPI(`dailyPlan/searchLastApproveQty`, 'post', data);
  23. export const transFerSearch= data => createAPI(`dailyPlan/transFerSearch`, 'post', data);
  24. export const getTransPrintData= data => createAPI(`dailyPlan/getTransPrintData`, 'post', data);
  25. export const getPartCardPrintData= data => createAPI(`dailyPlan/getPartCardPrintData`, 'post', data);
  26. export const getSfdcList= data => createAPI(`dailyPlan/getSfdcList`, 'post', data);
  27. export const cancelSfdc= data => createAPI(`dailyPlan/cancelSfdc`, 'post', data);