|
@@ -49,7 +49,7 @@ public class DmHaveDinnerServiceImpl implements DmHaveDinnerService {
|
|
|
}
|
|
|
|
|
|
// 前三
|
|
|
- Page<List<Map<String, Object>>> top = null;
|
|
|
+ Page<Map<String, Object>> top = null;
|
|
|
// 默认按月来
|
|
|
if (type == null){
|
|
|
type = "month";
|
|
@@ -132,7 +132,7 @@ public class DmHaveDinnerServiceImpl implements DmHaveDinnerService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public JSONObject selectDiningsStopStatements(String stateDate, String endDate, String type, Pageable pageable) {
|
|
|
+ public JSONObject selectDiningStopStatements(String stateDate, String endDate, String type, Pageable pageable) {
|
|
|
|
|
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
|
|
@@ -146,7 +146,7 @@ public class DmHaveDinnerServiceImpl implements DmHaveDinnerService {
|
|
|
flag = true;
|
|
|
}
|
|
|
// 后三
|
|
|
- Page<List<Map<String, Object>>> stop = null;
|
|
|
+ Page<Map<String, Object>> stop = null;
|
|
|
// 默认按月来
|
|
|
if (type == null){
|
|
|
type = "month";
|
|
@@ -387,5 +387,216 @@ public class DmHaveDinnerServiceImpl implements DmHaveDinnerService {
|
|
|
FileUtil.downloadExcel(list, response);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void downDiningTopStatements(String stateDate, String endDate, String type, Pageable pageable, HttpServletResponse response) throws IOException {
|
|
|
+
|
|
|
+ List<Map<String, Object>> list = new ArrayList<>();
|
|
|
+
|
|
|
+ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+
|
|
|
+ SimpleDateFormat month = new SimpleDateFormat("yyyy-MM");
|
|
|
+
|
|
|
+ SimpleDateFormat year = new SimpleDateFormat("yyyy");
|
|
|
+
|
|
|
+ Boolean flag = false;
|
|
|
+
|
|
|
+ if (!StringUtils.isEmpty(stateDate) || !StringUtils.isEmpty(endDate)){
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 前三
|
|
|
+ Page<Map<String, Object>> top = null;
|
|
|
+ // 默认按月来
|
|
|
+ if (type == null){
|
|
|
+ type = "month";
|
|
|
+ }
|
|
|
+ //按日报来
|
|
|
+ if (type.equals("day")){
|
|
|
+ Calendar instance = Calendar.getInstance();
|
|
|
+ //当前时间
|
|
|
+ String nowTime = simpleDateFormat.format(instance.getTime()) + " 23:59:59";
|
|
|
+ String StartTime = simpleDateFormat.format(instance.getTime()) + " 00:00:00";
|
|
|
+ if (flag){
|
|
|
+ top = dmHaveDinnerRepository.selectTop(stateDate,endDate,null);
|
|
|
+ }else {
|
|
|
+ top = dmHaveDinnerRepository.selectTop(StartTime,nowTime,null);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ // 按周报来
|
|
|
+ if (type.equals("week")){
|
|
|
+ Calendar instance = Calendar.getInstance();
|
|
|
+ //判断当前时间在当前星期中事星期几 由于日历类中星期一是从周日算的
|
|
|
+ int i = instance.get(Calendar.DAY_OF_WEEK)-1;
|
|
|
+
|
|
|
+ //当前时间
|
|
|
+ String nowTime = "";
|
|
|
+ //开始时间
|
|
|
+ String startTime = "";
|
|
|
+
|
|
|
+ if (i==0){
|
|
|
+ instance.add(Calendar.DATE, 1-i);
|
|
|
+ startTime = simpleDateFormat.format(instance.getTime()) + " 00:00:00";
|
|
|
+ instance.add(Calendar.DATE, 7-1);
|
|
|
+ nowTime = simpleDateFormat.format(instance.getTime()) + " 23:59:59";
|
|
|
+ }else {
|
|
|
+ instance.add(Calendar.DATE,1-i);
|
|
|
+ startTime = simpleDateFormat.format(instance.getTime()) + " 00:00:00";
|
|
|
+ instance.add(Calendar.DATE, 7-1);
|
|
|
+ nowTime = simpleDateFormat.format(instance.getTime()) + " 23:59:59";
|
|
|
+ }
|
|
|
+ if (flag){
|
|
|
+ top = dmHaveDinnerRepository.selectTop(stateDate,endDate,null);
|
|
|
+ }else {
|
|
|
+ top = dmHaveDinnerRepository.selectTop(startTime,nowTime,null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 按月报来
|
|
|
+ if (type.equals("month")){
|
|
|
+
|
|
|
+ Calendar instance = Calendar.getInstance();
|
|
|
+ // 当前月份最大多少天
|
|
|
+ int actualMaximum = instance.getActualMaximum(Calendar.DATE);
|
|
|
+ //当前时间
|
|
|
+ String nowTime = month.format(instance.getTime()) + "-"+actualMaximum+" 23:59:59";
|
|
|
+ String startTime = month.format(instance.getTime()) + "-01 00:00:00";
|
|
|
+ if (flag){
|
|
|
+ top = dmHaveDinnerRepository.selectTop(stateDate,endDate,null);
|
|
|
+ }else {
|
|
|
+ top = dmHaveDinnerRepository.selectTop(startTime,nowTime,null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 按年报来
|
|
|
+ if (type.equals("year")){
|
|
|
+ Calendar instance = Calendar.getInstance();
|
|
|
+ //设置到12月用来取最大天数
|
|
|
+ instance.set(Calendar.MONTH, 11);
|
|
|
+ // 当年最大月份最大多少天
|
|
|
+ int actualMaximum = instance.getActualMaximum(Calendar.DATE);
|
|
|
+ //当前时间
|
|
|
+ String nowTime = year.format(instance.getTime())+ "-12-"+actualMaximum+" 23:59:59";
|
|
|
+ String startTime = year.format( instance.getTime())+ "-01-01 00:00:00";
|
|
|
+ if (flag){
|
|
|
+ top = dmHaveDinnerRepository.selectTop(stateDate,endDate,null);
|
|
|
+ }else {
|
|
|
+ top = dmHaveDinnerRepository.selectTop(startTime,nowTime,null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ List<Map<String, Object>> content = top.getContent();
|
|
|
+ content.forEach(item->{
|
|
|
+ Map<String,Object> map = new LinkedHashMap<>();
|
|
|
+ map.put("菜品受欢迎前三-菜品名称", item.get("name"));
|
|
|
+ map.put("菜品受欢迎前三-购买次数", item.get("countPid"));
|
|
|
+ map.put("菜品受欢迎前三-总消费", item.get("price"));
|
|
|
+ list.add(map);
|
|
|
+ });
|
|
|
+ FileUtil.downloadExcel(list, response);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void downDiningStopStatements(String stateDate, String endDate, String type, Pageable pageable,HttpServletResponse response) throws IOException {
|
|
|
+
|
|
|
+ List<Map<String, Object>> list = new ArrayList<>();
|
|
|
+
|
|
|
+ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+
|
|
|
+ SimpleDateFormat month = new SimpleDateFormat("yyyy-MM");
|
|
|
+
|
|
|
+ SimpleDateFormat year = new SimpleDateFormat("yyyy");
|
|
|
+
|
|
|
+ Boolean flag = false;
|
|
|
+
|
|
|
+ if (!StringUtils.isEmpty(stateDate) || !StringUtils.isEmpty(endDate)){
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
+ // 后三
|
|
|
+ Page<Map<String, Object>> stop = null;
|
|
|
+ // 默认按月来
|
|
|
+ if (type == null){
|
|
|
+ type = "month";
|
|
|
+ }
|
|
|
+ //按日报来
|
|
|
+ if (type.equals("day")){
|
|
|
+ Calendar instance = Calendar.getInstance();
|
|
|
+ //当前时间
|
|
|
+ String nowTime = simpleDateFormat.format(instance.getTime()) + " 23:59:59";
|
|
|
+ String StartTime = simpleDateFormat.format(instance.getTime()) + " 00:00:00";
|
|
|
+ if (flag){
|
|
|
+ stop = dmHaveDinnerRepository.selectStop(stateDate, endDate,null);
|
|
|
+ }else {
|
|
|
+ stop = dmHaveDinnerRepository.selectStop(StartTime, nowTime,null);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ // 按周报来
|
|
|
+ if (type.equals("week")){
|
|
|
+ Calendar instance = Calendar.getInstance();
|
|
|
+ //判断当前时间在当前星期中事星期几 由于日历类中星期一是从周日算的
|
|
|
+ int i = instance.get(Calendar.DAY_OF_WEEK)-1;
|
|
|
+
|
|
|
+ //当前时间
|
|
|
+ String nowTime = "";
|
|
|
+ //开始时间
|
|
|
+ String startTime = "";
|
|
|
+
|
|
|
+ if (i==0){
|
|
|
+ instance.add(Calendar.DATE, 1-i);
|
|
|
+ startTime = simpleDateFormat.format(instance.getTime()) + " 00:00:00";
|
|
|
+ instance.add(Calendar.DATE, 7-1);
|
|
|
+ nowTime = simpleDateFormat.format(instance.getTime()) + " 23:59:59";
|
|
|
+ }else {
|
|
|
+ instance.add(Calendar.DATE,1-i);
|
|
|
+ startTime = simpleDateFormat.format(instance.getTime()) + " 00:00:00";
|
|
|
+ instance.add(Calendar.DATE, 7-1);
|
|
|
+ nowTime = simpleDateFormat.format(instance.getTime()) + " 23:59:59";
|
|
|
+ }
|
|
|
+ if (flag){
|
|
|
+ stop = dmHaveDinnerRepository.selectStop(stateDate, endDate,null);
|
|
|
+ }else {
|
|
|
+ stop = dmHaveDinnerRepository.selectStop(startTime, nowTime,null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 按月报来
|
|
|
+ if (type.equals("month")){
|
|
|
+
|
|
|
+ Calendar instance = Calendar.getInstance();
|
|
|
+ // 当前月份最大多少天
|
|
|
+ int actualMaximum = instance.getActualMaximum(Calendar.DATE);
|
|
|
+ //当前时间
|
|
|
+ String nowTime = month.format(instance.getTime()) + "-"+actualMaximum+" 23:59:59";
|
|
|
+ String startTime = month.format(instance.getTime()) + "-01 00:00:00";
|
|
|
+ if (flag){
|
|
|
+ stop = dmHaveDinnerRepository.selectStop(stateDate, endDate,null);
|
|
|
+ }else {
|
|
|
+ stop = dmHaveDinnerRepository.selectStop(startTime, nowTime,null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 按年报来
|
|
|
+ if (type.equals("year")){
|
|
|
+ Calendar instance = Calendar.getInstance();
|
|
|
+ //设置到12月用来取最大天数
|
|
|
+ instance.set(Calendar.MONTH, 11);
|
|
|
+ // 当年最大月份最大多少天
|
|
|
+ int actualMaximum = instance.getActualMaximum(Calendar.DATE);
|
|
|
+ //当前时间
|
|
|
+ String nowTime = year.format(instance.getTime())+ "-12-"+actualMaximum+" 23:59:59";
|
|
|
+ String startTime = year.format( instance.getTime())+ "-01-01 00:00:00";
|
|
|
+ if (flag){
|
|
|
+ stop = dmHaveDinnerRepository.selectStop(stateDate, endDate,null);
|
|
|
+ }else {
|
|
|
+ stop = dmHaveDinnerRepository.selectStop(startTime, nowTime,null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ List<Map<String, Object>> content = stop.getContent();
|
|
|
+ content.forEach(item->{
|
|
|
+ Map<String,Object> map = new LinkedHashMap<>();
|
|
|
+ map.put("菜品不受欢迎前三-菜品名称", item.get("name"));
|
|
|
+ map.put("菜品不受欢迎前三-购买次数", item.get("countPid"));
|
|
|
+ map.put("菜品不受欢迎前三-总消费", item.get("price"));
|
|
|
+ list.add(map);
|
|
|
+ });
|
|
|
+ FileUtil.downloadExcel(list, response);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|