|
@@ -52,18 +52,18 @@ public interface DmHaveDinnerRepository extends JpaRepository<DmHaveDinner,Integ
|
|
|
// @Transactional
|
|
|
@Modifying
|
|
|
@Query(value = "CREATE VIEW zgmonth as " +
|
|
|
- "SELECT i.name as zg_name,SUM(i.num) as zg_num,DATE_FORMAT(order_time,'%Y-%m') time FROM `dm_order_item` i " +
|
|
|
+ "SELECT i.name as zg_name,SUM(i.num) as zg_num,DATE_FORMAT(create_date,'%Y-%m') time FROM `dm_order_item` i " +
|
|
|
"LEFT JOIN `dm_order_record` r ON i.bh = r.bh " +
|
|
|
- "WHERE if(:stateDate != '' and :endDate !='',order_time between :stateDate and :endDate,1=1) " +
|
|
|
+ "WHERE if(:stateDate != '' and :endDate !='',create_date between :stateDate and :endDate,1=1) " +
|
|
|
"GROUP BY time,`zg_name` " +
|
|
|
"ORDER BY time DESC,SUM(num) DESC ",nativeQuery = true)
|
|
|
void addZgMonth(String stateDate,String endDate);
|
|
|
// @Transactional
|
|
|
@Modifying
|
|
|
@Query(value = "CREATE VIEW zdmonth as " +
|
|
|
- "SELECT i.name as zd_name,SUM(i.num) as zd_num,SUM(i.money) as money,DATE_FORMAT(order_time,'%Y-%m') time FROM `dm_order_item` i " +
|
|
|
+ "SELECT i.name as zd_name,SUM(i.num) as zd_num,SUM(i.money) as money,DATE_FORMAT(create_date,'%Y-%m') time FROM `dm_order_item` i " +
|
|
|
"LEFT JOIN `dm_order_record` r ON i.bh = r.bh " +
|
|
|
- "WHERE if(:stateDate != '' and :endDate !='',order_time between :stateDate and :endDate,1=1) " +
|
|
|
+ "WHERE if(:stateDate != '' and :endDate !='',create_date between :stateDate and :endDate,1=1) " +
|
|
|
"GROUP BY time,`zd_name` " +
|
|
|
"ORDER BY time DESC,SUM(num) ASC ",nativeQuery = true)
|
|
|
void addZdMonth(String stateDate,String endDate);
|
|
@@ -71,18 +71,18 @@ public interface DmHaveDinnerRepository extends JpaRepository<DmHaveDinner,Integ
|
|
|
// @Transactional
|
|
|
@Modifying
|
|
|
@Query(value = "CREATE VIEW zgyear as " +
|
|
|
- "SELECT i.name as zg_name,SUM(i.num) as zg_num,DATE_FORMAT(order_time,'%Y') time FROM `dm_order_item` i " +
|
|
|
+ "SELECT i.name as zg_name,SUM(i.num) as zg_num,DATE_FORMAT(create_date,'%Y') time FROM `dm_order_item` i " +
|
|
|
"LEFT JOIN `dm_order_record` r ON i.bh = r.bh " +
|
|
|
- "WHERE if(:stateDate != '' and :endDate !='',order_time between :stateDate and :endDate,1=1) " +
|
|
|
+ "WHERE if(:stateDate != '' and :endDate !='',create_date between :stateDate and :endDate,1=1) " +
|
|
|
"GROUP BY time,`zg_name` " +
|
|
|
"ORDER BY time DESC,SUM(num) DESC ",nativeQuery = true)
|
|
|
void addZgYear(String stateDate,String endDate);
|
|
|
// @Transactional
|
|
|
@Modifying
|
|
|
@Query(value = "CREATE VIEW zdyear as " +
|
|
|
- "SELECT i.name as zd_name,SUM(i.num) as zd_num,SUM(i.money) as money,DATE_FORMAT(order_time,'%Y') time FROM `dm_order_item` i " +
|
|
|
+ "SELECT i.name as zd_name,SUM(i.num) as zd_num,SUM(i.money) as money,DATE_FORMAT(create_date,'%Y') time FROM `dm_order_item` i " +
|
|
|
"LEFT JOIN `dm_order_record` r ON i.bh = r.bh " +
|
|
|
- "WHERE if(:stateDate != '' and :endDate !='',order_time between :stateDate and :endDate,1=1) " +
|
|
|
+ "WHERE if(:stateDate != '' and :endDate !='',create_date between :stateDate and :endDate,1=1) " +
|
|
|
"GROUP BY time,`zd_name` " +
|
|
|
"ORDER BY time DESC,SUM(num) ASC ",nativeQuery = true)
|
|
|
void addZdYear(String stateDate,String endDate);
|
|
@@ -90,38 +90,38 @@ public interface DmHaveDinnerRepository extends JpaRepository<DmHaveDinner,Integ
|
|
|
// @Transactional
|
|
|
@Modifying
|
|
|
@Query(value = "CREATE VIEW zgday as " +
|
|
|
- "SELECT i.name as zg_name,SUM(i.num) as zg_num,DATE_FORMAT(order_time,'%Y-%m-%d') time FROM `dm_order_item` i " +
|
|
|
+ "SELECT i.name as zg_name,SUM(i.num) as zg_num,DATE_FORMAT(create_date,'%Y-%m-%d') time FROM `dm_order_item` i " +
|
|
|
"LEFT JOIN `dm_order_record` r ON i.bh = r.bh " +
|
|
|
- "WHERE if(:stateDate != '' and :endDate !='',order_time between :stateDate and :endDate,1=1) " +
|
|
|
+ "WHERE if(:stateDate != '' and :endDate !='',create_date between :stateDate and :endDate,1=1) " +
|
|
|
"GROUP BY time,`zg_name` " +
|
|
|
"ORDER BY time DESC,SUM(num) DESC ",nativeQuery = true)
|
|
|
void addZgDay(String stateDate,String endDate);
|
|
|
// @Transactional
|
|
|
@Modifying
|
|
|
@Query(value = "CREATE VIEW zdday as " +
|
|
|
- "SELECT i.name as zd_name,SUM(i.num) as zd_num,SUM(i.money) as money,DATE_FORMAT(order_time,'%Y-%m-%d') time FROM `dm_order_item` i " +
|
|
|
+ "SELECT i.name as zd_name,SUM(i.num) as zd_num,SUM(i.money) as money,DATE_FORMAT(create_date,'%Y-%m-%d') time FROM `dm_order_item` i " +
|
|
|
"LEFT JOIN `dm_order_record` r ON i.bh = r.bh " +
|
|
|
- "WHERE if(:stateDate != '' and :endDate !='',order_time between :stateDate and :endDate,1=1) " +
|
|
|
+ "WHERE if(:stateDate != '' and :endDate !='',create_date between :stateDate and :endDate,1=1) " +
|
|
|
"GROUP BY time,`zd_name` " +
|
|
|
"ORDER BY time DESC,SUM(num) ASC ",nativeQuery = true)
|
|
|
void addZdDay(String stateDate,String endDate);
|
|
|
|
|
|
@Modifying
|
|
|
@Query(value = "CREATE VIEW zgweek as " +
|
|
|
- "SELECT i.name as zg_name,SUM(i.num) as zg_num,DATE_FORMAT(order_time,'%Y-%u') week_time FROM `dm_order_item` i " +
|
|
|
+ "SELECT i.name as zg_name,SUM(i.num) as zg_num,DATE_FORMAT(create_date,'%Y-%u') week_time FROM `dm_order_item` i " +
|
|
|
"LEFT JOIN `dm_order_record` r ON i.bh = r.bh " +
|
|
|
- "WHERE if(:stateDate != '' and :endDate !='',order_time between :stateDate and :endDate,1=1) " +
|
|
|
- "GROUP BY DATE_FORMAT(order_time,'%u'),`zg_name` " +
|
|
|
- "ORDER BY DATE_FORMAT(order_time,'%u') DESC,SUM(num) DESC ",nativeQuery = true)
|
|
|
+ "WHERE if(:stateDate != '' and :endDate !='',create_date between :stateDate and :endDate,1=1) " +
|
|
|
+ "GROUP BY DATE_FORMAT(create_date,'%u'),`zg_name` " +
|
|
|
+ "ORDER BY DATE_FORMAT(create_date,'%u') DESC,SUM(num) DESC ",nativeQuery = true)
|
|
|
void addZgWeek(String stateDate,String endDate);
|
|
|
// @Transactional
|
|
|
@Modifying
|
|
|
@Query(value = "CREATE VIEW zdweek as " +
|
|
|
- "SELECT i.name as zd_name,SUM(i.num) as zd_num,SUM(i.money) as money,DATE_FORMAT(order_time,'%Y-%u') week_time FROM `dm_order_item` i " +
|
|
|
+ "SELECT i.name as zd_name,SUM(i.num) as zd_num,SUM(i.money) as money,DATE_FORMAT(create_date,'%Y-%u') week_time FROM `dm_order_item` i " +
|
|
|
"LEFT JOIN `dm_order_record` r ON i.bh = r.bh " +
|
|
|
- "WHERE if(:stateDate != '' and :endDate !='',order_time between :stateDate and :endDate,1=1) " +
|
|
|
- "GROUP BY DATE_FORMAT(order_time,'%u'),`zd_name` " +
|
|
|
- "ORDER BY DATE_FORMAT(order_time,'%u') DESC,SUM(num) ASC ",nativeQuery = true)
|
|
|
+ "WHERE if(:stateDate != '' and :endDate !='',create_date between :stateDate and :endDate,1=1) " +
|
|
|
+ "GROUP BY DATE_FORMAT(create_date,'%u'),`zd_name` " +
|
|
|
+ "ORDER BY DATE_FORMAT(create_date,'%u') DESC,SUM(num) ASC ",nativeQuery = true)
|
|
|
void addZdWeek(String stateDate,String endDate);
|
|
|
|
|
|
/**
|