| 12345678910111213141516171819202122232425262728 |
- /*******************************************************************************
- * Copyright(c) 2024 dongke All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:
- * 2.功能描述:待办出库-销售出库
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 姜永辉 2024-1-19 1.00 新建
- *******************************************************************************/
- module.exports = {
- outboundProcessingService: {
- // 前缀
- prefix: 'mdm-server/ivt/outbound_sale_order/',
- outBoundHandle: 'outbound_handle',
- outboundRepeal: 'repeal/',
- outBoundCancel: 'sale_order_outbound_cancel',
- },
- routeUrl: {
- outboundProcessing: {
- chooseSupplier: { key: 'chooseSupplier', url: '/package-base-select/pages/select-data/select-data',type:'supplier' },
- chooseStaff: { key: 'chooseStaff', url: '/package-base-select/pages/select-data/select-data',type:'staff' },
- staffadd: { key: 'staffadd', url: '/package-basic-data/pages/staff/add/add' },
- chooseOrg: { key: 'chooseOrg',url: '/package-base-select/pages/select-data/select-data',type:'org' },
- chooseWh: { key: 'chooseWh', url: '/package-base-select/pages/select-data/select-data',type:'warehouse' },
- }
- }
- };
|