Commit c8da8a4e authored by liwenbin's avatar liwenbin

fix

parent 1d3c4395
...@@ -174,7 +174,9 @@ public class FundModuleChannelFundConfigServiceImpl implements IFundModuleChanne ...@@ -174,7 +174,9 @@ public class FundModuleChannelFundConfigServiceImpl implements IFundModuleChanne
@Override @Override
public FundModuleChannelFundConfig auditPassConfig(Long preId, Long auditId) { public FundModuleChannelFundConfig auditPassConfig(Long preId, Long auditId) {
FundModuleChannelFundConfig config = updateEnable(auditId, true); FundModuleChannelFundConfig config = updateEnable(auditId, true);
updateEnable(preId, false); if (preId != null) {
updateEnable(preId, false);
}
return config; return config;
} }
......
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