Commit 7e0f8ccc authored by liwenbin's avatar liwenbin

应策略需求,已经关闭渠道的渠道,如果进件,他们坚决不配资方配置,那直接走拒绝通知下一层系统

parent 91cb9893
...@@ -228,7 +228,7 @@ public class AssetServiceImpl implements IAssetService{ ...@@ -228,7 +228,7 @@ public class AssetServiceImpl implements IAssetService{
} }
FundModuleChannelFundConfig config = fundModuleCHannelFundConfigService.findByBizChannel(assetForm.getBizChannel()); FundModuleChannelFundConfig config = fundModuleCHannelFundConfigService.findByBizChannel(assetForm.getBizChannel());
if (config == null && executeType == ExecuteType.TEST) { if (config == null && (executeType == ExecuteType.TEST || !"true".equals(assetForm.getAuditResult()))) {
return null; return null;
} }
QGPreconditions.checkArgument(config != null, QGExceptionType.NOT_FOUNT_CHANNEL_FUNDS_INFO, assetForm.getBizChannel()); QGPreconditions.checkArgument(config != null, QGExceptionType.NOT_FOUNT_CHANNEL_FUNDS_INFO, assetForm.getBizChannel());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment