parent
274e764e22
commit
1ed5310e22
@ -7,6 +7,8 @@ import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
|||||||
import cn.iocoder.yudao.module.inspection.service.AppInspectionPartnerService;
|
import cn.iocoder.yudao.module.inspection.service.AppInspectionPartnerService;
|
||||||
import cn.iocoder.yudao.module.shop.entity.ShopMallPartners;
|
import cn.iocoder.yudao.module.shop.entity.ShopMallPartners;
|
||||||
import cn.iocoder.yudao.util.ExcelUtil;
|
import cn.iocoder.yudao.util.ExcelUtil;
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
@ -39,11 +41,11 @@ public class InspectionEquInfoController extends BaseController
|
|||||||
* 查询equInfo列表
|
* 查询equInfo列表
|
||||||
*/
|
*/
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(InspectionEquInfo inspectionEquInfo) throws Exception {
|
public CommonResult list(Integer pageNum,Integer pageSize,InspectionEquInfo inspectionEquInfo) throws Exception {
|
||||||
|
|
||||||
startPage();
|
Page page =new Page(pageNum,pageSize);
|
||||||
List<InspectionEquInfo> list = inspectionEquInfoService.selectInspectionEquInfoList(inspectionEquInfo);
|
IPage<InspectionEquInfo> list = inspectionEquInfoService.selectInspectionEquInfoList(page,inspectionEquInfo);
|
||||||
return getDataTable(list);
|
return success(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -52,9 +54,10 @@ public class InspectionEquInfoController extends BaseController
|
|||||||
@PostMapping("/export")
|
@PostMapping("/export")
|
||||||
public void export(HttpServletResponse response, InspectionEquInfo inspectionEquInfo)
|
public void export(HttpServletResponse response, InspectionEquInfo inspectionEquInfo)
|
||||||
{
|
{
|
||||||
List<InspectionEquInfo> list = inspectionEquInfoService.selectInspectionEquInfoList(inspectionEquInfo);
|
Page page =new Page(1,100000);
|
||||||
|
IPage<InspectionEquInfo> list = inspectionEquInfoService.selectInspectionEquInfoList(page,inspectionEquInfo);
|
||||||
ExcelUtil<InspectionEquInfo> util = new ExcelUtil<InspectionEquInfo>(InspectionEquInfo.class);
|
ExcelUtil<InspectionEquInfo> util = new ExcelUtil<InspectionEquInfo>(InspectionEquInfo.class);
|
||||||
util.exportExcel(response, list, "equInfo数据");
|
util.exportExcel(response, list.getRecords(), "equInfo数据");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -347,14 +347,14 @@ public class PartnerOwnController extends BaseController {
|
|||||||
|
|
||||||
//获取检测的数据
|
//获取检测的数据
|
||||||
@GetMapping("/inspectionList")
|
@GetMapping("/inspectionList")
|
||||||
public TableDataInfo inspectionList(Long partnerId,String status,String carNum,Integer pageSize,Integer pageNum) throws Exception {
|
public CommonResult inspectionList(Long partnerId,String status,String carNum,Integer pageSize,Integer pageNum) throws Exception {
|
||||||
ShopMallPartners partners = partnerList.shopInfo();
|
ShopMallPartners partners = partnerList.shopInfo();
|
||||||
if (!partnerId.equals(partners.getPartnerId())){
|
if (!partnerId.equals(partners.getPartnerId())){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
||||||
List<InspectionInfo> inspectionInfos = partnerList.inspectionList(page,partnerId, status, carNum);
|
IPage<InspectionInfo> inspectionInfos = partnerList.inspectionList(page,partnerId, status, carNum);
|
||||||
return getDataTable(inspectionInfos);
|
return success(inspectionInfos);
|
||||||
}
|
}
|
||||||
|
|
||||||
//获取检测的详细信息
|
//获取检测的详细信息
|
||||||
@ -365,7 +365,7 @@ public class PartnerOwnController extends BaseController {
|
|||||||
|
|
||||||
//获取检测的数据
|
//获取检测的数据
|
||||||
@GetMapping("/workerInspectionList")
|
@GetMapping("/workerInspectionList")
|
||||||
public TableDataInfo workerInspectionList(Long partnerId,String status,String searchValue,Integer pageSize,Integer pageNum) {
|
public CommonResult workerInspectionList(Long partnerId,String status,String searchValue,Integer pageSize,Integer pageNum) {
|
||||||
LoginUser user = SecurityFrameworkUtils.getLoginUser();
|
LoginUser user = SecurityFrameworkUtils.getLoginUser();
|
||||||
LambdaQueryWrapper<PartnerWorker> queryWrapper =new LambdaQueryWrapper<>();
|
LambdaQueryWrapper<PartnerWorker> queryWrapper =new LambdaQueryWrapper<>();
|
||||||
queryWrapper.eq(PartnerWorker::getUserId,user.getId()).eq(PartnerWorker::getPartnerId,partnerId);
|
queryWrapper.eq(PartnerWorker::getUserId,user.getId()).eq(PartnerWorker::getPartnerId,partnerId);
|
||||||
@ -374,8 +374,8 @@ public class PartnerOwnController extends BaseController {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
||||||
List<InspectionInfo> inspectionInfos = partnerList.inspectionList(page,partnerId, status, searchValue);
|
IPage<InspectionInfo> inspectionInfos = partnerList.inspectionList(page,partnerId, status, searchValue);
|
||||||
return getDataTable(inspectionInfos);
|
return success(inspectionInfos);
|
||||||
}
|
}
|
||||||
//增加检测步骤信息
|
//增加检测步骤信息
|
||||||
@PostMapping("/addStepInfo")
|
@PostMapping("/addStepInfo")
|
||||||
@ -397,28 +397,28 @@ public class PartnerOwnController extends BaseController {
|
|||||||
}
|
}
|
||||||
//获取到店预约的数据
|
//获取到店预约的数据
|
||||||
@GetMapping("/getAppointmentList")
|
@GetMapping("/getAppointmentList")
|
||||||
public TableDataInfo getAppointmentList(Long partnerId,String phoneNum,Integer pageSize,Integer pageNum) {
|
public CommonResult getAppointmentList(Long partnerId,String phoneNum,Integer pageSize,Integer pageNum) {
|
||||||
LoginUser user = SecurityFrameworkUtils.getLoginUser();
|
LoginUser user = SecurityFrameworkUtils.getLoginUser();
|
||||||
ShopMallPartners partnersTmp = partnerList.getById(partnerId);
|
ShopMallPartners partnersTmp = partnerList.getById(partnerId);
|
||||||
if (!partnersTmp.getUserId().equals(user.getId())){
|
if (!partnersTmp.getUserId().equals(user.getId())){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
Page<InspectionAppointment> page = new Page<>(pageNum,pageSize);
|
Page<InspectionAppointment> page = new Page<>(pageNum,pageSize);
|
||||||
List<InspectionAppointment> appointments = partnerList.getAppointmentList(page,partnerId,phoneNum);
|
IPage<InspectionAppointment> appointments = partnerList.getAppointmentList(page,partnerId,phoneNum);
|
||||||
return getDataTable(appointments);
|
return success(appointments);
|
||||||
}
|
}
|
||||||
|
|
||||||
//获取上门取车数据
|
//获取上门取车数据
|
||||||
@GetMapping("/getPickCarList")
|
@GetMapping("/getPickCarList")
|
||||||
public TableDataInfo getPickCarList(Long partnerId,String phoneNum,String pickStatus,Integer pageSize,Integer pageNum) {
|
public CommonResult getPickCarList(Long partnerId,String phoneNum,String pickStatus,Integer pageSize,Integer pageNum) {
|
||||||
LoginUser user = SecurityFrameworkUtils.getLoginUser();
|
LoginUser user = SecurityFrameworkUtils.getLoginUser();
|
||||||
ShopMallPartners partnersTmp = partnerList.getById(partnerId);
|
ShopMallPartners partnersTmp = partnerList.getById(partnerId);
|
||||||
if (!partnersTmp.getUserId().equals(user.getId())){
|
if (!partnersTmp.getUserId().equals(user.getId())){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
PageHelper.startPage(pageNum,pageSize);
|
Page<InspectionPickCar> page = new Page<>(pageNum,pageSize);
|
||||||
List<InspectionPickCar> pickCarList = partnerList.getPickCarList(partnerId,phoneNum,pickStatus);
|
IPage<InspectionPickCar> pickCarList = partnerList.getPickCarList(page,partnerId,phoneNum,pickStatus);
|
||||||
return getDataTable(pickCarList);
|
return success(pickCarList);
|
||||||
}
|
}
|
||||||
|
|
||||||
//获取上门取车详情页
|
//获取上门取车详情页
|
||||||
|
@ -36,10 +36,10 @@ public interface AppInspectionPartnerMapper extends BaseMapper<ShopMallPartners>
|
|||||||
List<OrderAppDetail> orderList(@Param("partnerId") Long partnerId, @Param("phoneNum") String phoneNum,@Param("title") String title);
|
List<OrderAppDetail> orderList(@Param("partnerId") Long partnerId, @Param("phoneNum") String phoneNum,@Param("title") String title);
|
||||||
List<PartnerWorker> getWorkList(@Param("partnerId")Long partnerId, @Param("postId") Long postId, @Param("workName") String workName, @Param("phoneNum")String phoneNum);
|
List<PartnerWorker> getWorkList(@Param("partnerId")Long partnerId, @Param("postId") Long postId, @Param("workName") String workName, @Param("phoneNum")String phoneNum);
|
||||||
IPage<PartnerWorker> pageWorkList(@Param("partnerId")Long partnerId, @Param("postId") Long postId, @Param("workName") String workName, @Param("phoneNum")String phoneNum,Page<LabelRespVO> page);
|
IPage<PartnerWorker> pageWorkList(@Param("partnerId")Long partnerId, @Param("postId") Long postId, @Param("workName") String workName, @Param("phoneNum")String phoneNum,Page<LabelRespVO> page);
|
||||||
List<InspectionInfo> inspectionList(Page<InspectionInfo> page,@Param("partnerId")Long partnerId, @Param("status") String status, @Param("carNum")String carNum);
|
IPage<InspectionInfo> inspectionList(Page<InspectionInfo> page,@Param("partnerId")Long partnerId, @Param("status") String status, @Param("carNum")String carNum);
|
||||||
List<InspectionInfo> workerInspectionList(@Param("workerId")Long workerId,@Param("status") String status, @Param("searchValue")String searchValue);
|
List<InspectionInfo> workerInspectionList(@Param("workerId")Long workerId,@Param("status") String status, @Param("searchValue")String searchValue);
|
||||||
List<OrderInfo> validationList(@Param("partnerId") Long partnerId, @Param("searchValue") String searchValue);
|
List<OrderInfo> validationList(@Param("partnerId") Long partnerId, @Param("searchValue") String searchValue);
|
||||||
List<InspectionPickCar> getPickCarList(@Param("partnerId") Long partnerId, @Param("phoneNum") String phoneNum, @Param("pickStatus") String pickStatus);
|
IPage<InspectionPickCar> getPickCarList(Page page,@Param("partnerId") Long partnerId, @Param("phoneNum") String phoneNum, @Param("pickStatus") String pickStatus);
|
||||||
List<InspectionPickCar> getPickCarListOfWorker(@Param("workerId") Long workerId, @Param("phoneNum") String phoneNum);
|
List<InspectionPickCar> getPickCarListOfWorker(@Param("workerId") Long workerId, @Param("phoneNum") String phoneNum);
|
||||||
|
|
||||||
List<OrderInfo> chartInfoAmount(@Param("startTime") String startTime,@Param("endTime")String endTime,@Param("partnerId")Long partnerId);
|
List<OrderInfo> chartInfoAmount(@Param("startTime") String startTime,@Param("endTime")String endTime,@Param("partnerId")Long partnerId);
|
||||||
|
@ -2,6 +2,7 @@ package cn.iocoder.yudao.module.inspection.mapper;
|
|||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
import cn.iocoder.yudao.module.inspection.entity.InspectionAppointment;
|
import cn.iocoder.yudao.module.inspection.entity.InspectionAppointment;
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Param;
|
||||||
@ -64,7 +65,7 @@ public interface InspectionAppointmentMapper extends BaseMapper<InspectionAppoin
|
|||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
public int deleteInspectionAppointmentByIds(Long[] ids);
|
public int deleteInspectionAppointmentByIds(Long[] ids);
|
||||||
List<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page,@Param("partnerId") Long partnerId, @Param("phoneNum")String phoneNum);
|
IPage<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page, @Param("partnerId") Long partnerId, @Param("phoneNum")String phoneNum);
|
||||||
List<InspectionAppointment> getAppointmentOwn(@Param("userId") Long userId);
|
List<InspectionAppointment> getAppointmentOwn(@Param("userId") Long userId);
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,7 +4,10 @@ import java.util.List;
|
|||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
import cn.iocoder.yudao.module.inspection.entity.InspectionEquInfo;
|
import cn.iocoder.yudao.module.inspection.entity.InspectionEquInfo;
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* equInfoMapper接口
|
* equInfoMapper接口
|
||||||
@ -29,6 +32,6 @@ public interface InspectionEquInfoMapper extends BaseMapper<InspectionEquInfo>
|
|||||||
* @param inspectionEquInfo equInfo
|
* @param inspectionEquInfo equInfo
|
||||||
* @return equInfo集合
|
* @return equInfo集合
|
||||||
*/
|
*/
|
||||||
public List<InspectionEquInfo> selectInspectionEquInfoList(InspectionEquInfo inspectionEquInfo);
|
public IPage<InspectionEquInfo> selectInspectionEquInfoList(Page page, @Param("inspectionEquInfo") InspectionEquInfo inspectionEquInfo);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -69,20 +69,20 @@ public interface AppInspectionPartnerService extends IService<ShopMallPartners>
|
|||||||
|
|
||||||
void delWorker(Long partnerId,Long workId);
|
void delWorker(Long partnerId,Long workId);
|
||||||
|
|
||||||
List<InspectionInfo> inspectionList(Page<InspectionInfo> page,Long partnerId, String status, String carNum);
|
IPage<InspectionInfo> inspectionList(Page<InspectionInfo> page,Long partnerId, String status, String carNum);
|
||||||
InspectionInfoVo inspectionDetail(Long inspectionInfoId);
|
InspectionInfoVo inspectionDetail(Long inspectionInfoId);
|
||||||
|
|
||||||
List<InspectionInfo> workerInspectionList(Long partnerId,String status,String searchValue);
|
List<InspectionInfo> workerInspectionList(Long partnerId,String status,String searchValue);
|
||||||
void addStepInfo(InspectionStepInfo stepInfo);
|
void addStepInfo(InspectionStepInfo stepInfo);
|
||||||
void stopInspection(InspectionInfo info) throws Exception;
|
void stopInspection(InspectionInfo info) throws Exception;
|
||||||
void makeCertOk(Long inspectionId);
|
void makeCertOk(Long inspectionId);
|
||||||
List<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page,Long partnerId,String phoneNum);
|
IPage<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page,Long partnerId,String phoneNum);
|
||||||
List<OrderInfo> validationList(Long partnerId,String searchValue);
|
List<OrderInfo> validationList(Long partnerId,String searchValue);
|
||||||
void sendCoupon(ShopCouponTemplate template) throws Exception;
|
void sendCoupon(ShopCouponTemplate template) throws Exception;
|
||||||
List<ShopCouponTemplate> listCoupon(Long partnerId,String searchValue);
|
List<ShopCouponTemplate> listCoupon(Long partnerId,String searchValue);
|
||||||
void delCoupon(Long partnerId,Long id);
|
void delCoupon(Long partnerId,Long id);
|
||||||
void designatePickCarWorker(Long pickCarId,Long workerId);
|
void designatePickCarWorker(Long pickCarId,Long workerId);
|
||||||
List<InspectionPickCar> getPickCarList(Long partnerId, String phoneNum,String pickStatus);
|
IPage<InspectionPickCar> getPickCarList(Page page,Long partnerId, String phoneNum,String pickStatus);
|
||||||
InspectionPickCar getPickCarDetail(Long dataId);
|
InspectionPickCar getPickCarDetail(Long dataId);
|
||||||
List<InspectionPickCar> getPickCarListOfWorker(Long workerId, String phoneNum);
|
List<InspectionPickCar> getPickCarListOfWorker(Long workerId, String phoneNum);
|
||||||
JSONObject vehicleLicenseOCR(String imagePath) throws Exception;
|
JSONObject vehicleLicenseOCR(String imagePath) throws Exception;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package cn.iocoder.yudao.module.inspection.service;
|
package cn.iocoder.yudao.module.inspection.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
import cn.iocoder.yudao.module.inspection.entity.InspectionAppointment;
|
import cn.iocoder.yudao.module.inspection.entity.InspectionAppointment;
|
||||||
@ -73,6 +74,6 @@ public interface IInspectionAppointmentService extends IService<InspectionAppoi
|
|||||||
JSONObject pickCarInfo();
|
JSONObject pickCarInfo();
|
||||||
JSONObject computeDistanceAndPrice(Long goodsId,Double longitude,Double latitude,String type ) throws Exception;
|
JSONObject computeDistanceAndPrice(Long goodsId,Double longitude,Double latitude,String type ) throws Exception;
|
||||||
|
|
||||||
public List<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page,Long partnerId, String phoneNum);
|
public IPage<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page, Long partnerId, String phoneNum);
|
||||||
List<InspectionAppointment> getAppointmentOwn();
|
List<InspectionAppointment> getAppointmentOwn();
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@ package cn.iocoder.yudao.module.inspection.service;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
import cn.iocoder.yudao.module.inspection.entity.InspectionEquInfo;
|
import cn.iocoder.yudao.module.inspection.entity.InspectionEquInfo;
|
||||||
|
|
||||||
@ -27,7 +29,7 @@ public interface IInspectionEquInfoService extends IService<InspectionEquInfo>
|
|||||||
* @param inspectionEquInfo equInfo
|
* @param inspectionEquInfo equInfo
|
||||||
* @return equInfo集合
|
* @return equInfo集合
|
||||||
*/
|
*/
|
||||||
public List<InspectionEquInfo> selectInspectionEquInfoList(InspectionEquInfo inspectionEquInfo);
|
public IPage<InspectionEquInfo> selectInspectionEquInfoList(Page page,InspectionEquInfo inspectionEquInfo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增equInfo
|
* 新增equInfo
|
||||||
|
@ -239,7 +239,6 @@ public class AppInspectionPartnerServiceImpl extends ServiceImpl<AppInspectionPa
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
StatisticsInfo statisticsInfo2 = baseMapper.orderNum(partnerId, DateUtil.format(new Date(),"yyyy-MM-dd"));
|
StatisticsInfo statisticsInfo2 = baseMapper.orderNum(partnerId, DateUtil.format(new Date(),"yyyy-MM-dd"));
|
||||||
|
|
||||||
//合规且合格双燃料
|
//合规且合格双燃料
|
||||||
Integer i = baseMapper.srlNum(partnerId, DateUtil.format(new Date(), "yyyy-MM-dd"));
|
Integer i = baseMapper.srlNum(partnerId, DateUtil.format(new Date(), "yyyy-MM-dd"));
|
||||||
Integer hgNum = baseMapper.hgNum(partnerId, DateUtil.format(new Date(), "yyyy-MM-dd"));
|
Integer hgNum = baseMapper.hgNum(partnerId, DateUtil.format(new Date(), "yyyy-MM-dd"));
|
||||||
@ -1100,7 +1099,7 @@ public class AppInspectionPartnerServiceImpl extends ServiceImpl<AppInspectionPa
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<InspectionInfo> inspectionList(Page<InspectionInfo> page,Long partnerId, String status, String carNum) {
|
public IPage<InspectionInfo> inspectionList(Page<InspectionInfo> page,Long partnerId, String status, String carNum) {
|
||||||
return baseMapper.inspectionList(page,partnerId,status,carNum);
|
return baseMapper.inspectionList(page,partnerId,status,carNum);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1243,7 +1242,7 @@ public class AppInspectionPartnerServiceImpl extends ServiceImpl<AppInspectionPa
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page,Long partnerId,String phoneNum) {
|
public IPage<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page,Long partnerId,String phoneNum) {
|
||||||
return appointmentService.getAppointmentList(page,partnerId,phoneNum);
|
return appointmentService.getAppointmentList(page,partnerId,phoneNum);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1311,9 +1310,9 @@ public class AppInspectionPartnerServiceImpl extends ServiceImpl<AppInspectionPa
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<InspectionPickCar> getPickCarList(Long partnerId, String phoneNum,String pickStatus) {
|
public IPage<InspectionPickCar> getPickCarList(Page page,Long partnerId, String phoneNum,String pickStatus) {
|
||||||
|
|
||||||
return baseMapper.getPickCarList(partnerId,phoneNum,pickStatus);
|
return baseMapper.getPickCarList(page,partnerId,phoneNum,pickStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -13,6 +13,7 @@ import cn.iocoder.yudao.module.system.service.user.AdminUserService;
|
|||||||
import cn.iocoder.yudao.util.SendSmsUtil;
|
import cn.iocoder.yudao.util.SendSmsUtil;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import cn.iocoder.yudao.util.DateUtils;
|
import cn.iocoder.yudao.util.DateUtils;
|
||||||
@ -347,7 +348,7 @@ public class InspectionAppointmentServiceImpl extends ServiceImpl<InspectionAppo
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page,Long partnerId, String phoneNum) {
|
public IPage<InspectionAppointment> getAppointmentList(Page<InspectionAppointment> page, Long partnerId, String phoneNum) {
|
||||||
return baseMapper.getAppointmentList(page,partnerId,phoneNum);
|
return baseMapper.getAppointmentList(page,partnerId,phoneNum);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,6 +7,8 @@ import java.util.List;
|
|||||||
|
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import cn.iocoder.yudao.util.DateUtils;
|
import cn.iocoder.yudao.util.DateUtils;
|
||||||
import cn.iocoder.yudao.module.inspection.entity.WarnMessage;
|
import cn.iocoder.yudao.module.inspection.entity.WarnMessage;
|
||||||
@ -48,9 +50,9 @@ public class InspectionEquInfoServiceImpl extends ServiceImpl<InspectionEquInfoM
|
|||||||
* @return equInfo
|
* @return equInfo
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public List<InspectionEquInfo> selectInspectionEquInfoList(InspectionEquInfo inspectionEquInfo)
|
public IPage<InspectionEquInfo> selectInspectionEquInfoList(Page page,InspectionEquInfo inspectionEquInfo)
|
||||||
{
|
{
|
||||||
return baseMapper.selectInspectionEquInfoList(inspectionEquInfo);
|
return baseMapper.selectInspectionEquInfoList(page,inspectionEquInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package cn.iocoder.yudao.module.payment.entity;
|
package cn.iocoder.yudao.module.payment.entity;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.tenant.core.db.TenantBaseDO;
|
||||||
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
@ -14,7 +15,7 @@ import java.util.Date;
|
|||||||
* @since 2023-07-24 18:30:28
|
* @since 2023-07-24 18:30:28
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
public class OrderInfo {
|
public class OrderInfo extends TenantBaseDO {
|
||||||
//订单id
|
//订单id
|
||||||
private Long id;
|
private Long id;
|
||||||
private String transactionId;
|
private String transactionId;
|
||||||
@ -63,16 +64,11 @@ public class OrderInfo {
|
|||||||
private Integer commentStar;
|
private Integer commentStar;
|
||||||
//订单类型
|
//订单类型
|
||||||
private String orderType;
|
private String orderType;
|
||||||
//创建时间
|
|
||||||
private Date createTime;
|
|
||||||
//创建人id
|
|
||||||
private Long creator;
|
|
||||||
//创建人所在部门
|
//创建人所在部门
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
//更新时间
|
|
||||||
private Date updateTime;
|
|
||||||
//更新人id
|
|
||||||
private Integer updater;
|
|
||||||
//积分充值的金额
|
//积分充值的金额
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private Long balanceCz;
|
private Long balanceCz;
|
||||||
|
@ -278,7 +278,7 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
|||||||
createOrder.setPartnerName(goods.getString("partnerName"));
|
createOrder.setPartnerName(goods.getString("partnerName"));
|
||||||
createOrder.setRealName(user.getNickname());
|
createOrder.setRealName(user.getNickname());
|
||||||
createOrder.setPhonenumber(user.getMobile());
|
createOrder.setPhonenumber(user.getMobile());
|
||||||
createOrder.setCreator(user.getId());
|
createOrder.setCreator(String.valueOf(user.getId()));
|
||||||
createOrder.setDeptId(user.getDeptId());
|
createOrder.setDeptId(user.getDeptId());
|
||||||
createOrder.setReduceMoney(goods.getLong("reduceMoney"));
|
createOrder.setReduceMoney(goods.getLong("reduceMoney"));
|
||||||
//待支付
|
//待支付
|
||||||
|
@ -113,7 +113,6 @@
|
|||||||
sum((oi.pay_time like CONCAT(#{timeStr},'%') and oi.create_time like CONCAT(#{timeStr},'%'))),0) as workedNum
|
sum((oi.pay_time like CONCAT(#{timeStr},'%') and oi.create_time like CONCAT(#{timeStr},'%'))),0) as workedNum
|
||||||
FROM
|
FROM
|
||||||
order_info oi
|
order_info oi
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
<select id="allAmount" resultType="java.lang.Integer">
|
<select id="allAmount" resultType="java.lang.Integer">
|
||||||
SELECT
|
SELECT
|
||||||
@ -431,7 +430,7 @@ FROM
|
|||||||
partner_worker pw
|
partner_worker pw
|
||||||
INNER JOIN system_users su ON pw.user_id = su.id
|
INNER JOIN system_users su ON pw.user_id = su.id
|
||||||
left JOIN system_user_post sup on sup.user_id = su.id
|
left JOIN system_user_post sup on sup.user_id = su.id
|
||||||
where pw.partner_id = #{partnerId}
|
where pw.deleted = 0
|
||||||
<if test="workName!=null and workName!=''">
|
<if test="workName!=null and workName!=''">
|
||||||
and su.nickname like concat('%',#{workName},'%')
|
and su.nickname like concat('%',#{workName},'%')
|
||||||
</if>
|
</if>
|
||||||
|
@ -10,10 +10,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<select id="selectInspectionEquInfoList" parameterType="cn.iocoder.yudao.module.inspection.entity.InspectionEquInfo" resultType="cn.iocoder.yudao.module.inspection.entity.InspectionEquInfo">
|
<select id="selectInspectionEquInfoList" parameterType="cn.iocoder.yudao.module.inspection.entity.InspectionEquInfo" resultType="cn.iocoder.yudao.module.inspection.entity.InspectionEquInfo">
|
||||||
select * from inspection_equ_info
|
select * from inspection_equ_info
|
||||||
<where>
|
<where>
|
||||||
<if test="equName != null and equName != ''"> and equ_name like concat('%', #{equName}, '%')</if>
|
<if test="inspectionEquInfo.equName != null and inspectionEquInfo.equName != ''"> and equ_name like concat('%', #{inspectionEquInfo.equName}, '%')</if>
|
||||||
<if test="equModel != null and equModel != ''"> and equ_model like concat('%', #{equModel}, '%')</if>
|
<if test="inspectionEquInfo.equModel != null and inspectionEquInfo.equModel != ''"> and equ_model like concat('%', #{inspectionEquInfo.equModel}, '%')</if>
|
||||||
<if test="equNumber != null and equNumber != ''"> and equ_number like concat('%', #{equNumber}, '%')</if>
|
<if test="inspectionEquInfo.equNumber != null and inspectionEquInfo.equNumber != ''"> and equ_number like concat('%', #{inspectionEquInfo.equNumber}, '%')</if>
|
||||||
<if test="params.beginNextCheckTime != null and params.beginNextCheckTime != '' and params.endNextCheckTime != null and params.endNextCheckTime != ''"> and next_check_time between #{params.beginNextCheckTime} and #{params.endNextCheckTime}</if>
|
<if test="inspectionEquInfo.params.beginNextCheckTime != null and inspectionEquInfo.params.beginNextCheckTime != '' and params.endNextCheckTime != null and params.endNextCheckTime != ''">
|
||||||
|
and next_check_time between #{inspectionEquInfo.params.beginNextCheckTime} and #{inspectionEquInfo.params.endNextCheckTime}</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
<druid.version>1.2.23</druid.version>
|
<druid.version>1.2.23</druid.version>
|
||||||
<mybatis.version>3.5.16</mybatis.version>
|
<mybatis.version>3.5.16</mybatis.version>
|
||||||
<mybatis-plus.version>3.5.7</mybatis-plus.version>
|
<mybatis-plus.version>3.5.7</mybatis-plus.version>
|
||||||
<pagehelper.boot.version>2.1.0</pagehelper.boot.version>
|
<pagehelper.boot.version>1.4.6</pagehelper.boot.version>
|
||||||
<jsqlparser.version>4.9</jsqlparser.version>
|
<jsqlparser.version>4.9</jsqlparser.version>
|
||||||
<mybatis-plus-generator.version>3.5.7</mybatis-plus-generator.version>
|
<mybatis-plus-generator.version>3.5.7</mybatis-plus-generator.version>
|
||||||
<dynamic-datasource.version>4.3.1</dynamic-datasource.version>
|
<dynamic-datasource.version>4.3.1</dynamic-datasource.version>
|
||||||
|
@ -375,7 +375,7 @@ public class AdminAuthServiceImpl implements AdminAuthService {
|
|||||||
List<RoleDO> jcyh = roleService.getRoleListByCodes(Collections.singletonList("jcyh"));
|
List<RoleDO> jcyh = roleService.getRoleListByCodes(Collections.singletonList("jcyh"));
|
||||||
Set<Long> ids = new HashSet<>();
|
Set<Long> ids = new HashSet<>();
|
||||||
ids.add(jcyh.get(0).getId());
|
ids.add(jcyh.get(0).getId());
|
||||||
permissionService.assignUserRole(user.getId(),ids);
|
permissionService.assignUserRole(uid,ids);
|
||||||
}else {
|
}else {
|
||||||
//更新
|
//更新
|
||||||
user.setId(wxUser.getId());
|
user.setId(wxUser.getId());
|
||||||
|
Loading…
Reference in New Issue
Block a user