yujian
2020-06-09 8618015e4fa4b4c8bd3e0a4c35b97d9af7852700
订单
1个文件已修改
8 ■■■■ 已修改文件
fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderServiceImpl.java 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderServiceImpl.java
@@ -1944,12 +1944,12 @@
    @Override
    public List<CommonOrderVO> getOrderList(AcceptData acceptData, Integer page, Long uid, Integer state, Integer type,
            Integer orderState, String orderNo, String startTime, String endTime, Integer dateType,
            List<Integer> listSource, boolean notBackSuVip) throws CommonOrderException, Exception {
            List<Integer> listSource) throws CommonOrderException, Exception {
        int pageSize = Constant.PAGE_SIZE;
        List<CommonOrderVO> listOrder = commonOrderMapper.getOrderList((page - 1) * pageSize, pageSize, uid, state,
                type, orderState, orderNo, startTime, endTime, dateType, listSource, notBackSuVip);
                type, orderState, orderNo, startTime, endTime, dateType, listSource);
        // 订单信息为空
        if (listOrder == null || listOrder.size() == 0) {
@@ -1971,10 +1971,10 @@
    @Override
    public long countOrderList(Long uid, Integer state, Integer type, Integer orderState, String orderNo,
            String startTime, String endTime, Integer dateType, List<Integer> listSource, boolean notBackSuVip)
            String startTime, String endTime, Integer dateType, List<Integer> listSource)
            throws CommonOrderException {
        return commonOrderMapper.countOrderList(uid, state, type, orderState, orderNo, startTime, endTime, dateType,
                listSource, notBackSuVip);
                listSource);
    }
    /**