supReceiptPayment.js 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. supReceiptPaymentService: {
  12. // 前缀
  13. prefix: 'mdm-server/mac/receipt/',
  14. getRpSupList: 'get_rp_sup_list',
  15. insertSupReceipt: 'insert_sup_receipt',
  16. getRpForUpdate: 'get_rp_for_update',
  17. selectRpInfoById: 'select_rp_info_by_id',
  18. updateSupReceipt: 'update_sup_receipt',
  19. insertSupRefund: 'insert_sup_refund',
  20. invalidSup: 'invalid_sup',
  21. },
  22. routeUrl: {
  23. supReceiptPayment: {
  24. docName:{key:'receipt' ,title:'收款单'},
  25. cusReturnCollection: { key: 'cusReturnCollection', method: 'cusReturnCollection',image: 'btn-customer-refund.png' },
  26. invalid: { key: 'invalid', method: 'invalid', primaryKey: 'rpId', image: 'btn-void.png' },
  27. editOrder: { key: 'editOrder', method: 'editOrder', primaryKey: 'rpId',image: 'btn-edit.png' },
  28. printedBill: { key: 'printedBill', method: 'printedBill', image:'btn-printing.png' },//打印
  29. // 收款单新建
  30. add: { key: 'add', url: '/package-purchase/pages/pur-receipt/add/add' },
  31. edit: { key: 'edit', url: '/package-purchase/pages/pur-receipt/add/add' },
  32. detail: {
  33. key: 'detail', url: '/package-purchase/pages/pur-receipt/detail/detail', idKey: 'rpId'
  34. },
  35. selectCollectionConfirm: { key: 'selectCollectionConfirm', url: '/package-base-select/pages/select-collection_confirm/select-collection_confirm' },
  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. }
  42. }
  43. };