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

80 lines
4.2 KiB

4 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
1 year ago
4 years ago
3 years ago
1 year ago
4 years ago
3 years ago
4 years ago
3 years ago
4 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
1 year ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // 日计划排产table
  3. export const getShopOrderData = data => createAPI(`dailyPlan/getShopOrderData`, 'post', data);
  4. // 查询已派工数量
  5. export const getSchedulingSize=data => createAPI(`dailyPlan/getSchedulingSize`, 'post', data);
  6. //保存和修改日计划
  7. export const savePlan=data => createAPI(`dailyPlan/savePlan`, 'post', data);
  8. export const savePlans=data => createAPI(`dailyPlan/savePlans`, 'post', data);
  9. //排产清单table
  10. export const getWorkPlanData=data => createAPI(`dailyPlan/getWorkPlanData`, 'post', data);
  11. //删除日计划
  12. export const delPlan=data => createAPI(`dailyPlan/delPlan`, 'post', data);
  13. export const getSPBomQtyAssembly=data => createAPI(`dailyPlan/getSPBomQtyAssembly`, 'post', data);
  14. export const getDailyPlanData=data => createAPI(`dailyPlan/getDailyPlanData`, 'post', data);
  15. export const dailyPlanReportSave=data => createAPI(`dailyPlan/dailyPlanReportSave`, 'post', data);
  16. export const dailyPlanReportsSave=data => createAPI(`dailyPlan/dailyPlanReportsSave`, 'post', data);
  17. export const productionBlankingSearch=data => createAPI(`dailyPlan/productionBlankingSearch`, 'post', data);
  18. export const getOperatorData=data => createAPI(`dailyPlan/getOperatorData`, 'post', data);
  19. export const getWorkCenterData=data => createAPI(`dailyPlan/getWorkCenterData`, 'post', data);
  20. export const getWorkCenterOperatorData=data => createAPI(`dailyPlan/getWorkCenterOperatorData`, 'post', data);
  21. export const addSkill=data => createAPI(`dailyPlan/addSkill`, 'post', data);
  22. export const deleteSkill=data => createAPI(`dailyPlan/deleteSkill`, 'post', data);
  23. export const getShopOrderRoutingData=data => createAPI(`dailyPlan/getShopOrderRoutingData`, 'post', data);
  24. export const getSOTastRoutingData=data => createAPI(`dailyPlan/getSOTastRoutingData`, 'post', data);
  25. export const getWorkCenterOperatorList=data => createAPI(`dailyPlan/getWorkCenterOperatorList`, 'post', data);
  26. export const getAvailableResourceList=data => createAPI(`dailyPlan/getAvailableResourceList`, 'post', data);
  27. export const scheduleForShopOrder=data => createAPI(`dailyPlan/scheduleForShopOrder`, 'post', data);
  28. export const scheduleForVPShopOrder=data => createAPI(`dailyPlan/scheduleForVPShopOrder`, 'post', data);
  29. export const scheduleForSOTask=data => createAPI(`dailyPlan/scheduleForSOTask`, 'post', data);
  30. export const saveHunlianTask=data => createAPI(`dailyPlan/saveHunlianTask`, 'post', data);
  31. export const getVpPartModel=data => createAPI(`dailyPlan/getVpPartModel`, 'post', data);
  32. export const getHunlianTaskData=data => createAPI(`dailyPlan/getHunlianTaskData`, 'post', data);
  33. export const getHunlianTaskDetailData=data => createAPI(`dailyPlan/getHunlianTaskDetailData`, 'post', data);
  34. export const cancelTask=data => createAPI(`dailyPlan/cancelTask`, 'post', data);
  35. export const reportTask=data => createAPI(`dailyPlan/reportTask`, 'post', data);
  36. export const cancelReportTask=data => createAPI(`dailyPlan/cancelReportTask`, 'post', data);
  37. export const getAllWorkCenterDataForUser=data => createAPI(`dailyPlan/getAllWorkCenterDataForUser`, 'post', data);
  38. export const getWorkCenterUserData=data => createAPI(`dailyPlan/getWorkCenterUserData`, 'post', data);
  39. export const addUserSkill=data => createAPI(`dailyPlan/addUserSkill`, 'post', data);
  40. export const deleteUserSkill=data => createAPI(`dailyPlan/deleteUserSkill`, 'post', data);
  41. export const addUserSkillAll=data => createAPI(`dailyPlan/addUserSkillAll`, 'post', data);
  42. export const deleteUserSkillAll=data => createAPI(`dailyPlan/deleteUserSkillAll`, 'post', data);
  43. export const getPartNoOnHand= data => createAPI(`dailyPlan/getPartNoOnHand`, 'post', data);
  44. export const getHunLianPrintData= data => createAPI(`dailyPlan/getHunLianPrintData`, 'post', data);
  45. export const getAllDepartment= data => createAPI(`dailyPlan/getAllDepartment`, 'post', data);
  46. export const updateTV=data => createAPI(`dailyPlan/updateTV`, 'post', data);
  47. export const getTvList=data => createAPI(`dailyPlan/getTvList`, 'post', data);
  48. export const updateWorkStation=data => createAPI(`dailyPlan/updateWorkStation`, 'post', data);
  49. export const getShopOrderRoutingVPData=data => createAPI(`dailyPlan/getShopOrderRoutingVPData`, 'post', data);