inboundProcessing.js 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*******************************************************************************
  2. * Copyright(c) 2024 dongke All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:
  5. * 2.功能描述:待办入库-采购入库
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 姜永辉 2024-1-19 1.00 新建
  9. *******************************************************************************/
  10. module.exports = {
  11. inboundProcessingService: {
  12. // 前缀
  13. prefix: 'mdm-server/ivt/inbound_purchase/',
  14. inBoundHandle: 'inbound_handle',
  15. inboundInsert: 'inbound_insert',
  16. inboundUpdate: 'inbound_update',
  17. inboundRepeal: 'repeal/',
  18. inBoundCancel: 'inbound_cancel',
  19. },
  20. routeUrl: {
  21. inboundProcessing: {
  22. returnCancel: { key: 'returnCancel', method: 'returnCancel',image: 'btn-void.png',question:true },
  23. invaidOrder: { key: 'invaidOrder', method: 'invaidOrder',image: 'btn-void.png',question:true },
  24. editOrder: { key: 'editOrder', method: 'editOrder', primaryKey: 'intoId', image: 'btn-edit.png'},
  25. ticketPirnt: { key: 'ticketPirnt', method: 'ticketPirnt', primaryKey: 'intoId', image: 'btn-printing.png'},
  26. addReturn: {
  27. key: 'addReturn', url: '/package-sales/pages/order-return/add/add'
  28. },
  29. detailInProcessing: { key: 'detailInProcessing', url: '/package-inventory/pages/warehousing-processing/detail/detail', },
  30. detail: { key: 'detail', url: '/package-purchase/pages/purchase-receipt/detail/detail' },
  31. add: { key: 'add', url: '/package-purchase/pages/purchase-receipt/add/add' },
  32. edit: { key: 'edit', url: '/package-inventory/pages/warehousing-processing/detail/detail' },
  33. // 销售退货的办理详细
  34. editReturn: { key: 'editReturn', url: '/package-inventory/pages/outbound-processing/detail/detail' },
  35. addOther: { key: 'addOther', url: '/package-inventory/pages/other-warehousing/other-warehousing' },
  36. chooseSupplier: { key: 'chooseSupplier', url: '/package-base-select/pages/select-data/select-data', type: 'supplier' },
  37. chooseStaff: { key: 'chooseStaff', url: '/package-base-select/pages/select-data/select-data', type: 'staff' },
  38. staffadd: { key: 'staffadd', url: '/package-basic-data/pages/staff/add/add' },
  39. chooseOrg: { key: 'chooseOrg', url: '/package-base-select/pages/select-data/select-data', type: 'org' },
  40. chooseWh: { key: 'chooseWh', url: '/package-base-select/pages/select-data/select-data', type: 'warehouse' },
  41. choosePurchaseOrder: { key: 'choosePurchaseOrder', url: '/package-purchase/pages/purchase-receipt/choose-purchase-order/choose-purchase-order' },
  42. openingInventory: { key: 'openingInventory', url: '/package-base-select/pages/select-data/select-data',type:'warehouse' },
  43. }
  44. }
  45. };