|
|
@ -853,7 +853,7 @@ public class TradeLogServiceImpl implements TradeLogService {
|
|
|
|
row.createCell(17, Cell.CELL_TYPE_STRING).setCellValue(data.getString("trans_type"));
|
|
|
|
row.createCell(17, Cell.CELL_TYPE_STRING).setCellValue(data.getString("trans_type"));
|
|
|
|
row.createCell(18, Cell.CELL_TYPE_STRING).setCellValue(data.getString("clear_status"));
|
|
|
|
row.createCell(18, Cell.CELL_TYPE_STRING).setCellValue(data.getString("clear_status"));
|
|
|
|
row.createCell(19, Cell.CELL_TYPE_STRING).setCellValue(data.getString("gateway"));
|
|
|
|
row.createCell(19, Cell.CELL_TYPE_STRING).setCellValue(data.getString("gateway"));
|
|
|
|
row.createCell(20, Cell.CELL_TYPE_STRING).setCellValue(data.getString("order_detail"));
|
|
|
|
row.createCell(20, Cell.CELL_TYPE_STRING).setCellValue(data.containsKey("order_detail")&&!"".equals(data.getString("order_detail"))?data.getString("order_detail"):data.getString("remark"));
|
|
|
|
row.createCell(21, Cell.CELL_TYPE_STRING).setCellValue(data.getString("dev_id"));
|
|
|
|
row.createCell(21, Cell.CELL_TYPE_STRING).setCellValue(data.getString("dev_id"));
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -958,7 +958,7 @@ public class TradeLogServiceImpl implements TradeLogService {
|
|
|
|
String credit = dataItem.getString("transaction_type").equals("Credit") ? dataItem.getBigDecimal("clearing_amount").toString()
|
|
|
|
String credit = dataItem.getString("transaction_type").equals("Credit") ? dataItem.getBigDecimal("clearing_amount").toString()
|
|
|
|
: "-";
|
|
|
|
: "-";
|
|
|
|
HSSFRichTextString text3 = new HSSFRichTextString(credit);
|
|
|
|
HSSFRichTextString text3 = new HSSFRichTextString(credit);
|
|
|
|
HSSFRichTextString text4 = new HSSFRichTextString(dataItem.getString("order_detail"));
|
|
|
|
HSSFRichTextString text4 = new HSSFRichTextString(dataItem.containsKey("order_detail")?dataItem.getString("order_detail"):dataItem.getString("remark"));
|
|
|
|
cell0.setCellValue(text0);
|
|
|
|
cell0.setCellValue(text0);
|
|
|
|
cell1.setCellValue(text1);
|
|
|
|
cell1.setCellValue(text1);
|
|
|
|
cell2.setCellValue(text2);
|
|
|
|
cell2.setCellValue(text2);
|
|
|
|