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.

24 lines
828 B

10 months ago
  1. /**
  2. * 申请单明细通用查询API - rqrq
  3. */
  4. import { createAPI } from "@/utils/httpRequest.js";
  5. // ========== 查询相关 ========== - rqrq
  6. /**
  7. * 查询申请单订单列表分页- rqrq
  8. */
  9. export const searchNotifyOrderList = data => createAPI('/automatedWarehouse/notifyDetailQuery/searchNotifyOrderList', 'post', data)
  10. /**
  11. * 查询申请单物料明细根据notify_no+site+item_no- rqrq
  12. */
  13. export const searchMaterialListDetail = data => createAPI('/automatedWarehouse/notifyDetailQuery/searchMaterialListDetail', 'post', data)
  14. // ========== 业务操作 ========== - rqrq
  15. /**
  16. * 关闭申请单任务 - rqrq
  17. * 功能更新transport_flag为'Y'解除栈板调用状态
  18. */
  19. export const closeNotifyTask = data => createAPI('/automatedWarehouse/notifyDetailQuery/closeNotifyTask', 'post', data)