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

91 lines
5.0 KiB

3 years ago
3 years ago
1 year ago
1 year 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
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
2 years ago
2 years ago
2 years ago
10 months ago
2 years ago
1 year ago
10 months ago
1 year ago
11 months ago
8 months ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. import {data} from "autoprefixer";
  3. // 获取生产报告信息
  4. export const getGenerateReportList = data => createAPI(`dailyPlan/getGenerateReportList`, 'post', data);
  5. // 获取生产报告信息
  6. export const saveGenerateReport = data => createAPI(`dailyPlan/saveGenerateReport`, 'post', data);
  7. // 获取生产报告信息
  8. export const getSOScheduleRoutingData = data => createAPI(`dailyPlan/getSOScheduleRoutingData`, 'post', data);
  9. export const getSOScheduleRoutingDataPrint = data => createAPI(`dailyPlan/getSOScheduleRoutingDataPrint`, 'post', data);
  10. export const linkWeighTPC = data => createAPI(`dailyPlan/linkWeighTPC`, 'post', data);
  11. export const reLinkWeighTPC = data => createAPI(`dailyPlan/reLinkWeighTPC`, 'post', data);
  12. export const closeWeighTPC = data => createAPI(`dailyPlan/closeWeighTPC`, 'post', data);
  13. // 获取生产报告信息
  14. export const saveGenerateReportForSchedule = data => createAPI(`dailyPlan/saveGenerateReportForSchedule`, 'post', data);
  15. export const cancelJob = data => createAPI(`dailyPlan/cancelJob`, 'post', data);
  16. export const searchReportedQty= data => createAPI(`dailyPlan/searchReportedQty`, 'post', data);
  17. export const getStockPrint= data => createAPI(`dailyPlan/getStockPrint`, 'post', data);
  18. export const getStockPrintAll= data => createAPI(`dailyPlan/getStockPrintAll`, 'post', data);
  19. export const updatePrintStock= data => createAPI(`dailyPlan/updatePrintStock`, 'post', data);
  20. // 扫描派工单获取改派工单数据
  21. export const searchSeqNo= data => createAPI(`dailyPlan/searchSeqNo`, 'post', data);
  22. //保存开始时间
  23. export const startSeqNo= data => createAPI(`dailyPlan/startSeqNo`, 'post', data);
  24. export const stopWork= data => createAPI(`dailyPlan/stopWork`, 'post', data);
  25. export const continueWork= data => createAPI(`dailyPlan/continueWork`, 'post', data);
  26. export const circulationSchedule= data => createAPI(`dailyPlan/circulationSchedule`, 'post', data);
  27. export const closeSchedule= data => createAPI(`dailyPlan/closeSchedule`, 'post', data);
  28. export const openSchedule= data => createAPI(`dailyPlan/openSchedule`, 'post', data);
  29. export const searchLastApproveQty= data => createAPI(`dailyPlan/searchLastApproveQty`, 'post', data);
  30. export const transFerSearch= data => createAPI(`dailyPlan/transFerSearch`, 'post', data);
  31. export const getTransPrintData= data => createAPI(`dailyPlan/getTransPrintData`, 'post', data);
  32. export const getPartCardPrintData= data => createAPI(`dailyPlan/getPartCardPrintData`, 'post', data);
  33. export const getSfdcList= data => createAPI(`dailyPlan/getSfdcList`, 'post', data);
  34. export const cancelSfdc= data => createAPI(`dailyPlan/cancelSfdc`, 'post', data);
  35. export const getLiuHuaPrintData= data => createAPI(`dailyPlan/getLiuHuaPrintData`, 'post', data);
  36. export const getTvList=data => createAPI(`dailyPlan/getTvList`, 'post', data)
  37. export const getBadCodeList=data => createAPI(`dailyPlan/getBadCodeList`, 'post', data)
  38. export const printDefectCard=data => createAPI(`dailyPlan/printDefectCard`, 'post', data)
  39. export const getOrderView=data => createAPI(`dailyPlan/getOrderView`, 'post', data)
  40. export const getLiuhuaView=data => createAPI(`dailyPlan/getLiuhuaView`, 'post', data)
  41. export const queryVulcanizationList=data => createAPI(`dailyPlan/vulcanization`, 'post', data)
  42. export const selectSFDCToolHist = data =>createAPI(`dailyPlan/selectToolHist`,'post',data)
  43. export const selectToolingHist = data =>createAPI(`dailyPlan/selectToolingHist`,'post',data)
  44. export const startRework = data =>createAPI(`/dailyPlan/startRework`,'post',data)
  45. export const selectRework = data =>createAPI(`/dailyPlan/selectRework`,'post',data)
  46. export const saveRework = data =>createAPI(`/dailyPlan/saveRework`,'post',data)
  47. export const getRework = data =>createAPI(`/dailyPlan/getRework`,'post',data)
  48. export const getTimeHistListForSfdc = data =>createAPI(`/dailyPlan/getTimeHistListForSfdc`,'post',data)
  49. export const getPackagePrintDataList = data =>createAPI('/board/getPackagePrintDataList','get',data)
  50. export const packagePrintDataList = data =>createAPI('/board/packagePrintDataList','post',data)
  51. export const getPartValue = data=>createAPI('/board/getPartValue','get',data);
  52. export const saveScanLabel = data=>createAPI('/board/saveScanLabel','post',data);
  53. //根据物料查询标准袋重量
  54. export const queryStandardWeight = data=>createAPI('/board/queryStandardWeight','post',data);
  55. export const removeScanLabel = data=>createAPI('/board/removeScanLabel','post',data);
  56. export const scanLabel = data=>createAPI('/board/scanLabel','post',data);
  57. export const checkIsPacking = data=>createAPI('/board/checkIsPacking','get',data);
  58. export const searchOutboundLabelScanList = data=>createAPI('/outbound/label/list','post',data);
  59. export const getTCPPackagePrintDataList = data =>createAPI('/board/getTCPPackagePrintDataList','post',data)
  60. export const removeRework = (data) => createAPI(`/dailyPlan/removeRework`,'post',data)
  61. export const cancelRework = (data) => createAPI(`/dailyPlan/cancelRework`,'post',data)
  62. export const queryOperator = (data) => createAPI(`/dailyPlan/operator`,'post',data)