mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 18:28:43 +08:00 
			
		
		
		
	✨ CRM:更新最新代码,支持线索、客户、联系人、商机、合同等功能
This commit is contained in:
		| @@ -38,10 +38,6 @@ public class BannerApplicationRunner implements ApplicationRunner { | ||||
|             if (isNotPresent("cn.iocoder.yudao.framework.flowable.config.YudaoFlowableConfiguration")) { | ||||
|                 System.out.println("[工作流模块 yudao-module-bpm - 已禁用][参考 https://doc.iocoder.cn/bpm/ 开启]"); | ||||
|             } | ||||
|             // 微信公众号 | ||||
|             if (isNotPresent("cn.iocoder.yudao.module.mp.framework.mp.config.MpConfiguration")) { | ||||
|                 System.out.println("[微信公众号 yudao-module-mp - 已禁用][参考 https://doc.iocoder.cn/mp/build/ 开启]"); | ||||
|             } | ||||
|             // 商城系统 | ||||
|             if (isNotPresent("cn.iocoder.yudao.module.trade.framework.web.config.TradeWebConfiguration")) { | ||||
|                 System.out.println("[商城系统 yudao-module-mall - 已禁用][参考 https://doc.iocoder.cn/mall/build/ 开启]"); | ||||
| @@ -50,6 +46,14 @@ public class BannerApplicationRunner implements ApplicationRunner { | ||||
|             if (isNotPresent("cn.iocoder.yudao.module.erp.framework.web.config.ErpWebConfiguration")) { | ||||
|                 System.out.println("[ERP 系统 yudao-module-erp - 已禁用][参考 https://doc.iocoder.cn/erp/build/ 开启]"); | ||||
|             } | ||||
|             // CRM 系统 | ||||
|             if (isNotPresent("cn.iocoder.yudao.module.crm.framework.web.config.CrmWebConfiguration")) { | ||||
|                 System.out.println("[CRM 系统 yudao-module-crm - 已禁用][参考 https://doc.iocoder.cn/crm/build/ 开启]"); | ||||
|             } | ||||
|             // 微信公众号 | ||||
|             if (isNotPresent("cn.iocoder.yudao.module.mp.framework.mp.config.MpConfiguration")) { | ||||
|                 System.out.println("[微信公众号 yudao-module-mp - 已禁用][参考 https://doc.iocoder.cn/mp/build/ 开启]"); | ||||
|             } | ||||
|             // 支付平台 | ||||
|             if (isNotPresent("cn.iocoder.yudao.module.pay.framework.pay.config.PayConfiguration")) { | ||||
|                 System.out.println("[支付系统 yudao-module-pay - 已禁用][参考 https://doc.iocoder.cn/pay/build/ 开启]"); | ||||
|   | ||||
| @@ -319,7 +319,13 @@ public class GlobalExceptionHandler { | ||||
|             return CommonResult.error(NOT_IMPLEMENTED.getCode(), | ||||
|                     "[ERP 系统 yudao-module-erp - 表结构未导入][参考 https://doc.iocoder.cn/erp/build/ 开启]"); | ||||
|         } | ||||
|         // 6. 支付平台 | ||||
|         // 6. CRM 系统 | ||||
|         if (message.contains("crm_")) { | ||||
|             log.error("[CRM 系统 yudao-module-crm - 表结构未导入][参考 https://doc.iocoder.cn/crm/build/ 开启]"); | ||||
|             return CommonResult.error(NOT_IMPLEMENTED.getCode(), | ||||
|                     "[CRM 系统 yudao-module-crm - 表结构未导入][参考 https://doc.iocoder.cn/crm/build/ 开启]"); | ||||
|         } | ||||
|         // 7. 支付平台 | ||||
|         if (message.contains("pay_")) { | ||||
|             log.error("[支付模块 yudao-module-pay - 表结构未导入][参考 https://doc.iocoder.cn/pay/build/ 开启]"); | ||||
|             return CommonResult.error(NOT_IMPLEMENTED.getCode(), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV