Commit 413b9d05 by yao.xiao

解决导出保单号科学计数法

parent 0acd041d
...@@ -851,7 +851,7 @@ public class AgmsFortuneServiceImpl implements AgmsFortuneService { ...@@ -851,7 +851,7 @@ public class AgmsFortuneServiceImpl implements AgmsFortuneService {
buf.append(info.getPayoutYearmonth()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getPayoutYearmonth()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getPractitionerName()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getPractitionerName()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getCommissionAmount()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getCommissionAmount()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getPolicyNo()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getPolicyNo()).append(" ").append(CSV_COLUMN_SEPARATOR);
buf.append(info.getOrderPrice()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getOrderPrice()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getCommissionRate()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getCommissionRate()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getCommissionPayoutStatus()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getCommissionPayoutStatus()).append(CSV_COLUMN_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