|
@@ -55,14 +55,11 @@ public class StatisticalReportImpl implements IStatisticalReportService {
|
|
|
**/
|
|
|
public List<Map<String, Object>> getRLFLReport(Map<String, Object> map){
|
|
|
List<Map<String, Object>> mapList = null;
|
|
|
- if(DataChange.dataToBigDecimal(map.get("orderType")).intValue() == 5){
|
|
|
+ if(DataChange.dataToBigDecimal(map.get("orderTypee")).intValue() == 5){
|
|
|
mapList = statisticalReportMapper.getFuPurchaseFLRLReport(map);
|
|
|
}else {
|
|
|
mapList = statisticalReportMapper.getAllPurchaseFLRLReport(map);
|
|
|
}
|
|
|
- for (Map<String, Object> mesMap : mapList) {
|
|
|
- calculateDifferenceTime(mesMap);
|
|
|
- }
|
|
|
return mapList;
|
|
|
}
|
|
|
|