From b800d0831438a2d354910a16325c1db6f2fb1231 Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期一, 04 十一月 2019 17:41:21 +0800
Subject: [PATCH] 高危标识

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderServiceImpl.java |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderServiceImpl.java
index af23886..35fc123 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderServiceImpl.java
@@ -1177,7 +1177,8 @@
 
 	@Override
 	public List<CommonOrderVO> listQuery(long start, int count, Integer keyType, String key, Integer state,
-			Integer type, Integer orderState, String startTime, String endTime, Integer source)
+			Integer type, Integer orderState, String startTime, String endTime, Integer source,List<Long> listShopId,
+			List<Long> listGoodsId, Date minTime, BigDecimal money)
 			throws CommonOrderException {
 
 		List<CommonOrderVO> list = null;
@@ -1185,10 +1186,11 @@
 		if (StringUtil.isNullOrEmpty(key) || keyType == 1) {// 鎼滅储妗嗘棤鍊兼垨鑰呮寜璁㈠崟鍙锋悳绱㈡椂閮藉彧鎼滅储涓昏鍗�
 			list = commonOrderMapper.listQueryWithNoChild(start, count, keyType, key, state, type, orderState,
 					startTime, endTime, source);
-		} else
+		} else {
 			list = commonOrderMapper.listQuery(start, count, keyType, key, state, type, orderState, startTime, endTime,
-					source);
-
+					source, listShopId, listGoodsId, minTime, money);
+		}
+		
 		if (list == null) {
 			list = new ArrayList<CommonOrderVO>();
 		}
@@ -1372,12 +1374,15 @@
 
 	@Override
 	public long countQuery(Integer keyType, String key, Integer state, Integer type, Integer orderState,
-			String startTime, String endTime, Integer source) throws CommonOrderException {
+			String startTime, String endTime, Integer source, List<Long> listShopId, List<Long> listGoodsId,
+			Date minTime, BigDecimal money) throws CommonOrderException {
 		if (StringUtil.isNullOrEmpty(key) || keyType == 1) {// 鎼滅储妗嗘棤鍊兼垨鑰呮寜璁㈠崟鍙锋悳绱㈡椂閮藉彧鎼滅储涓昏鍗�
 			return commonOrderMapper.countQueryWithNoChild(keyType, key, state, type, orderState, startTime, endTime,
 					source);
-		} else
-			return commonOrderMapper.countQuery(keyType, key, state, type, orderState, startTime, endTime, source);
+		} else {
+			return commonOrderMapper.countQuery(keyType, key, state, type, orderState, startTime, endTime, source, listShopId,
+					listGoodsId, minTime,money);
+		}
 	}
 
 	@Override

--
Gitblit v1.8.0