|
|
@@ -581,7 +581,7 @@
|
|
|
FROM
|
|
|
ins_area_company iac
|
|
|
WHERE
|
|
|
- orderstatus = 3 and
|
|
|
+ iac.orderstatus = 3 and
|
|
|
iac.createtime >= #{beginTime} and iac.createtime <= #{endTime}
|
|
|
GROUP BY CONCAT(YEAR(iac.createtime),'-',LPAD(MONTH(iac.createtime), 2, '0'))
|
|
|
</select>
|
|
|
@@ -595,7 +595,7 @@
|
|
|
FROM
|
|
|
ins_area_company iac
|
|
|
WHERE
|
|
|
- orderstatus = 3 and
|
|
|
+ iac.orderstatus = 3 and
|
|
|
iac.createtime >= #{beginTime} and iac.createtime <= #{endTime}
|
|
|
GROUP BY CONCAT(YEAR(iac.createtime),'-',LPAD(MONTH(iac.createtime), 2, '0'),'-',LPAD(Day(iac.createtime), 2, '0'))
|
|
|
</select>
|
|
|
@@ -610,7 +610,7 @@
|
|
|
FROM
|
|
|
ins_area_company iac
|
|
|
WHERE
|
|
|
- orderstatus = 3 and
|
|
|
+ iac.orderstatus = 3 and
|
|
|
iac.createtime >= #{beginTime} and iac.createtime <= #{endTime}
|
|
|
GROUP BY CONCAT(YEAR ( iac.createtime ),'-',LPAD( MONTH ( iac.createtime ), 2, '0' ),'-',LPAD( DAY ( iac.createtime ), 2, '0' ),' ',LPAD( HOUR ( iac.createtime ), 2, '0' ))
|
|
|
</select>
|