Browse Source

/。订单详情

release_toaliyun_real
xhxu 4 years ago
parent
commit
374e70ac5b
2 changed files with 4 additions and 6 deletions
  1. +3
    -5
      mallinkService/src/main/java/com/iformall/service/impl/DataTowerServiceImpl.java
  2. +1
    -1
      mallinkService/src/main/resources/mapper/WxCouponOrderMapper.xml

+ 3
- 5
mallinkService/src/main/java/com/iformall/service/impl/DataTowerServiceImpl.java View File

@@ -410,16 +410,14 @@ public class DataTowerServiceImpl implements DataTowerService {

HashMap<String, Object> dataMap = new HashMap<>();
dataMap.put("shop", shopRunning(tenantEntity));
dataMap.put("rent", rentRunning(tenantEntity));
dataMap.put("report", reportRunning(tenantEntity));
//TODO 待优化数据
// dataMap.put("rent", rentRunning(tenantEntity));
// dataMap.put("report", reportRunning(tenantEntity));
dataMap.put("car", carRunning(tenantEntity));
dataMap.put("car", null);
dataMap.put("coupon", couponRunning(tenantEntity));
dataMap.put("visitor", visitorRunning(tenantEntity));
dataMap.put("contract", contractRunning(tenantEntity));
dataMap.put("message", messageRunning(tenantEntity));
dataMap.put("bill", billRunning(tenantEntity));
// dataMap.put("bill", billRunning(tenantEntity));
return dataMap;
}



+ 1
- 1
mallinkService/src/main/resources/mapper/WxCouponOrderMapper.xml View File

@@ -667,7 +667,7 @@
group by co.coupon_id
</select>

<select id="queryPriceTotalGroup" resultType="com.iformall.domain.vo.CUserDateAmountVo" >
<select id="queryPriceTotalGroup" resultType="com.iformall.domain.vo.CUserDateAmountVo" >
SELECT DATE_FORMAT(create_date,'%Y-%m-%d') as xTime,IFNULL(SUM(coupon_price),0) as price
from wx_coupon_order
where create_date_times &gt;= unix_timestamp(#{startTime}) and create_date_times &lt; unix_timestamp(#{endTime})


Loading…
Cancel
Save