Commit 7e0b1374 authored by libin's avatar libin

Merge branch 'order_received_statistics' into dev

parents ec6e4cef 9d57dcd7
......@@ -44,6 +44,8 @@ public class CompanyPerformanceBiz {
* @param outputStream
*/
public void exportOrderReceivedStatisticsData(CompanyPerformanceFindDTO companyPerformanceFindDTO, ServletOutputStream outputStream) throws IOException {
companyPerformanceFindDTO.setPage(null);
companyPerformanceFindDTO.setLimit(null);
//1.查询数据
List<CompanyPerformanceBo> companyPerformanceBos = selectCompanyPerformances(companyPerformanceFindDTO);
......
......@@ -103,7 +103,9 @@
`company_id` ,
`year`,
`date`
limit #{startIndex},#{endInex}
<if test="page!=null and limit!=null">
limit #{startIndex},#{endInex}
</if>
) AS `ors`
LEFT JOIN (
SELECT
......@@ -186,7 +188,9 @@
company_id,
`year`,
`month`
limit #{startIndex},#{endInex}
<if test="page!=null and limit!=null">
limit #{startIndex},#{endInex}
</if>
) AS `ors`
LEFT JOIN (
SELECT
......@@ -268,7 +272,9 @@
company_id,
`year`,
`week_of_year`
limit #{startIndex},#{endInex}
<if test="page!=null and limit!=null">
limit #{startIndex},#{endInex}
</if>
) AS `ors`
LEFT JOIN (
SELECT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment