Commit e31681d2 by jianan

csv导出问题6

parent 02d0e1c0
...@@ -293,8 +293,8 @@ public class LifeCommissionServiceImpl implements LifeCommissionService { ...@@ -293,8 +293,8 @@ public class LifeCommissionServiceImpl implements LifeCommissionService {
} }
buf.append("\t").append(info.getOrderDate()).append("\t").append(CSV_COLUMN_SEPARATOR); buf.append("\t").append(info.getOrderDate()).append("\t").append(CSV_COLUMN_SEPARATOR);
buf.append(info.getPlanName()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getPlanName()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getCategoryName()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getPlanCategoryName()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getPlanCategoryName()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getCategoryName()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getPayTerm() == null ? "/" : info.getPayTerm()).append(CSV_COLUMN_SEPARATOR); buf.append(info.getPayTerm() == null ? "/" : info.getPayTerm()).append(CSV_COLUMN_SEPARATOR);
buf.append(info.getCoverageTerm() == null ? "/" : info.getCoverageTerm().substring(1)).append(CSV_COLUMN_SEPARATOR); buf.append(info.getCoverageTerm() == null ? "/" : info.getCoverageTerm().substring(1)).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