Compare commits
2 Commits
6ed92f3bf9
...
3958bfad7d
| Author | SHA1 | Date |
|---|---|---|
|
|
3958bfad7d | |
|
|
8d2181b7f7 |
|
|
@ -34,21 +34,29 @@ public class DevInfo extends BaseEntity {
|
|||
@ApiModelProperty(value = "主键id")
|
||||
private Integer id;
|
||||
|
||||
/** 设备id */
|
||||
/**
|
||||
* 设备id
|
||||
*/
|
||||
@Excel(name = "设备id")
|
||||
@ApiModelProperty(value = "设备id")
|
||||
private Long maId;
|
||||
|
||||
/** 设备id数组 */
|
||||
/**
|
||||
* 设备id数组
|
||||
*/
|
||||
@ApiModelProperty(value = "设备id数组")
|
||||
private List<Long> maIds;
|
||||
|
||||
/** 设备编码 */
|
||||
/**
|
||||
* 设备编码
|
||||
*/
|
||||
@Excel(name = "设备编码")
|
||||
@ApiModelProperty(value = "设备编码")
|
||||
private String code;
|
||||
|
||||
/** 设备唯一标识符,用户输入,比如车架号 */
|
||||
/**
|
||||
* 设备唯一标识符,用户输入,比如车架号
|
||||
*/
|
||||
@Excel(name = "设备唯一标识符")
|
||||
@ApiModelProperty(value = "设备唯一标识符")
|
||||
private String identifyCode;
|
||||
|
|
@ -74,7 +82,9 @@ public class DevInfo extends BaseEntity {
|
|||
@NotBlank(message = "单位不能为空")
|
||||
private String unitName;
|
||||
|
||||
/** 类型id */
|
||||
/**
|
||||
* 类型id
|
||||
*/
|
||||
@Excel(name = "类型id")
|
||||
@ApiModelProperty(value = "类型id")
|
||||
@NotNull
|
||||
|
|
@ -83,22 +93,30 @@ public class DevInfo extends BaseEntity {
|
|||
@ApiModelProperty(value = "装备类别")
|
||||
private String typeName;
|
||||
|
||||
/** 设备状态(自有,待上架,上架,在租,下架)考虑数据字典 */
|
||||
/**
|
||||
* 设备状态(自有,待上架,上架,在租,下架)考虑数据字典
|
||||
*/
|
||||
@Excel(name = "设备状态(自有,待上架,上架,在租,下架)考虑数据字典")
|
||||
@ApiModelProperty(value = "设备状态(自有,待上架,上架,在租,下架)考虑数据字典")
|
||||
private Integer maStatus;
|
||||
|
||||
/** 设备状态(自有,待上架,上架,在租,下架)考虑数据字典 */
|
||||
/**
|
||||
* 设备状态(自有,待上架,上架,在租,下架)考虑数据字典
|
||||
*/
|
||||
@Excel(name = "设备状态(自有,待上架,上架,在租,下架)考虑数据字典")
|
||||
@ApiModelProperty(value = "设备状态(自有,待上架,上架,在租,下架)考虑数据字典")
|
||||
private String maStatusName;
|
||||
|
||||
/** 租赁范围 */
|
||||
/**
|
||||
* 租赁范围
|
||||
*/
|
||||
@Excel(name = "租赁范围")
|
||||
@ApiModelProperty(value = "租赁范围")
|
||||
private Long leaseScope;
|
||||
|
||||
/** 设备所在地 */
|
||||
/**
|
||||
* 设备所在地
|
||||
*/
|
||||
@Excel(name = "设备所在地")
|
||||
@ApiModelProperty(value = "设备所在地")
|
||||
private String location;
|
||||
|
|
@ -115,75 +133,103 @@ public class DevInfo extends BaseEntity {
|
|||
@ApiModelProperty(value = "设备所在区id")
|
||||
private Integer areaId;
|
||||
|
||||
/** 设备品牌 */
|
||||
/**
|
||||
* 设备品牌
|
||||
*/
|
||||
@Excel(name = "设备品牌")
|
||||
@ApiModelProperty(value = "设备品牌")
|
||||
@NotBlank
|
||||
private String brand;
|
||||
|
||||
/** 设备型号 */
|
||||
/**
|
||||
* 设备型号
|
||||
*/
|
||||
@Excel(name = "设备型号")
|
||||
@ApiModelProperty(value = "设备型号")
|
||||
private String modelName;
|
||||
|
||||
/** 出厂日期 */
|
||||
/**
|
||||
* 出厂日期
|
||||
*/
|
||||
@Excel(name = "出厂日期")
|
||||
@ApiModelProperty(value = "出厂日期")
|
||||
@NotNull
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date productionDate;
|
||||
|
||||
/** 工作时长 */
|
||||
/**
|
||||
* 工作时长
|
||||
*/
|
||||
@Excel(name = "工作时长")
|
||||
@ApiModelProperty(value = "工作时长")
|
||||
private String workingHours;
|
||||
|
||||
/** 整机序列号 */
|
||||
/**
|
||||
* 整机序列号
|
||||
*/
|
||||
@Excel(name = "整机序列号")
|
||||
@ApiModelProperty(value = "整机序列号")
|
||||
private String serialNumber;
|
||||
|
||||
/** 设备月租价 */
|
||||
/**
|
||||
* 设备月租价
|
||||
*/
|
||||
@Excel(name = "设备月租价")
|
||||
@ApiModelProperty(value = "设备月租价")
|
||||
private Float monthLeasePrice;
|
||||
|
||||
/** 设备天租价 */
|
||||
/**
|
||||
* 设备天租价
|
||||
*/
|
||||
@Excel(name = "设备天租价")
|
||||
@ApiModelProperty(value = "设备天租价")
|
||||
@NotNull
|
||||
private Float dayLeasePrice;
|
||||
|
||||
/** 设备主照片 */
|
||||
/**
|
||||
* 设备主照片
|
||||
*/
|
||||
@Excel(name = "设备主照片")
|
||||
@ApiModelProperty(value = "设备主照片")
|
||||
private String picUrl;
|
||||
|
||||
/** 机手月租金 */
|
||||
/**
|
||||
* 机手月租金
|
||||
*/
|
||||
@Excel(name = "机手月租金")
|
||||
@ApiModelProperty(value = "机手月租金")
|
||||
private Float jsMonthPrice;
|
||||
|
||||
/** 机手天租金 */
|
||||
/**
|
||||
* 机手天租金
|
||||
*/
|
||||
@Excel(name = "机手天租金")
|
||||
@ApiModelProperty(value = "机手天租金")
|
||||
private Float jsDayPrice;
|
||||
|
||||
/** 详细描述 */
|
||||
/**
|
||||
* 详细描述
|
||||
*/
|
||||
@Excel(name = "详细描述")
|
||||
@ApiModelProperty(value = "详细描述")
|
||||
private String description;
|
||||
|
||||
/** gps编号 */
|
||||
/**
|
||||
* gps编号
|
||||
*/
|
||||
@Excel(name = "gps编号")
|
||||
@ApiModelProperty(value = "gps编号")
|
||||
private String gpsCode;
|
||||
|
||||
/** 设备所属公司--废弃不用 */
|
||||
/**
|
||||
* 设备所属公司--废弃不用
|
||||
*/
|
||||
@ApiModelProperty(value = "设备所属公司--废弃")
|
||||
private Long ownCo;
|
||||
|
||||
/** 创建人 */
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@Excel(name = "创建人")
|
||||
@ApiModelProperty(value = "创建人")
|
||||
private Long creator;
|
||||
|
|
@ -197,32 +243,40 @@ public class DevInfo extends BaseEntity {
|
|||
@Size(min = 11, max = 11, message = "手机号长度不能超过11位")
|
||||
private String personPhone;
|
||||
|
||||
/** 设备规格 */
|
||||
/**
|
||||
* 设备规格
|
||||
*/
|
||||
@Excel(name = "设备规格")
|
||||
@ApiModelProperty(value = "设备规格")
|
||||
private String specification;
|
||||
|
||||
/** 订金 */
|
||||
/**
|
||||
* 订金
|
||||
*/
|
||||
@Excel(name = "订金")
|
||||
@ApiModelProperty(value = "订金")
|
||||
private BigDecimal deposit;
|
||||
|
||||
/** 是否删除 */
|
||||
/**
|
||||
* 是否删除
|
||||
*/
|
||||
@Excel(name = "是否配备机手")
|
||||
@ApiModelProperty(value = "是否配备机手")
|
||||
private String isOperator;
|
||||
|
||||
/** 是否删除 */
|
||||
/**
|
||||
* 是否删除
|
||||
*/
|
||||
@Excel(name = "是否删除")
|
||||
@ApiModelProperty(value = "是否删除")
|
||||
private String isActive;
|
||||
|
||||
@ApiModelProperty(value = "主展示图")
|
||||
@NotEmpty(message = "主展示图不能为空")
|
||||
//@NotEmpty(message = "主展示图不能为空")
|
||||
private List<BmFileInfo> mainFileList = new ArrayList<>();
|
||||
|
||||
@ApiModelProperty(value = "详情页展示图")
|
||||
@NotEmpty(message = "详情页展示图不能为空")
|
||||
//@NotEmpty(message = "详情页展示图不能为空")
|
||||
private List<BmFileInfo> detailsFileList = new ArrayList<>();
|
||||
|
||||
@ApiModelProperty(value = "检测证明pdf")
|
||||
|
|
@ -233,7 +287,9 @@ public class DevInfo extends BaseEntity {
|
|||
|
||||
private List<Table> tableList;
|
||||
|
||||
/**文件附件*/
|
||||
/**
|
||||
* 文件附件
|
||||
*/
|
||||
@ApiModelProperty(value = "文件附件")
|
||||
private List<BmFileInfo> bmFileInfoList;
|
||||
|
||||
|
|
@ -305,4 +361,6 @@ public class DevInfo extends BaseEntity {
|
|||
|
||||
@ApiModelProperty(value = "承租方联系人")
|
||||
private String lesseePerson;
|
||||
|
||||
private String type;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@ package com.bonus.material.device.service.impl;
|
|||
|
||||
import cn.hutool.core.collection.CollectionUtil;
|
||||
import cn.hutool.core.util.BooleanUtil;
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import cn.hutool.core.util.PhoneUtil;
|
||||
import com.alibaba.druid.sql.visitor.functions.If;
|
||||
import com.bonus.common.biz.constant.MaterialConstants;
|
||||
import com.bonus.common.biz.domain.*;
|
||||
import com.bonus.common.biz.enums.HttpCodeEnum;
|
||||
|
|
@ -46,6 +48,7 @@ import org.springframework.web.multipart.MultipartFile;
|
|||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import javax.validation.Validator;
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
|
|
@ -398,12 +401,22 @@ public class DevInfoServiceImpl implements DevInfoService {
|
|||
if (devInfo == null) {
|
||||
return AjaxResult.error("设备信息不能为空");
|
||||
}
|
||||
if (!"2".equals(devInfo.getType())) {
|
||||
if (ObjectUtil.isEmpty(devInfo.getMainFileList())) {
|
||||
return AjaxResult.error("主展示图不能为空");
|
||||
}
|
||||
if (ObjectUtil.isEmpty(devInfo.getDetailsFileList())) {
|
||||
return AjaxResult.error("详情页展示图不能为空");
|
||||
}
|
||||
}
|
||||
String code = "";
|
||||
for (int i = 0; i < devInfo.getTableList().size(); i++) {
|
||||
//获取用户信息
|
||||
Long userId = SecurityUtils.getLoginUser().getUserid();
|
||||
//保存用户信息
|
||||
devInfo.setCreator(userId).setMaStatus(ON_HIRE.getCode()).setOwnId(userId);
|
||||
devInfo.setCreator(userId)
|
||||
/*.setMaStatus(ON_HIRE.getCode())*/
|
||||
.setOwnId(userId);
|
||||
if (org.apache.commons.lang3.StringUtils.isBlank(code)) {
|
||||
code = getString();
|
||||
}
|
||||
|
|
@ -599,21 +612,35 @@ public class DevInfoServiceImpl implements DevInfoService {
|
|||
int i = devInfoMapper.updateDevInfo(devInfo);
|
||||
devInfoMapper.updateTypeLeasePrice(devInfo);
|
||||
|
||||
Integer id = tableList.get(0).getId();
|
||||
if (id != null) {
|
||||
MaDevQc maDevQc = new MaDevQc();
|
||||
maDevQc.setId(id).setQcUser(tableList.get(0).getCheckMan()).setQcTime(tableList.get(0).getCheckDate()).setNextCheckTime(tableList.get(0).getNextCheckDate());
|
||||
maDevQcMapper.updateById(maDevQc);
|
||||
}
|
||||
if (i > 0) {
|
||||
BmFileInfo bmFileInfo = new BmFileInfo()
|
||||
.setTaskType(MaterialConstants.MATERIAL_FILE_TYPE_CODE)
|
||||
.setModelId(devInfo.getMaId());
|
||||
bmFileInfoMapper.deleteBmFileInfoByBizInfo(bmFileInfo);
|
||||
}
|
||||
|
||||
Integer id = tableList.get(0).getId();
|
||||
if (id != null) {
|
||||
MaDevQc maDevQc = new MaDevQc();
|
||||
maDevQc.setId(id).setQcUser(tableList.get(0).getCheckMan()).setQcTime(tableList.get(0).getCheckDate()).setNextCheckTime(tableList.get(0).getNextCheckDate());
|
||||
maDevQcMapper.updateById(maDevQc);
|
||||
Long userId = SecurityUtils.getLoginUser().getUserid();
|
||||
Table table = tableList.get(0);
|
||||
uploadFile(table, devInfo, userId);
|
||||
} else {
|
||||
Long userId = SecurityUtils.getLoginUser().getUserid();
|
||||
//把文件保存到附件中
|
||||
Table table = devInfo.getTableList().get(0);
|
||||
AjaxResult error = uploadFiles(table, devInfo, userId, 0);
|
||||
if (error != null) {
|
||||
return error;
|
||||
}
|
||||
}
|
||||
/* if (i > 0) {
|
||||
Long userId = SecurityUtils.getLoginUser().getUserid();
|
||||
Table table = tableList.get(0);
|
||||
uploadFile(table, devInfo, userId);
|
||||
}*/
|
||||
return i > 0 ? AjaxResult.success("修改成功") : AjaxResult.error("修改失败");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue