| | |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import com.yeshi.fanli.entity.SystemEnum; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | |
| | | |
| | | /** |
| | | * 订单列表 |
| | | * |
| | | * @param acceptData |
| | | * @param page |
| | | * @param filter |
| | |
| | | |
| | | long count = 0L; |
| | | List<CommonOrderVO> list = null; |
| | | if (acceptData.getSystem() == SystemEnum.yhqjx) { |
| | | list = commonOrderService.getOrderList(acceptData, page, uid, state, orderType, orderState, orderNo, |
| | | startTime, endTime, dateType, listSource); |
| | | count = commonOrderService.countOrderList(uid, state, orderType, orderState, orderNo, startTime, |
| | | endTime, dateType, listSource); |
| | | } else { |
| | | if (VersionUtil.greaterThan_2_1(acceptData.getPlatform(), acceptData.getVersion())) { |
| | | list = commonOrderService.getOrderList(acceptData, page, uid, state, orderType, orderState, orderNo, |
| | | startTime, endTime, dateType, listSource); |
| | |
| | | count = commonOrderService.countGroupOrderNoByUid(uid, state, orderType, orderState, orderNo, startTime, |
| | | endTime, dateType, listSource); |
| | | } |
| | | } |
| | | |
| | | // 判断是否需要显示订单找回提示 8秒内请求3次触发 |
| | | String orderFindUrl = null; |