|
|
|
@ -120,12 +120,12 @@ public class HighGasController { |
|
|
|
|
|
|
|
|
|
Map<String, Object> history = new HashMap<>(); |
|
|
|
|
// 历史加油总金额
|
|
|
|
|
Map<String, Object> historyTotal = highOrderService.getGasStaffHistoryOrderCount(userInfoModel.getGasStaff().getId(), "2,3,4,6,7"); |
|
|
|
|
Map<String, Object> historyTotal = highOrderService.getGasStaffHistoryOrderCount(userInfoModel.getGasStaff().getId(), "2,4,5,6"); |
|
|
|
|
history.put("totalPrice", historyTotal.get("price")); |
|
|
|
|
history.put("totalCount", historyTotal.get("count")); |
|
|
|
|
|
|
|
|
|
// 历史加油金额
|
|
|
|
|
Map<String, Object> historyIncomet = highOrderService.getGasStaffHistoryOrderCount(userInfoModel.getGasStaff().getId(), "2,3,6,7"); |
|
|
|
|
Map<String, Object> historyIncomet = highOrderService.getGasStaffHistoryOrderCount(userInfoModel.getGasStaff().getId(), "2,5,6"); |
|
|
|
|
history.put("incomePrice", historyIncomet.get("price")); |
|
|
|
|
history.put("incomeCount", historyIncomet.get("count")); |
|
|
|
|
|
|
|
|
@ -138,12 +138,12 @@ public class HighGasController { |
|
|
|
|
|
|
|
|
|
Map<String, Object> today = new HashMap<>(); |
|
|
|
|
// 今日加油总金额
|
|
|
|
|
Map<String, Object> todayTotal = highOrderService.getGasStaffTheDayOrderCount(userInfoModel.getGasStaff().getId(), "2,3,4,6,7"); |
|
|
|
|
Map<String, Object> todayTotal = highOrderService.getGasStaffTheDayOrderCount(userInfoModel.getGasStaff().getId(), "2,4,5,6"); |
|
|
|
|
today.put("totalPrice", todayTotal.get("price")); |
|
|
|
|
today.put("totalCount", todayTotal.get("count")); |
|
|
|
|
|
|
|
|
|
// 今日加油金额
|
|
|
|
|
Map<String, Object> todayIncomet = highOrderService.getGasStaffTheDayOrderCount(userInfoModel.getGasStaff().getId(), "2,3,6,7"); |
|
|
|
|
Map<String, Object> todayIncomet = highOrderService.getGasStaffTheDayOrderCount(userInfoModel.getGasStaff().getId(), "2,5,6"); |
|
|
|
|
today.put("incomePrice", todayIncomet.get("price")); |
|
|
|
|
today.put("incomeCount", todayIncomet.get("count")); |
|
|
|
|
|
|
|
|
@ -156,12 +156,12 @@ public class HighGasController { |
|
|
|
|
} else { |
|
|
|
|
Map<String, Object> history = new HashMap<>(); |
|
|
|
|
// 历史加油总金额
|
|
|
|
|
Map<String, Object> historyTotal = highOrderService.getGasHistoryOrderCount(userInfoModel.getMerchantStore().getId(), "2,3,4,6,7"); |
|
|
|
|
Map<String, Object> historyTotal = highOrderService.getGasHistoryOrderCount(userInfoModel.getMerchantStore().getId(), "2,4,5,6"); |
|
|
|
|
history.put("totalPrice", historyTotal.get("price")); |
|
|
|
|
history.put("totalCount", historyTotal.get("count")); |
|
|
|
|
|
|
|
|
|
// 历史加油金额
|
|
|
|
|
Map<String, Object> historyIncomet = highOrderService.getGasHistoryOrderCount(userInfoModel.getMerchantStore().getId(), "2,3,6,7"); |
|
|
|
|
Map<String, Object> historyIncomet = highOrderService.getGasHistoryOrderCount(userInfoModel.getMerchantStore().getId(), "2,5,6"); |
|
|
|
|
history.put("incomePrice", historyIncomet.get("price")); |
|
|
|
|
history.put("incomeCount", historyIncomet.get("count")); |
|
|
|
|
|
|
|
|
@ -174,12 +174,12 @@ public class HighGasController { |
|
|
|
|
|
|
|
|
|
Map<String, Object> today = new HashMap<>(); |
|
|
|
|
// 今日加油总金额
|
|
|
|
|
Map<String, Object> todayTotal = highOrderService.getGasTheDayOrderCount(userInfoModel.getMerchantStore().getId(), "2,3,4,6,7"); |
|
|
|
|
Map<String, Object> todayTotal = highOrderService.getGasTheDayOrderCount(userInfoModel.getMerchantStore().getId(), "2,4,5,6"); |
|
|
|
|
today.put("totalPrice", todayTotal.get("price")); |
|
|
|
|
today.put("totalCount", todayTotal.get("count")); |
|
|
|
|
|
|
|
|
|
// 今日加油金额
|
|
|
|
|
Map<String, Object> todayIncomet = highOrderService.getGasTheDayOrderCount(userInfoModel.getMerchantStore().getId(), "2,3,6,7"); |
|
|
|
|
Map<String, Object> todayIncomet = highOrderService.getGasTheDayOrderCount(userInfoModel.getMerchantStore().getId(), "2,5,6"); |
|
|
|
|
today.put("incomePrice", todayIncomet.get("price")); |
|
|
|
|
today.put("incomeCount", todayIncomet.get("count")); |
|
|
|
|
|
|
|
|
|