Commit 5234dba5 by Mahjong

线上来佣比对导出备注

parent 67257027
...@@ -623,7 +623,7 @@ public class LifeCommissionServiceImpl implements LifeCommissionService { ...@@ -623,7 +623,7 @@ public class LifeCommissionServiceImpl implements LifeCommissionService {
buf.append(info.getPolicyTrackingStatus() == null ? "/" : handlePolicyTrackingStatus(info.getPolicyTrackingStatus())).append(CSV_COLUMN_SEPARATOR); buf.append(info.getPolicyTrackingStatus() == null ? "/" : handlePolicyTrackingStatus(info.getPolicyTrackingStatus())).append(CSV_COLUMN_SEPARATOR);
MdDropOptions dropOption = systemConfigService.getDropOption("policy_input_source", info.getPolicyInputSource()); MdDropOptions dropOption = systemConfigService.getDropOption("policy_input_source", info.getPolicyInputSource());
buf.append(dropOption == null ? "/" : dropOption.getDropOptionName()).append(CSV_COLUMN_SEPARATOR); buf.append(dropOption == null ? "/" : dropOption.getDropOptionName()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getRemark()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getRemark() == null ? "" : info.getRemark()).append(CSV_COLUMN_SEPARATOR);
buf.append(CSV_ROW_SEPARATOR); buf.append(CSV_ROW_SEPARATOR);
......
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