|
|
@ -305,7 +305,7 @@ public class RecordService implements IRecordService{ |
|
|
|
case Constant.THROMBOLYTIC: type = "剂量";break; |
|
|
|
} |
|
|
|
row.add(new PoiUtil.PoiUtilCell(type)); |
|
|
|
row.add(new PoiUtil.PoiUtilCell(record.getType() == Constant.CAR_RECORD_WEIGHT ? new BigDecimal(record.getValue()).divide(new BigDecimal(1000), 3).toString() + "Kg" : record.getName())); |
|
|
|
row.add(new PoiUtil.PoiUtilCell(record.getType() == Constant.CAR_RECORD_WEIGHT ? new BigDecimal(record.getValue()).divide(new BigDecimal(1000), 3).toString() + "Kg" : record.getType() == Constant.CAR_RECORD_RFID ? record.getName() : record.getValue())); |
|
|
|
rows.add(row); |
|
|
|
} |
|
|
|
log.info("数据:{}", list.size()); |
|
|
|