123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- package com.pj.api.service;
- import cn.hutool.core.bean.BeanUtil;
- import cn.hutool.core.date.DateUtil;
- import cn.hutool.core.io.unit.DataUnit;
- import cn.hutool.core.util.NumberUtil;
- import cn.hutool.core.util.RandomUtil;
- import cn.hutool.core.util.StrUtil;
- import cn.hutool.json.JSONUtil;
- import com.pj.api.bo.InOutRecordBO;
- import com.pj.api.wx.bo.MsgDataBO;
- import com.pj.api.wx.service.WxService;
- import com.pj.constants.UserTypeEnum;
- import com.pj.current.config.MyConfig;
- import com.pj.current.config.PartConfig;
- import com.pj.current.config.WxConfig;
- import com.pj.current.satoken.StpUserUtil;
- import com.pj.project.tb_account.TbAccount;
- import com.pj.project.tb_account.TbAccountService;
- import com.pj.project.tb_business.CarDisincle;
- import com.pj.project.tb_business.TbBusiness;
- import com.pj.project.tb_business.TbBusinessService;
- import com.pj.project.tb_business_car.TbBusinessCar;
- import com.pj.project.tb_business_car.TbBusinessCarService;
- import com.pj.project.tb_business_item.TbBusinessItem;
- import com.pj.project.tb_business_item.TbBusinessItemService;
- import com.pj.project.tb_car.TbCar;
- import com.pj.project.tb_car.TbCarService;
- import com.pj.project.tb_costomer.TbCostomer;
- import com.pj.project.tb_costomer.TbCostomerService;
- import com.pj.project.tb_declare.TbDeclare;
- import com.pj.project.tb_declare.TbDeclareService;
- import com.pj.project.tb_discount.TbDiscount;
- import com.pj.project.tb_discount.TbDiscountService;
- import com.pj.project.tb_disinfect.TbDisinfect;
- import com.pj.project.tb_disinfect.TbDisinfectService;
- import com.pj.project.tb_district.TbDistrict;
- import com.pj.project.tb_district.TbDistrictService;
- import com.pj.project.tb_item.TbItem;
- import com.pj.project.tb_pass_record.TbPassRecord;
- import com.pj.project.tb_pass_record.TbPassRecordService;
- import com.pj.project4sp.admin.SpAdmin;
- import com.pj.project4sp.admin.SpAdminService;
- import com.pj.project4sp.global.BusinessException;
- import com.pj.utils.cache.RedisUtil;
- import com.pj.utils.sg.AjaxJson;
- import com.pj.utils.so.SoMap;
- import lombok.extern.slf4j.Slf4j;
- import org.springframework.context.annotation.Lazy;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import javax.annotation.Resource;
- import java.math.BigDecimal;
- import java.time.LocalDateTime;
- import java.time.format.DateTimeFormatter;
- import java.util.*;
- import java.util.stream.Collectors;
- /**
- *
- */
- @Service
- @Transactional(rollbackFor = Exception.class)
- @Slf4j
- public class ApiService {
- @Resource
- TbCostomerService tbCostomerService;
- @Resource
- @Lazy
- TbBusinessService tbBusinessService;
- @Resource
- TbPassRecordService tbPassRecordService;
- @Resource
- @Lazy
- TbBusinessCarService tbBusinessCarService;
- @Resource
- private TbDeclareService tbDeclareService;
- @Resource
- @Lazy
- private TbDisinfectService tbDisinfectService;
- @Resource
- private TbAccountService accountService;
- @Resource
- private TbDiscountService tbDiscountService;
- @Resource
- private TbBusinessItemService tbBusinessItemService;
- @Resource
- private SpAdminService spAdminService;
- @Resource
- private WxService wxService;
- @Resource
- private WxConfig wxConfig;
- @Resource
- private MyConfig myConfig;
- @Resource
- private TbCarService tbCarService;
- private final List<String> CAR_LIST = StrUtil.splitTrim("浙,粤,京,津,冀,晋,蒙,辽,黑,沪,吉,苏,皖,赣,鲁,豫,鄂,湘,桂,琼,渝,川,贵,云,藏, 陕, 甘, 青, 宁", ",");
- public List<InOutRecordBO> getInOutRecord(SoMap so) {
- List<TbPassRecord> passRecords = tbPassRecordService.getList(so);
- List<InOutRecordBO> recordList = new ArrayList<>();
- for (TbPassRecord passRecord : passRecords) {
- InOutRecordBO record = new InOutRecordBO();
- BeanUtil.copyProperties(passRecord, record);
- TbCostomer costomer = tbCostomerService.getById(passRecord.getCustomerId());
- record.setCustomerContact(costomer.getPhone()).setDutyPeople(costomer.getDutyPeople());
- recordList.add(record);
- }
- return recordList;
- }
- public List<TbCostomer> getCustomerList(SoMap so) {
- List<TbCostomer> list = tbCostomerService.getList(so);
- return list;
- }
- public void confirmCustomer(Long customerId, String judgeContent) {
- TbCostomer costomer = tbCostomerService.getById(customerId);
- if (costomer != null && costomer.getJudgeStatus() == 1) {
- tbCostomerService.judge(customerId + "", 2, judgeContent);
- }
- }
- public List<TbBusinessCar> searchPartCar(String carNo) {
- List<TbBusinessCar> list = tbBusinessCarService.searchPartCar(carNo);
- list = list.stream().filter(tbBusinessCar -> {
- String businessId = tbBusinessCar.getBusinessId();
- if (StrUtil.isEmpty(businessId)) {
- return false;
- }
- TbBusiness tbBusiness = tbBusinessService.getById(businessId);
- return tbBusiness.getAdminConfirmInput() == 1;
- }).collect(Collectors.toList());
- List<TbBusinessCar> cars = tbBusinessCarService.findTheNoBusinessCar(carNo);
- //过滤掉不用缴费的车
- list.addAll(cars);
- return list;
- }
- public void confirm(List<String> ids) {
- tbBusinessService.confirm(ids);
- }
- public Map<String, Object> getBusinessMoney(String carId, String state) {
- return tbBusinessService.getBusinessMoney(carId, state);
- }
- public Map<String, Object> getPartCarByChannel(String channel) {
- Map<String, Object> result = new HashMap<>();
- String carNo = RedisUtil.get(channel);
- if (StrUtil.isEmpty(carNo)) {
- return result;
- }
- TbBusinessCar tbBusinessCar = tbBusinessCarService.findTheLastRecord(carNo);
- if (tbBusinessCar == null) {
- return result;
- }
- Date now = new Date();
- Date startTime = tbBusinessCar.getRealInTime();
- if (tbBusinessCar.getPayTime() != null) {
- startTime = tbBusinessCar.getPayTime();
- }
- BigDecimal price = tbBusinessService.calculationPartMoney(startTime, now);
- Map<String, Object> car = new HashMap<>();
- car.put("id", tbBusinessCar.getId());
- car.put("carNo", tbBusinessCar.getCarNo());
- car.put("price", price);
- result.put("total", price);
- result.put("cars", Collections.singleton(car));
- return result;
- }
- public void addDeclare(TbDeclare tbDeclare) {
- if (StpUserUtil.isLogin() && !StrUtil.equals(UserTypeEnum.PLATFORM_ADMIN.getCustomerId(), StpUserUtil.getCustomerId())) {
- String currentCustomerId = StpUserUtil.getCustomerId();
- tbDeclare.setCustomerId(currentCustomerId);
- }
- TbCostomer tbCostomer = tbCostomerService.getById(tbDeclare.getCustomerId());
- tbDeclare.setCustomerName(tbCostomer.getName());
- String chinaCarNo = tbDeclare.getChinaCarNo();
- if (StrUtil.isNotEmpty(chinaCarNo)) {
- chinaCarNo = chinaCarNo.toUpperCase();
- tbDeclare.setChinaCarNo(chinaCarNo);
- }
- String carNo = tbDeclare.getCarNo();
- if (StrUtil.isNotEmpty(carNo)) {
- carNo = carNo.toUpperCase();
- tbDeclare.setCarNo(carNo);
- }
- String nowStr = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss"));
- tbDeclare.setCreateTime(new Date()).setDeclareNo(nowStr + RandomUtil.randomNumbers(6));
- tbDeclareService.save(tbDeclare);
- }
- public void addDisinfect(TbDisinfect tbDisinfect) {
- if (StpUserUtil.isLogin() && !StrUtil.equals(UserTypeEnum.PLATFORM_ADMIN.getCustomerId(), StpUserUtil.getCustomerId())) {
- String currentCustomerId = StpUserUtil.getCustomerId();
- tbDisinfect.setCustomerId(currentCustomerId);
- }
- TbCostomer tbCostomer = tbCostomerService.getById(tbDisinfect.getCustomerId());
- tbDisinfect.setCustomerName(tbCostomer.getName()).setApplyUnit(tbCostomer.getName());
- String nowStr = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss"));
- tbDisinfect.setCode(nowStr + RandomUtil.randomNumbers(6)).setApplyTime(DateUtil.now());
- tbDisinfectService.save(tbDisinfect);
- }
- public List<TbDeclare> getDeclareList(SoMap so) {
- return tbDeclareService.getList(so);
- }
- public TbAccount getAccountInfo(String customerId) {
- return accountService.getByCustomerId(customerId);
- }
- public List<TbDiscount> getDiscountInfo(SoMap so) {
- return tbDiscountService.getList(so);
- }
- public TbBusinessItem getBusinessItem(String id) {
- TbBusinessItem item = tbBusinessItemService.getById(id);
- TbBusiness business = tbBusinessService.getById(item.getBusinessId());
- item.setCardNo(business.getCardNo()).setChinaCarNo(business.getChinaCarNo()).setGoodsName(business.getGoodsName());
- return item;
- }
- public AjaxJson pickBusinessItem(String openid, long id) {
- TbBusinessItem tbBusinessItem = tbBusinessItemService.getById(id);
- if (tbBusinessItem == null) {
- return AjaxJson.getError("业务项目或已被删除");
- }
- SpAdmin spAdmin = spAdminService.findByOpenid(openid);
- if (spAdmin == null) {
- return AjaxJson.getError("用户已被删除或解绑");
- }
- if (tbBusinessItem.getPick() == 1) {
- return AjaxJson.getError("您慢了一步,其他用户已接单");
- }
- String customerId = spAdmin.getCustomerId();
- TbCostomer tbCostomer = tbCostomerService.getById(customerId);
- tbBusinessItem.setPick(1).setPickTime(new Date()).setPickCustomerId(tbCostomer.getId()).setPickCustomerName(tbCostomer.getName());
- tbBusinessItemService.updateById(tbBusinessItem);
- //todo 通知录入人员 已接单
- List<SpAdmin> spAdminList = spAdminService.findByCustomerId(UserTypeEnum.PLATFORM_ADMIN.getCustomerId());
- TbBusiness tbBusiness = tbBusinessService.getById(tbBusinessItem.getBusinessId());
- MsgDataBO msgDataBO = new MsgDataBO("订单号:" + tbBusinessItem.getNo(), tbCostomer.getName(), DateUtil.now(), tbBusiness.getGoodsName() + "(" + tbBusinessItem.getItemTypeName() + tbBusinessItem.getItemName() + ")");
- spAdminList.stream().filter(admin -> StrUtil.isNotEmpty(admin.getOpenid())).forEach(admin -> {
- String detailUrl = myConfig.getWebDomain() + "/pages/business-order/business-item?id=" + tbBusiness.getId() + "&itemId=" + tbBusinessItem.getId() + "&openid=" + openid;
- log.info("admin confirm business:[{}]", detailUrl);
- wxService.sendTemplateMsg(wxConfig.getBusinessPickTemplate(), admin.getOpenid(), msgDataBO, detailUrl);
- });
- return AjaxJson.getSuccess();
- }
- public void confirmBusinessItem(long id) {
- tbBusinessItemService.confirmBusinessItem(id);
- }
- public List<TbBusinessItem> getPartnerBusinessItem(SoMap startPage) {
- return tbBusinessItemService.getList(startPage);
- }
- public void addCarDisinfect(String carNo, String itemJson, String carType) {
- carNo = carNo.toUpperCase();
- TbBusinessCar db = tbBusinessCarService.checkCar(carNo);
- if (db != null) {
- throw new BusinessException("该车辆有未完成作业");
- }
- db = new TbBusinessCar();
- TbCar tbCar = tbCarService.findByCardNo(carNo);
- db.setCarNo(carNo).setIsLock(0).setCarCompany(tbCar != null ? tbCar.getCustomerName() : "临时");
- TbBusiness tbBusiness = new TbBusiness();
- if (StpUserUtil.isLogin()) {
- String customerId = StpUserUtil.getCustomerId();
- db.setCustomerId(customerId);
- TbCostomer tbCostomer = tbCostomerService.getById(customerId);
- tbBusiness.setCustomerId(customerId).setCustomerName(tbCostomer.getName());
- }
- db.setPay(0).setCarSize(12D);
- List<TbItem> tbItems = JSONUtil.toList(itemJson, TbItem.class);
- BigDecimal price = new BigDecimal("0");
- List<TbBusinessItem> itemList = new ArrayList<>();
- String no = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMddHHmm")) + RandomUtil.randomNumbers(4);
- int index = 1;
- for (TbItem tbItem : tbItems) {
- TbBusinessItem item = new TbBusinessItem();
- item.setNo(no + "0" + index)
- .setBusinessType(TbCostomer.CustomerEnum.DISINFECT_TYPE.getType());
- item.setItemCode(tbItem.getItemCode()).setNum("1")
- .setItemName(tbItem.getItemName()).setItemPrice(tbItem.getPrice())
- .setItemTypeId(tbItem.getTypeId()).setItemTypeName(tbItem.getTypeName())
- .setUnit(tbItem.getUnit()).setTotal(tbItem.getPrice()).setCreateTime(new Date());
- price = price.add(item.getItemPrice());
- itemList.add(item);
- index++;
- }
- // BigDecimal initCarPartMoney = partConfig.getBasePrice();
- tbBusiness
- .setNo(no).setGoodsName(carType)
- .setCreateTime(new Date()).setBusinessType(TbBusiness.BusinessType.CAR_DISINCLE.getCode())
- .setItemPrice(price);
- String prefix = carNo.substring(0, 1);
- if (CAR_LIST.contains(prefix)) {
- tbBusiness.setChinaCarNo(carNo);
- } else {
- tbBusiness.setCardNo(carNo);
- }
- tbBusinessService.save(tbBusiness);
- db.setBusinessId(tbBusiness.getId())
- .setNo(LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMddHHmm")) + RandomUtil.randomNumbers(4));
- tbBusinessCarService.save(db);
- itemList.forEach(tbBusinessItem -> tbBusinessItem.setBusinessId(tbBusiness.getId()));
- tbBusinessItemService.saveBatch(itemList);
- }
- public void editCarDisinfect(CarDisincle carDisincle, String itemJson, String type) {
- String carId = carDisincle.getBusinessCarId();
- TbBusinessCar businessCar = tbBusinessCarService.getById(carId);
- if (businessCar == null) {
- throw new BusinessException("数据不存在");
- }
- List<TbItem> tbItems = JSONUtil.toList(itemJson, TbItem.class);
- tbItems.forEach(tbItem -> {
- });
- }
- }
|