Browse Source

feat(all): 增加仓库租用管理模块

dist.1.3.0
zhaoqiaobo 8 months ago
parent
commit
fa426b6948
  1. 34
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/dto/WarehouseLeasingDTO.java
  2. 12
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/BasicdataWarehouseEntity.java
  3. 66
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/WarehouseLeasingEntity.java
  4. 3
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataCategoryClient.java
  5. 20
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataClientController.java
  6. 78
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataDriverArteryController.java
  7. 16
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataWarehouseController.java
  8. 185
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/WarehouseLeasingController.java
  9. 44
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/WarehouseLeasingExcel.java
  10. 6
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/feign/BasicdataCategoryClient.java
  11. 54
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/WarehouseLeasingMapper.java
  12. 27
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/WarehouseLeasingMapper.xml
  13. 2
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IBasicdataClientService.java
  14. 54
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IWarehouseLeasingService.java
  15. 41
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataClientServiceImpl.java
  16. 130
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/WarehouseLeasingServiceImpl.java
  17. 46
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/vo/ResidualAreaVO.java
  18. 65
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/vo/WarehouseLeasingVO.java
  19. 50
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/wrapper/WarehouseLeasingWrapper.java

34
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/dto/WarehouseLeasingDTO.java

@ -0,0 +1,34 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.dto;
import com.logpm.basicdata.entity.WarehouseLeasingEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 仓库租用管理 数据传输对象实体类
*
* @author zqb
* @since 2024-08-14
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WarehouseLeasingDTO extends WarehouseLeasingEntity {
private static final long serialVersionUID = 1L;
}

12
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/BasicdataWarehouseEntity.java

@ -280,5 +280,17 @@ public class BasicdataWarehouseEntity extends TenantEntity {
@ApiModelProperty(value = "老系统id")
private Integer oldId;
@ApiModelProperty(value = "临时周转面积")
private BigDecimal temporaryTurnoverArea;
@ApiModelProperty(value = "代作业入库费")
private BigDecimal handlingStorageEntranceFee;
@ApiModelProperty(value = "代作业出库费")
private BigDecimal handlingStorageExitFee;
@ApiModelProperty(value = "单库位面积")
private BigDecimal singleStorageLocationArea;
}

66
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/WarehouseLeasingEntity.java

@ -0,0 +1,66 @@
package com.logpm.basicdata.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.core.tenant.mp.TenantEntity;
import java.math.BigDecimal;
import java.util.Date;
/**
* 仓库租用管理
*
* @author zqb
* @create 2024-08-14
*/
@Data
@TableName("logpm_warehouse_leasing")
@ApiModel(value = "WarehouseLeasing对象", description = "仓库租用管理")
@EqualsAndHashCode(callSuper = true)
public class WarehouseLeasingEntity extends TenantEntity {
/**
* 客户id
*/
@ApiModelProperty(value = "客户id")
private Long clientId;
/**
* 仓库id
*/
@ApiModelProperty(value = "仓库id")
private Long warehouseId;
/**
* 租用类型
*/
@ApiModelProperty(value = "租用类型(1面积 2库位)")
private Integer type;
/**
* 租用库位数
*/
@ApiModelProperty(value = "租用库位数")
private BigDecimal storageLocationCount;
/**
* 租用面积
*/
@ApiModelProperty(value = "租用面积")
private BigDecimal leasedArea;
/**
* 月租金
*/
@ApiModelProperty(value = "月租金")
private BigDecimal monthlyRent;
/**
* 租赁合同开始时间
*/
@ApiModelProperty(value = "租赁合同开始时间")
private Date leaseCommencementDate;
/**
* 租赁合同结束时间
*/
@ApiModelProperty(value = "租赁合同结束时间")
private Date leaseTerminationDate;
}

3
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataCategoryClient.java

@ -63,4 +63,7 @@ public interface IBasicdataCategoryClient {
@GetMapping(API_PREFIX+"/findEntityById")
BasicdataCategoryEntity findEntityById(@RequestParam Long goodsId);
@GetMapping(API_PREFIX+"/findEntityByIds")
List<BasicdataCategoryEntity> findEntityByIds(@RequestParam List<Long> goodsIds);
}

20
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataClientController.java

@ -16,7 +16,6 @@
*/
package com.logpm.basicdata.controller;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
@ -45,17 +44,20 @@ import org.springblade.core.tool.constant.BladeConstant;
import org.springblade.core.tool.utils.DateUtil;
import org.springblade.core.tool.utils.Func;
import org.springblade.system.feign.IUserClient;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import springfox.documentation.annotations.ApiIgnore;
import javax.servlet.http.HttpServletResponse;
import javax.validation.Valid;
import java.security.NoSuchAlgorithmException;
import java.util.Comparator;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
/**
* 基础客户表 控制器
@ -152,6 +154,16 @@ public class BasicdataClientController extends BladeController {
List<BasicdataClientEntity> pages = basicdataClientService.listName(name);
return R.data(pages);
}
/**
* 基础客户表查询
*/
@GetMapping("/listNameLike")
@ApiOperationSupport(order = 3)
@ApiOperation(value = "根据名称模糊查询", notes = "传入basicdataClient")
public R<List<BasicdataClientEntity>> listNameLike(@RequestParam String name) {
List<BasicdataClientEntity> pages = basicdataClientService.listNameLike(name);
return R.data(pages);
}
/**
* 基础客户表查询

78
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataDriverArteryController.java

@ -16,13 +16,13 @@
*/
package com.logpm.basicdata.controller;
import cn.hutool.core.collection.CollUtil;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import com.logpm.basicdata.dto.BasicdataDriverArteryDTO;
import com.logpm.basicdata.entity.BasicdataDriverArteryEntity;
import com.logpm.basicdata.entity.BasicdataDriverWarehouseEntity;
import com.logpm.basicdata.excel.BasicdataDriverArteryExcel;
import com.logpm.basicdata.excel.BasicdataDriverArteryImporter;
import com.logpm.basicdata.excel.BasicdataDriverArteryImproterExcel;
import com.logpm.basicdata.excel.BasicdataExportDriverArteryExcel;
@ -35,11 +35,11 @@ import com.logpm.basicdata.vo.BasicdataDriverWarehouseVO;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import jodd.util.ArraysUtil;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.core.boot.ctrl.BladeController;
import org.springblade.core.excel.util.ExcelUtil;
import org.springblade.core.log.exception.ServiceException;
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.secure.BladeUser;
@ -50,13 +50,24 @@ import org.springblade.core.tool.utils.DateUtil;
import org.springblade.core.tool.utils.Func;
import org.springblade.system.entity.User;
import org.springblade.system.feign.IUserClient;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import springfox.documentation.annotations.ApiIgnore;
import javax.servlet.http.HttpServletResponse;
import javax.validation.Valid;
import java.util.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
/**
* 司机信息表 控制器
@ -93,16 +104,17 @@ public class BasicdataDriverArteryController extends BladeController {
List<String> vehicleIds = basicdataDrivermiddleService.findVehicleIdsByDriverId(driverId);
List<BasicdataDriverWarehouseVO> warehouseIds = basicdataDriverWarehouseService.findByDriverId(driverId);
BasicdataDriverArteryVO basicdataDriverArteryVO = new BasicdataDriverArteryVO();
BeanUtil.copy(detail,basicdataDriverArteryVO);
BeanUtil.copy(detail, basicdataDriverArteryVO);
// 拆分 司机类型
String[] split = basicdataDriverArteryVO.getJobType().split(",");
List<String> list = Arrays.asList(split);
basicdataDriverArteryVO.setJobTypeString(list);
basicdataDriverArteryVO.setWarehouses(warehouseIds);
basicdataDriverArteryVO.setBindVehicles(String.join(",",vehicleIds));
basicdataDriverArteryVO.setBindVehicles(String.join(",", vehicleIds));
return R.data(basicdataDriverArteryVO);
}
/**
* 司机信息表 分页
*/
@ -114,6 +126,25 @@ public class BasicdataDriverArteryController extends BladeController {
return R.data(pages);
}
/**
* 司机信息列表
*/
@GetMapping("/selectList")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "分页", notes = "传入basicdataDriverArtery")
public R<List<BasicdataDriverArteryEntity>> selectList(@ApiIgnore @RequestParam Map<String, Object> basicdataDriverArtery) {
if (!basicdataDriverArtery.containsKey("warehouseId")) {
throw new ServiceException("仓库id必传");
}
List<BasicdataDriverWarehouseEntity> warehouseEntities = basicdataDriverWarehouseService.list(Wrappers.<BasicdataDriverWarehouseEntity>lambdaQuery().eq(BasicdataDriverWarehouseEntity::getWarehouseId, basicdataDriverArtery.get("warehouseId")));
if (CollUtil.isNotEmpty(warehouseEntities)) {
Set<Long> collect = warehouseEntities.stream().map(BasicdataDriverWarehouseEntity::getDriverId).collect(Collectors.toSet());
List<BasicdataDriverArteryEntity> list = basicdataDriverArteryService.list(Wrappers.<BasicdataDriverArteryEntity>lambdaQuery().in(BasicdataDriverArteryEntity::getId, collect));
return R.data(list);
}
return R.data(null);
}
/**
* 司机信息列表
*/
@ -126,7 +157,6 @@ public class BasicdataDriverArteryController extends BladeController {
}
/**
* 司机信息表 自定义分页
*/
@ -143,7 +173,7 @@ public class BasicdataDriverArteryController extends BladeController {
*/
@GetMapping("/dictionary")
@ApiOperationSupport(order = 10)
@ApiOperation(value = "司机信息表",notes = "传入code")
@ApiOperation(value = "司机信息表", notes = "传入code")
public R<List<BasicdataDriverArteryVO>> dictionary() {
List<BasicdataDriverArteryVO> dictionary = basicdataDriverArteryService.selectBasicdataDriverArteryDictionary();
return R.data(dictionary);
@ -160,23 +190,23 @@ public class BasicdataDriverArteryController extends BladeController {
.eq(BasicdataDriverArteryEntity::getUserId, basicdataDriverArtery.getUserId())
.eq(BasicdataDriverArteryEntity::getIsDeleted, 0)
);
if(list.size() > 0){
if (list.size() > 0) {
return R.fail("绑定的用户已存在!不要重复绑定!!!");
}
String phone = basicdataDriverArtery.getPhone();
R<User> userR = userClient
.userInfoByPhone(AuthUtil.getUser().getTenantId(), phone);
if (Func.isNotEmpty(userR.getData())){
if (Func.isNotEmpty(userR.getData())) {
User user = userR.getData();
basicdataDriverArtery.setUserId(user.getId());
}
boolean save = basicdataDriverArteryService.save(basicdataDriverArtery);
if(save){
if (save) {
Long driverId = basicdataDriverArtery.getId();
List<Long> warehouseIds = basicdataDriverArtery.getWarehouseIds();
List<BasicdataDriverWarehouseEntity> driverWarehouseList = new ArrayList<>();
for (Long warehouseId:warehouseIds){
for (Long warehouseId : warehouseIds) {
BasicdataDriverWarehouseEntity basicdataDriverWarehouseEntity = new BasicdataDriverWarehouseEntity();
basicdataDriverWarehouseEntity.setWarehouseId(warehouseId);
basicdataDriverWarehouseEntity.setDriverId(driverId);
@ -185,9 +215,9 @@ public class BasicdataDriverArteryController extends BladeController {
basicdataDriverWarehouseService.saveBatch(driverWarehouseList);
}
//加入关联表
if (null !=basicdataDriverArtery.getBindVehicles()&& save){
Integer b = basicdataDriverArteryService.updateVehicle(basicdataDriverArtery);
// 加入关联表
if (null != basicdataDriverArtery.getBindVehicles() && save) {
Integer b = basicdataDriverArteryService.updateVehicle(basicdataDriverArtery);
}
return R.status(save);
}
@ -200,15 +230,15 @@ public class BasicdataDriverArteryController extends BladeController {
@ApiOperation(value = "修改", notes = "传入basicdataDriverArtery")
public R update(@Valid @RequestBody BasicdataDriverArteryDTO basicdataDriverArtery) {
//加入关联表
if (null !=basicdataDriverArtery.getBindVehicles()){
// 加入关联表
if (null != basicdataDriverArtery.getBindVehicles()) {
basicdataDriverArteryService.updateVehicle(basicdataDriverArtery);
}
boolean b = basicdataDriverArteryService.updateById(basicdataDriverArtery);
if(b){
if (b) {
List<Long> warehouseIds = basicdataDriverArtery.getWarehouseIds();
Long driverId = basicdataDriverArtery.getId();
basicdataDriverWarehouseService.deleteListByDriverIdAndSave(driverId,warehouseIds);
basicdataDriverWarehouseService.deleteListByDriverIdAndSave(driverId, warehouseIds);
}
return R.status(b);
}
@ -256,22 +286,22 @@ public class BasicdataDriverArteryController extends BladeController {
@ApiOperationSupport(order = 12)
@ApiOperation(value = "导入司机信息", notes = "传入excel")
public R importDriverArteryEntry(MultipartFile file) {
log.info("传入>>>>>>>{}",file);
log.info("传入>>>>>>>{}", file);
BasicdataDriverArteryImporter basicdataDriverArteryImporter = new BasicdataDriverArteryImporter(basicdataDriverArteryService);
ExcelUtil.save(file,basicdataDriverArteryImporter, BasicdataDriverArteryImproterExcel.class);
ExcelUtil.save(file, basicdataDriverArteryImporter, BasicdataDriverArteryImproterExcel.class);
return R.success("操作成功");
}
/**
* 导出数据模板
* http://localhost:8400/driverArtery/export-basicdataDriverArteryMb
* 导出数据模板
* http://localhost:8400/driverArtery/export-basicdataDriverArteryMb
*/
@GetMapping("/export-basicdataDriverArteryMb")
@ApiOperationSupport(order = 10)
@ApiOperation(value = "导出数据模板", notes = "传入basicdataDriverArtery")
public void exportBasicdataDriverArteryMb(@ApiIgnore @RequestParam Map<String, Object> basicdataDriverArtery, BladeUser bladeUser, HttpServletResponse response) {
List<BasicdataDriverArteryImproterExcel> list = new ArrayList<>();
//存入模板
// 存入模板
BasicdataDriverArteryImproterExcel excel = new BasicdataDriverArteryImproterExcel();
excel.setName("张三");
excel.setPhone("13812345678");

16
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataWarehouseController.java

@ -16,9 +16,9 @@
*/
package com.logpm.basicdata.controller;
import cn.hutool.core.util.NumberUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import com.logpm.basicdata.dto.BasicdataWarehouseDTO;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
@ -44,7 +44,13 @@ import org.springblade.core.secure.utils.AuthUtil;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.constant.BladeConstant;
import org.springblade.core.tool.utils.DateUtil;
import org.springframework.web.bind.annotation.*;
import org.springblade.core.tool.utils.ObjectUtil;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import springfox.documentation.annotations.ApiIgnore;
import javax.servlet.http.HttpServletResponse;
@ -190,6 +196,9 @@ public class BasicdataWarehouseController extends BladeController {
BladeUser user = AuthUtil.getUser();
CacheUtil.evict(CacheObjNames.basic_data_warehourse_list.getCacheName(), CacheObjNames.basic_data_warehourse_list.getKeyPrefix(),user.getUserId());
warehouseWarehouse.setEnableStatus("2");
if(ObjectUtil.isNotEmpty(warehouseWarehouse.getAcreage()) && ObjectUtil.isNotEmpty(warehouseWarehouse.getSeating())){
warehouseWarehouse.setSingleStorageLocationArea(NumberUtil.div(warehouseWarehouse.getAcreage(),warehouseWarehouse.getSeating()));
}
return R.status(warehouseService.save(warehouseWarehouse));
}
@ -200,6 +209,9 @@ public class BasicdataWarehouseController extends BladeController {
@ApiOperationSupport(order = 5)
@ApiOperation(value = "修改", notes = "传入warehouseWarehouse")
public R update(@Valid @RequestBody BasicdataWarehouseEntity warehouseWarehouse) {
if(ObjectUtil.isNotEmpty(warehouseWarehouse.getAcreage()) && ObjectUtil.isNotEmpty(warehouseWarehouse.getSeating())){
warehouseWarehouse.setSingleStorageLocationArea(NumberUtil.div(warehouseWarehouse.getAcreage(),warehouseWarehouse.getSeating()));
}
return R.status(warehouseService.updateById(warehouseWarehouse));
}

185
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/WarehouseLeasingController.java

@ -0,0 +1,185 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.controller;
import cn.hutool.core.util.ObjectUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import com.logpm.basicdata.entity.BasicdataClientEntity;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
import com.logpm.basicdata.entity.WarehouseLeasingEntity;
import com.logpm.basicdata.excel.WarehouseLeasingExcel;
import com.logpm.basicdata.feign.IBasicdataClientClient;
import com.logpm.basicdata.feign.IBasicdataWarehouseClient;
import com.logpm.basicdata.service.IWarehouseLeasingService;
import com.logpm.basicdata.vo.ResidualAreaVO;
import com.logpm.basicdata.vo.WarehouseLeasingVO;
import com.logpm.basicdata.wrapper.WarehouseLeasingWrapper;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import lombok.AllArgsConstructor;
import org.springblade.core.boot.ctrl.BladeController;
import org.springblade.core.excel.util.ExcelUtil;
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.secure.BladeUser;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.constant.BladeConstant;
import org.springblade.core.tool.utils.DateUtil;
import org.springblade.core.tool.utils.Func;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import springfox.documentation.annotations.ApiIgnore;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;
import javax.validation.Valid;
import java.util.List;
import java.util.Map;
/**
* 仓库租用管理 控制器
*
* @author zqb
* @since 2024-08-14
*/
@RestController
@AllArgsConstructor
@RequestMapping("logpm-basicdata/warehouseLeasing")
@Api(value = "仓库租用管理", tags = "仓库租用管理接口")
public class WarehouseLeasingController extends BladeController {
private final IWarehouseLeasingService warehouseLeasingService;
@Resource
private IBasicdataWarehouseClient warehouseClient;
@Resource
private IBasicdataClientClient clientClient;
/**
* 仓库租用管理 详情
*/
@GetMapping("/detail")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "详情", notes = "传入warehouseLeasing")
public R<WarehouseLeasingVO> detail(WarehouseLeasingEntity warehouseLeasing) {
WarehouseLeasingEntity detail = warehouseLeasingService.getOne(Condition.getQueryWrapper(warehouseLeasing));
WarehouseLeasingVO warehouseLeasingVO = WarehouseLeasingWrapper.build().entityVO(detail);
BasicdataWarehouseEntity warehouseEntity = warehouseClient.getEntityWarehouseId(warehouseLeasingVO.getWarehouseId());
if (ObjectUtil.isNotEmpty(warehouseEntity)) {
warehouseLeasingVO.setWarehouseName(warehouseEntity.getName());
}
BasicdataClientEntity basicdataClient = clientClient.findEntityById(warehouseLeasingVO.getClientId());
if (ObjectUtil.isNotEmpty(basicdataClient)) {
warehouseLeasingVO.setClientName(basicdataClient.getClientName());
}
return R.data(warehouseLeasingVO);
}
/**
* 仓库租用管理 分页
*/
@GetMapping("/list")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "分页", notes = "传入warehouseLeasing")
public R<IPage<WarehouseLeasingVO>> list(@ApiIgnore @RequestParam Map<String, Object> warehouseLeasing, Query query) {
IPage<WarehouseLeasingEntity> pages = warehouseLeasingService.page(Condition.getPage(query), Condition.getQueryWrapper(warehouseLeasing, WarehouseLeasingEntity.class));
return R.data(WarehouseLeasingWrapper.build().pageVO(pages));
}
@GetMapping("/residualArea")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "查询剩余面积", notes = "传入warehouseLeasing")
public R<ResidualAreaVO> residualArea(@RequestParam("warehouseId") Long warehouseId) {
return R.data(warehouseLeasingService.residualArea(warehouseId));
}
/**
* 仓库租用管理 自定义分页
*/
@GetMapping("/page")
@ApiOperationSupport(order = 3)
@ApiOperation(value = "分页", notes = "传入warehouseLeasing")
public R<IPage<WarehouseLeasingVO>> page(WarehouseLeasingVO warehouseLeasing, Query query) {
IPage<WarehouseLeasingVO> pages = warehouseLeasingService.selectWarehouseLeasingPage(Condition.getPage(query), warehouseLeasing);
return R.data(pages);
}
/**
* 仓库租用管理 新增
*/
@PostMapping("/save")
@ApiOperationSupport(order = 4)
@ApiOperation(value = "新增", notes = "传入warehouseLeasing")
public R save(@Valid @RequestBody WarehouseLeasingEntity warehouseLeasing) {
return R.status(warehouseLeasingService.save(warehouseLeasing));
}
/**
* 仓库租用管理 修改
*/
@PostMapping("/update")
@ApiOperationSupport(order = 5)
@ApiOperation(value = "修改", notes = "传入warehouseLeasing")
public R update(@Valid @RequestBody WarehouseLeasingEntity warehouseLeasing) {
return R.status(warehouseLeasingService.updateById(warehouseLeasing));
}
/**
* 仓库租用管理 新增或修改
*/
@PostMapping("/submit")
@ApiOperationSupport(order = 6)
@ApiOperation(value = "新增或修改", notes = "传入warehouseLeasing")
public R submit(@Valid @RequestBody WarehouseLeasingEntity warehouseLeasing) {
return R.status(warehouseLeasingService.saveOrUpdate(warehouseLeasing));
}
/**
* 仓库租用管理 删除
*/
@PostMapping("/remove")
@ApiOperationSupport(order = 7)
@ApiOperation(value = "逻辑删除", notes = "传入ids")
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
return R.status(warehouseLeasingService.deleteLogic(Func.toLongList(ids)));
}
/**
* 导出数据
*/
@GetMapping("/export-warehouseLeasing")
@ApiOperationSupport(order = 9)
@ApiOperation(value = "导出数据", notes = "传入warehouseLeasing")
public void exportWarehouseLeasing(@ApiIgnore @RequestParam Map<String, Object> warehouseLeasing, BladeUser bladeUser, HttpServletResponse response) {
QueryWrapper<WarehouseLeasingEntity> queryWrapper = Condition.getQueryWrapper(warehouseLeasing, WarehouseLeasingEntity.class);
// if (!AuthUtil.isAdministrator()) {
// queryWrapper.lambda().eq(WarehouseLeasing::getTenantId, bladeUser.getTenantId());
//}
queryWrapper.lambda().eq(WarehouseLeasingEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED);
List<WarehouseLeasingExcel> list = warehouseLeasingService.exportWarehouseLeasing(queryWrapper);
ExcelUtil.export(response, "仓库租用管理数据" + DateUtil.time(), "仓库租用管理数据表", list, WarehouseLeasingExcel.class);
}
}

44
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/WarehouseLeasingExcel.java

@ -0,0 +1,44 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.excel;
import lombok.Data;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import java.io.Serializable;
/**
* 仓库租用管理 Excel实体类
*
* @author zqb
* @since 2024-08-14
*/
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class WarehouseLeasingExcel implements Serializable {
private static final long serialVersionUID = 1L;
}

6
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/feign/BasicdataCategoryClient.java

@ -29,6 +29,7 @@ import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import springfox.documentation.annotations.ApiIgnore;
import java.util.Collections;
import java.util.List;
/**
@ -83,4 +84,9 @@ public class BasicdataCategoryClient implements IBasicdataCategoryClient {
return categoryEntity;
}
@Override
public List<BasicdataCategoryEntity> findEntityByIds(List<Long> goodsIds) {
return basicdataCategoryService.listByIds(goodsIds);
}
}

54
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/WarehouseLeasingMapper.java

@ -0,0 +1,54 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.mapper;
import com.logpm.basicdata.entity.WarehouseLeasingEntity;
import com.logpm.basicdata.vo.WarehouseLeasingVO;
import com.logpm.basicdata.excel.WarehouseLeasingExcel;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 仓库租用管理 Mapper 接口
*
* @author zqb
* @since 2024-08-14
*/
public interface WarehouseLeasingMapper extends BaseMapper<WarehouseLeasingEntity> {
/**
* 自定义分页
*
* @param page
* @param warehouseLeasing
* @return
*/
List<WarehouseLeasingVO> selectWarehouseLeasingPage(IPage page, WarehouseLeasingVO warehouseLeasing);
/**
* 获取导出数据
*
* @param queryWrapper
* @return
*/
List<WarehouseLeasingExcel> exportWarehouseLeasing(@Param("ew") Wrapper<WarehouseLeasingEntity> queryWrapper);
}

27
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/WarehouseLeasingMapper.xml

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.logpm.basicdata.mapper.WarehouseLeasingMapper">
<!-- 通用查询映射结果 -->
<resultMap id="warehouseLeasingResultMap" type="com.logpm.basicdata.entity.WarehouseLeasingEntity">
</resultMap>
<select id="selectWarehouseLeasingPage" resultType="com.logpm.basicdata.vo.WarehouseLeasingVO">
select t.*,
lww.name warehouseName,
case when t.lease_termination_date &lt; CURDATE() then '是'
when t.lease_termination_date >= CURDATE() then '否'
else '' end expired,
lbc.client_name clientName
from logpm_warehouse_leasing t
left join logpm_warehouse_warehouse lww on lww.id = t.warehouse_id
left join logpm_basicdata_client lbc on lbc.id = t.client_id
where t.is_deleted = 0
</select>
<select id="exportWarehouseLeasing" resultType="com.logpm.basicdata.excel.WarehouseLeasingExcel">
SELECT * FROM logpm_warehouse_leasing ${ew.customSqlSegment}
</select>
</mapper>

2
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IBasicdataClientService.java

@ -132,4 +132,6 @@ public interface IBasicdataClientService extends BaseService<BasicdataClientEnti
* @return
*/
R checkImportBasicDataClient(MultipartFile file);
List<BasicdataClientEntity> listNameLike(String name);
}

54
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IWarehouseLeasingService.java

@ -0,0 +1,54 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.service;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.logpm.basicdata.entity.WarehouseLeasingEntity;
import com.logpm.basicdata.vo.ResidualAreaVO;
import com.logpm.basicdata.vo.WarehouseLeasingVO;
import com.logpm.basicdata.excel.WarehouseLeasingExcel;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.core.mp.base.BaseService;
import java.util.List;
/**
* 仓库租用管理 服务类
*
* @author zqb
* @since 2024-08-14
*/
public interface IWarehouseLeasingService extends BaseService<WarehouseLeasingEntity> {
/**
* 自定义分页
*
* @param page
* @param warehouseLeasing
* @return
*/
IPage<WarehouseLeasingVO> selectWarehouseLeasingPage(IPage<WarehouseLeasingVO> page, WarehouseLeasingVO warehouseLeasing);
/**
* 导出数据
*
* @param queryWrapper
* @return
*/
List<WarehouseLeasingExcel> exportWarehouseLeasing(Wrapper<WarehouseLeasingEntity> queryWrapper);
ResidualAreaVO residualArea(Long warehouseId);
}

41
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataClientServiceImpl.java

@ -28,10 +28,28 @@ import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.logpm.basic.entity.BasicTenantCodeEntity;
import com.logpm.basic.feign.IBasicTenantCodeClient;
import com.logpm.basicdata.entity.*;
import com.logpm.basicdata.entity.BasicdataBrandEntity;
import com.logpm.basicdata.entity.BasicdataClientEntity;
import com.logpm.basicdata.entity.BasicdataClientLogEntity;
import com.logpm.basicdata.entity.BasicdataHistoricalContractEntity;
import com.logpm.basicdata.entity.BasicdataStorageServicesEntity;
import com.logpm.basicdata.entity.BasicdataStoreBrandEntity;
import com.logpm.basicdata.entity.BasicdataStoreBusinessEntity;
import com.logpm.basicdata.entity.BasicdataStoreContactEntity;
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
import com.logpm.basicdata.excel.BasicdataClientExcel;
import com.logpm.basicdata.mapper.BasicdataClientMapper;
import com.logpm.basicdata.service.*;
import com.logpm.basicdata.service.IBasicdataBrandService;
import com.logpm.basicdata.service.IBasicdataClientLogService;
import com.logpm.basicdata.service.IBasicdataClientService;
import com.logpm.basicdata.service.IBasicdataHistoricalContractService;
import com.logpm.basicdata.service.IBasicdataStorageServicesService;
import com.logpm.basicdata.service.IBasicdataStoreBrandService;
import com.logpm.basicdata.service.IBasicdataStoreBusinessService;
import com.logpm.basicdata.service.IBasicdataStoreContactService;
import com.logpm.basicdata.service.IBasicdataTripartiteMallService;
import com.logpm.basicdata.service.IBasicdataWarehouseService;
import com.logpm.basicdata.vo.BasicdataClientVO;
import com.logpm.basicdata.vo.ClientInfoVO;
import lombok.extern.slf4j.Slf4j;
@ -56,15 +74,21 @@ import org.springblade.system.feign.IRegionFeign;
import org.springblade.system.feign.IUserClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.core.io.Resource;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.security.NoSuchAlgorithmException;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.function.Predicate;
import java.util.stream.Collectors;
@ -398,6 +422,13 @@ public class BasicdataClientServiceImpl extends BaseServiceImpl<BasicdataClientM
);
}
@Override
public List<BasicdataClientEntity> listNameLike(String name) {
return baseMapper.selectList(Wrappers.<BasicdataClientEntity>query().lambda()
.like(StringUtils.isNotBlank(name), BasicdataClientEntity::getClientName, name)
);
}
@Override
@Transactional(rollbackFor = Exception.class)
public Boolean ownDeleteLogic(List<Long> toLongList) {

130
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/WarehouseLeasingServiceImpl.java

@ -0,0 +1,130 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.service.impl;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
import com.logpm.basicdata.entity.WarehouseLeasingEntity;
import com.logpm.basicdata.excel.WarehouseLeasingExcel;
import com.logpm.basicdata.feign.IBasicdataWarehouseClient;
import com.logpm.basicdata.mapper.WarehouseLeasingMapper;
import com.logpm.basicdata.service.IWarehouseLeasingService;
import com.logpm.basicdata.vo.ResidualAreaVO;
import com.logpm.basicdata.vo.WarehouseLeasingVO;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springblade.core.secure.utils.AuthUtil;
import org.springblade.core.tool.api.R;
import org.springblade.system.entity.User;
import org.springblade.system.feign.IUserClient;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.math.BigDecimal;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
/**
* 仓库租用管理 服务实现类
*
* @author zqb
* @since 2024-08-14
*/
@Service
public class WarehouseLeasingServiceImpl extends BaseServiceImpl<WarehouseLeasingMapper, WarehouseLeasingEntity> implements IWarehouseLeasingService {
@Resource
private IUserClient userClient;
@Resource
private IBasicdataWarehouseClient warehouseClient;
@Override
public IPage<WarehouseLeasingVO> selectWarehouseLeasingPage(IPage<WarehouseLeasingVO> page, WarehouseLeasingVO warehouseLeasing) {
List<WarehouseLeasingVO> warehouseLeasingVOS = baseMapper.selectWarehouseLeasingPage(page, warehouseLeasing);
if (CollUtil.isNotEmpty(warehouseLeasingVOS)) {
// 获取修改用户id
Set<Long> collect = new HashSet<>();
warehouseLeasingVOS.forEach(expenseDispatchPriceUnitVO -> {
collect.add(expenseDispatchPriceUnitVO.getCreateUser());
collect.add(expenseDispatchPriceUnitVO.getUpdateUser());
});
if (CollUtil.isNotEmpty(collect)) {
R<List<User>> listR = userClient.userInfoByIds(AuthUtil.getTenantId(), CollUtil.join(collect, StrUtil.COMMA));
if (R.isSuccess(listR)) {
List<User> userList = listR.getData();
// 封装成map
Map<Long, User> userMap = userList.stream().collect(Collectors.toMap(User::getId, user -> user));
warehouseLeasingVOS.forEach(expenseDispatchPriceUnitVO -> {
if (userMap.containsKey(expenseDispatchPriceUnitVO.getCreateUser())) {
expenseDispatchPriceUnitVO.setCreateUserName(userMap.get(expenseDispatchPriceUnitVO.getCreateUser()).getRealName());
expenseDispatchPriceUnitVO.setUpdateUserName(userMap.get(expenseDispatchPriceUnitVO.getUpdateUser()).getRealName());
}
});
}
}
}
return page.setRecords(warehouseLeasingVOS);
}
@Override
public List<WarehouseLeasingExcel> exportWarehouseLeasing(Wrapper<WarehouseLeasingEntity> queryWrapper) {
List<WarehouseLeasingExcel> warehouseLeasingList = baseMapper.exportWarehouseLeasing(queryWrapper);
// warehouseLeasingList.forEach(warehouseLeasing -> {
// warehouseLeasing.setTypeName(DictCache.getValue(DictEnum.YES_NO, WarehouseLeasing.getType()));
//});
return warehouseLeasingList;
}
@Override
public ResidualAreaVO residualArea(Long warehouseId) {
BasicdataWarehouseEntity warehouseEntity = warehouseClient.getEntityWarehouseId(warehouseId);
ResidualAreaVO residualAreaVO = new ResidualAreaVO();
if (warehouseEntity != null) {
BigDecimal acreage = warehouseEntity.getAcreage();
BigDecimal divide = BigDecimal.ZERO;
if (ObjectUtil.isNotEmpty(acreage)) {
if(ObjectUtil.isNotEmpty(warehouseEntity.getTemporaryTurnoverArea())){
divide = acreage.subtract(warehouseEntity.getTemporaryTurnoverArea());
}else{
divide = acreage;
}
if (ObjectUtil.isNotEmpty(warehouseEntity.getSeating())) {
BigDecimal singleStorageArea = divide.divide(new BigDecimal(warehouseEntity.getSeating()), 2, BigDecimal.ROUND_UP);
residualAreaVO.setSingleStorageArea(Convert.toStr(singleStorageArea));
}
}
List<WarehouseLeasingEntity> list = this.list(Wrappers.<WarehouseLeasingEntity>lambdaQuery().eq(WarehouseLeasingEntity::getWarehouseId, warehouseId));
if (CollUtil.isNotEmpty(list)) {
BigDecimal sum = list.stream().map(WarehouseLeasingEntity::getLeasedArea).reduce(BigDecimal.ZERO, BigDecimal::add);
residualAreaVO.setResidualArea(Convert.toStr(divide.subtract(sum)));
}else{
residualAreaVO.setResidualArea(Convert.toStr(divide));
}
}
return residualAreaVO;
}
}

46
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/vo/ResidualAreaVO.java

@ -0,0 +1,46 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
/**
* 剩余面积
*
* @author zqb
* @since 2024-08-14
*/
@Data
public class ResidualAreaVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 剩余可用面积
*/
@ApiModelProperty(value = "剩余可用面积")
private String residualArea;
/**
* 单库位面积
*/
@ApiModelProperty(value = "单库位面积")
private String singleStorageArea;
}

65
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/vo/WarehouseLeasingVO.java

@ -0,0 +1,65 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.vo;
import com.logpm.basicdata.entity.WarehouseLeasingEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 仓库租用管理 视图实体类
*
* @author zqb
* @since 2024-08-14
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WarehouseLeasingVO extends WarehouseLeasingEntity {
private static final long serialVersionUID = 1L;
/**
* 仓库名称
*/
@ApiModelProperty(value = "仓库名称")
private String warehouseName;
/**
* 是否过期
*/
@ApiModelProperty(value = "是否过期")
private String expired;
/**
* 客户名称
*/
@ApiModelProperty(value = "客户名称")
private String clientName;
/**
* 修改人名称
*/
@ApiModelProperty(value = "修改人名称")
private String updateUserName;
/**
* 创建人名称
*/
@ApiModelProperty(value = "创建人名称")
private String createUserName;
}

50
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/wrapper/WarehouseLeasingWrapper.java

@ -0,0 +1,50 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.wrapper;
import org.springblade.core.mp.support.BaseEntityWrapper;
import org.springblade.core.tool.utils.BeanUtil;
import com.logpm.basicdata.entity.WarehouseLeasingEntity;
import com.logpm.basicdata.vo.WarehouseLeasingVO;
import java.util.Objects;
/**
* 仓库租用管理 包装类,返回视图层所需的字段
*
* @author zqb
* @since 2024-08-14
*/
public class WarehouseLeasingWrapper extends BaseEntityWrapper<WarehouseLeasingEntity, WarehouseLeasingVO> {
public static WarehouseLeasingWrapper build() {
return new WarehouseLeasingWrapper();
}
@Override
public WarehouseLeasingVO entityVO(WarehouseLeasingEntity warehouseLeasing) {
WarehouseLeasingVO warehouseLeasingVO = Objects.requireNonNull(BeanUtil.copy(warehouseLeasing, WarehouseLeasingVO.class));
//User createUser = UserCache.getUser(warehouseLeasing.getCreateUser());
//User updateUser = UserCache.getUser(warehouseLeasing.getUpdateUser());
//warehouseLeasingVO.setCreateUserName(createUser.getName());
//warehouseLeasingVO.setUpdateUserName(updateUser.getName());
return warehouseLeasingVO;
}
}
Loading…
Cancel
Save