Merge branch 'cc_20250609_takeoutBuild' into 'master'

Cc 20250609 takeout build

See merge request hangzhou/java/custom_zxjp!113
This commit is contained in:
苏竹红
2025-06-11 10:29:48 +00:00
10 changed files with 210 additions and 15 deletions

View File

@@ -3,10 +3,12 @@ package com.cool.store.dao;
import com.cool.store.entity.BuildInformationDO; import com.cool.store.entity.BuildInformationDO;
import com.cool.store.entity.PlatformBuildDO; import com.cool.store.entity.PlatformBuildDO;
import com.cool.store.mapper.PlatformBuildMapper; import com.cool.store.mapper.PlatformBuildMapper;
import org.apache.commons.collections4.CollectionUtils;
import org.springframework.stereotype.Repository; import org.springframework.stereotype.Repository;
import tk.mybatis.mapper.entity.Example; import tk.mybatis.mapper.entity.Example;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.List;
/** /**
* @Author: WangShuo * @Author: WangShuo
@@ -42,4 +44,18 @@ public class PlatformBuildDAO {
example.createCriteria().andEqualTo("shopId",shopId).andEqualTo("type",type); example.createCriteria().andEqualTo("shopId",shopId).andEqualTo("type",type);
return platformBuildMapper.selectOneByExample(example); return platformBuildMapper.selectOneByExample(example);
} }
public List<PlatformBuildDO> selectByShopId(Long shopId) {
Example example = new Example(PlatformBuildDO.class);
example.createCriteria().andEqualTo("shopId",shopId);
return platformBuildMapper.selectByExample(example);
}
public Boolean batchUpdate(List<PlatformBuildDO> platformBuildDOList) {
if (CollectionUtils.isEmpty(platformBuildDOList)) {
return false;
}
for (PlatformBuildDO platformBuildDO : platformBuildDOList){
platformBuildMapper.updateByPrimaryKeySelective(platformBuildDO);
}
return true;
}
} }

View File

@@ -19,6 +19,7 @@
<result property="juridicalHandheldIdCardReverse" column="juridical_handheld_id_card_reverse" <result property="juridicalHandheldIdCardReverse" column="juridical_handheld_id_card_reverse"
jdbcType="VARCHAR"/> jdbcType="VARCHAR"/>
<result property="juridicalIdCardNo" column="juridical_id_card_no" jdbcType="VARCHAR"/> <result property="juridicalIdCardNo" column="juridical_id_card_no" jdbcType="VARCHAR"/>
<result property="juridicalName" column="juridical_name" jdbcType="VARCHAR"/>
<result property="settlerName" column="settler_name" jdbcType="VARCHAR"/> <result property="settlerName" column="settler_name" jdbcType="VARCHAR"/>
<result property="settlerIdCardFront" column="settler_id_card_front" jdbcType="VARCHAR"/> <result property="settlerIdCardFront" column="settler_id_card_front" jdbcType="VARCHAR"/>
<result property="settlerIdCardReverse" column="settler_id_card_reverse" jdbcType="VARCHAR"/> <result property="settlerIdCardReverse" column="settler_id_card_reverse" jdbcType="VARCHAR"/>
@@ -51,7 +52,7 @@
settler_id_card_front,settler_id_card_reverse,settler_in_hand_front_picture,settler_in_hand_back_picture,settler_id_card_no, settler_id_card_front,settler_id_card_reverse,settler_in_hand_front_picture,settler_in_hand_back_picture,settler_id_card_no,
settler_bank_number,settler_bank_mobile,settler_bank_name, settler_bank_number,settler_bank_mobile,settler_bank_name,
create_time,update_time,create_user, create_time,update_time,create_user,
update_user,c_shop_name,settler_bank_back_photo_url,settler_is_same_partner,juridical_is_same_partner update_user,c_shop_name,settler_bank_back_photo_url,settler_is_same_partner,juridical_is_same_partner,juridical_name
</sql> </sql>
<insert id="batchInsertSpecific"> <insert id="batchInsertSpecific">
<foreach collection="list" item="item" index="index" separator=";"> <foreach collection="list" item="item" index="index" separator=";">

View File

@@ -82,6 +82,12 @@ public class BuildInformationDO {
@Column(name = "juridical_id_card_no") @Column(name = "juridical_id_card_no")
private String juridicalIdCardNo; private String juridicalIdCardNo;
/**
* 法人姓名
*/
@Column(name = "juridical_name")
private String juridicalName;
/** /**
* 法人手持身份证正面(图片) * 法人手持身份证正面(图片)
*/ */

View File

@@ -76,6 +76,9 @@ public class BuildInformationRequest {
@Length(max = 18, message = "法人身份证号长度必须为18位") @Length(max = 18, message = "法人身份证号长度必须为18位")
@ApiModelProperty("法人身份证号") @ApiModelProperty("法人身份证号")
private String juridicalIdCardNo; private String juridicalIdCardNo;
@ApiModelProperty("法人姓名")
@JsonProperty("juridicalName")
private String juridicalName;
@NotBlank(message = "法人手持身份证正面 不能为空") @NotBlank(message = "法人手持身份证正面 不能为空")
@Length(max = 250 , message = "法人手持身份证正面 长度不能超过250") @Length(max = 250 , message = "法人手持身份证正面 长度不能超过250")
@@ -193,6 +196,7 @@ public class BuildInformationRequest {
buildInformationDO.setDoorPhoto(this.doorPhoto); buildInformationDO.setDoorPhoto(this.doorPhoto);
buildInformationDO.setInStorePhoto(this.inStorePhoto); buildInformationDO.setInStorePhoto(this.inStorePhoto);
buildInformationDO.setJuridicalIdCardNo(this.juridicalIdCardNo); buildInformationDO.setJuridicalIdCardNo(this.juridicalIdCardNo);
buildInformationDO.setJuridicalName(this.juridicalName);
buildInformationDO.setJuridicalIdCardFront(this.juridicalIdCardFront); buildInformationDO.setJuridicalIdCardFront(this.juridicalIdCardFront);
buildInformationDO.setJuridicalIdCardReverse(this.juridicalIdCardReverse); buildInformationDO.setJuridicalIdCardReverse(this.juridicalIdCardReverse);
buildInformationDO.setJuridicalHandheldIdCardFront(this.juridicalHandheldIdCardFront); buildInformationDO.setJuridicalHandheldIdCardFront(this.juridicalHandheldIdCardFront);

View File

@@ -0,0 +1,82 @@
package com.cool.store.request;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
/**
* @Author: WangShuo
* @Date: 2025/06/10/09:33
* @Version 1.0
* @注释:
*/
@Data
public class BuildSettlerRequest {
@NotNull
private Long shopId;
@ApiModelProperty("结算人身份证信息是否和加盟商一致false否true是")
@NotNull(message = "结算人身份证信息是否和加盟商一致不能为空")
private Boolean settlerIsSamePartner ;
// @ApiModelProperty("结算人姓名")
@NotBlank(message = "结算人姓名 不能为空")
@JsonProperty("settlerName")
private String settlerName;
// @NotBlank(message = "结算人身份证正面 不能为空")
@Length(max = 250 , message = "结算人身份证正面 长度不能超过250")
@ApiModelProperty("结算人身份证正面(图片)")
private String settlerIdCardFront;
@NotBlank(message = "结算人手持身份证正面 不能为空")
@Length(max = 250 , message = "结算人手持身份证正面 长度不能超过250")
@ApiModelProperty("结算人手持身份证正面")
private String settlerInHandFrontPicture;
@NotBlank(message = "结算人手持身份证反面 不能为空")
@Length(max = 250 , message = "结算人手持身份证反面 长度不能超过250")
@ApiModelProperty("结算人手持身份证反面 (图片)")
private String settlerInHandBackPicture;
// @NotBlank(message = "结算人身份证反面 不能为空")
@Length(max = 250 , message = "结算人身份证反面 长度不能超过250")
@ApiModelProperty("结算人身份证反面(图片)")
private String settlerIdCardReverse;
// @NotBlank(message = "结算人身份证号 不能为空")
@Length(max = 64 , message = "结算人身份证号 长度不能超过64")
@ApiModelProperty("结算人身份证号")
private String settlerIdCardNo;
@NotBlank(message = "结算人银行卡照片 不能为空")
@Length(max = 250, message = "结算人银行卡照片 长度不能超过250")
@ApiModelProperty("结算人银行卡照片")
private String settlerBankPhotoUrl;
@NotBlank(message = "结算人银行卡背面照片 不能为空")
@Length(max = 250, message = "结算人银行卡背面照片 长度不能超过250")
@ApiModelProperty("结算人银行卡背面照片")
@JsonProperty("settlerBankBackPhotoUrl")
private String settlerBankBackPhotoUrl;
@NotBlank(message = "结算人银行卡号 不能为空")
@Length(max = 64 , message = "结算人银行卡号 长度不能超过64")
@ApiModelProperty("结算人银行卡号")
private String settlerBankNumber;
@NotBlank(message = "结算人银行卡预留手机号 不能为空")
@Length(min = 11,max = 11 , message = "结算人银行卡预留手机号 长度必须为11")
@ApiModelProperty("结算人银行卡预留手机号")
private String settlerBankMobile;
@NotBlank(message = "结算开户银行支行 不能为空")
@Length(max =100, message = "结算开户银行支行 长度不能超过100")
@ApiModelProperty("结算开户银行支行")
private String settlerBankName;
}

View File

@@ -68,6 +68,9 @@ public class BuildInformationResponse {
@ApiModelProperty("法人身份证号") @ApiModelProperty("法人身份证号")
private String juridicalIdCardNo; private String juridicalIdCardNo;
@ApiModelProperty("法人姓名")
private String juridicalName;
@ApiModelProperty("法人手持身份证正面(图片)") @ApiModelProperty("法人手持身份证正面(图片)")
private String juridicalHandheldIdCardFront; private String juridicalHandheldIdCardFront;

View File

@@ -2,6 +2,7 @@ package com.cool.store.service;
import com.cool.store.request.BuildInformationRequest; import com.cool.store.request.BuildInformationRequest;
import com.cool.store.request.BuildSettlerRequest;
import com.cool.store.response.BuildInformationResponse; import com.cool.store.response.BuildInformationResponse;
/** /**
@@ -17,4 +18,6 @@ public interface BuildInformationService {
Integer getJoinType(Long lineId); Integer getJoinType(Long lineId);
Boolean updateBuildSettler(BuildSettlerRequest request,String userId);
} }

View File

@@ -10,6 +10,7 @@ import com.cool.store.enums.point.ShopSubStageStatusEnum;
import com.cool.store.exception.ServiceException; import com.cool.store.exception.ServiceException;
import com.cool.store.mapper.WarehouseInfoMapper; import com.cool.store.mapper.WarehouseInfoMapper;
import com.cool.store.request.BuildInformationRequest; import com.cool.store.request.BuildInformationRequest;
import com.cool.store.request.BuildSettlerRequest;
import com.cool.store.response.BuildInformationResponse; import com.cool.store.response.BuildInformationResponse;
import com.cool.store.service.BuildInformationService; import com.cool.store.service.BuildInformationService;
import com.cool.store.mapper.BuildInformationMapper; import com.cool.store.mapper.BuildInformationMapper;
@@ -38,6 +39,8 @@ import java.util.stream.Stream;
*/ */
@Service @Service
public class BuildInformationServiceImpl implements BuildInformationService { public class BuildInformationServiceImpl implements BuildInformationService {
@Resource
private PlatformBuildDAO platformBuildDAO;
@Resource @Resource
private EnumInfoService enumInfoService; private EnumInfoService enumInfoService;
@Resource @Resource
@@ -164,6 +167,7 @@ public class BuildInformationServiceImpl implements BuildInformationService {
response.setDoorPhoto(informationDO.getDoorPhoto()); response.setDoorPhoto(informationDO.getDoorPhoto());
response.setInStorePhoto(informationDO.getInStorePhoto()); response.setInStorePhoto(informationDO.getInStorePhoto());
response.setJuridicalIdCardFront(informationDO.getJuridicalIdCardFront()); response.setJuridicalIdCardFront(informationDO.getJuridicalIdCardFront());
response.setJuridicalName(informationDO.getJuridicalName());
response.setJuridicalIdCardNo(informationDO.getJuridicalIdCardNo()); response.setJuridicalIdCardNo(informationDO.getJuridicalIdCardNo());
response.setJuridicalIdCardReverse(informationDO.getJuridicalIdCardReverse()); response.setJuridicalIdCardReverse(informationDO.getJuridicalIdCardReverse());
response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse()); response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse());
@@ -210,6 +214,7 @@ public class BuildInformationServiceImpl implements BuildInformationService {
LineInfoDO lineInfoDO = lineInfoDAO.getLineInfo(shopInfoDO.getLineId()); LineInfoDO lineInfoDO = lineInfoDAO.getLineInfo(shopInfoDO.getLineId());
QualificationsInfoDO qualificationsInfoDO = qualificationsInfoDAO.getByLineId(lineInfoDO.getId()); QualificationsInfoDO qualificationsInfoDO = qualificationsInfoDAO.getByLineId(lineInfoDO.getId());
if (request.getJuridicalIsSamePartner()) { if (request.getJuridicalIsSamePartner()) {
buildInformationDO.setJuridicalName(lineInfoDO.getUsername());
buildInformationDO.setJuridicalIdCardNo(qualificationsInfoDO.getIdCardNo()); buildInformationDO.setJuridicalIdCardNo(qualificationsInfoDO.getIdCardNo());
buildInformationDO.setJuridicalIdCardFront(qualificationsInfoDO.getFrontOfIdCard()); buildInformationDO.setJuridicalIdCardFront(qualificationsInfoDO.getFrontOfIdCard());
buildInformationDO.setJuridicalIdCardReverse(qualificationsInfoDO.getBackOfIdCard()); buildInformationDO.setJuridicalIdCardReverse(qualificationsInfoDO.getBackOfIdCard());
@@ -239,6 +244,22 @@ public class BuildInformationServiceImpl implements BuildInformationService {
return buildInformationDAO.insertSelective(buildInformationDO); return buildInformationDAO.insertSelective(buildInformationDO);
} else { } else {
buildInformationDO.setUpdateTime(new Date()); buildInformationDO.setUpdateTime(new Date());
List<PlatformBuildDO> platformBuildDOS = platformBuildDAO.selectByShopId(request.getShopId());
if (CollectionUtils.isNotEmpty(platformBuildDOS)){
for (PlatformBuildDO platformBuildDO : platformBuildDOS){
platformBuildDO.setSettlerName(buildInformationDO.getSettlerName());
platformBuildDO.setSettlerIdCardFront(buildInformationDO.getSettlerIdCardFront());
platformBuildDO.setSettlerIdCardReverse(buildInformationDO.getSettlerIdCardReverse());
platformBuildDO.setSettlerInHandBackPicture(buildInformationDO.getSettlerInHandBackPicture());
platformBuildDO.setSettlerInHandFrontPicture(buildInformationDO.getSettlerInHandFrontPicture());
platformBuildDO.setSettlerIdCardNo(buildInformationDO.getSettlerIdCardNo());
platformBuildDO.setSettlerBankPhotoUrl(buildInformationDO.getSettlerBankPhotoUrl());
platformBuildDO.setSettlerBankNumber(buildInformationDO.getSettlerBankNumber());
platformBuildDO.setSettlerBankMobile(buildInformationDO.getSettlerBankMobile());
platformBuildDO.setSettlerBankName(buildInformationDO.getSettlerBankName());
}
}
platformBuildDAO.batchUpdate(platformBuildDOS);
return buildInformationDAO.updateByShopIdSelective(buildInformationDO); return buildInformationDAO.updateByShopIdSelective(buildInformationDO);
} }
}else{ }else{
@@ -275,6 +296,54 @@ public class BuildInformationServiceImpl implements BuildInformationService {
return qualificationsInfoDO.getJoinType(); return qualificationsInfoDO.getJoinType();
} }
@Override
@Transactional(rollbackFor = Exception.class)
public Boolean updateBuildSettler(BuildSettlerRequest request,String userId) {
ShopInfoDO shopInfo = shopInfoDAO.getShopInfo(request.getShopId());
LineInfoDO lineInfoDO = lineInfoDAO.getLineInfo(shopInfo.getLineId());
QualificationsInfoDO qualificationsInfoDO = qualificationsInfoDAO.getByLineId(shopInfo.getLineId());
BuildInformationDO buildInformationDO = buildInformationDAO.selectOneByShopId(request.getShopId());
if (request.getSettlerIsSamePartner()) {
buildInformationDO.setSettlerIdCardNo(qualificationsInfoDO.getIdCardNo());
buildInformationDO.setSettlerName(lineInfoDO.getUsername());
buildInformationDO.setSettlerIdCardFront(qualificationsInfoDO.getFrontOfIdCard());
buildInformationDO.setSettlerIdCardReverse(qualificationsInfoDO.getBackOfIdCard());
}else{
buildInformationDO.setSettlerName(request.getSettlerName());
buildInformationDO.setSettlerIdCardNo(request.getSettlerIdCardNo());
buildInformationDO.setSettlerIdCardFront(request.getSettlerIdCardFront());
buildInformationDO.setSettlerIdCardReverse(request.getSettlerIdCardReverse());
}
buildInformationDO.setSettlerIsSamePartner(request.getSettlerIsSamePartner());
buildInformationDO.setSettlerInHandBackPicture(request.getSettlerInHandBackPicture());
buildInformationDO.setSettlerInHandFrontPicture(request.getSettlerInHandFrontPicture());
buildInformationDO.setSettlerBankPhotoUrl(request.getSettlerBankPhotoUrl());
buildInformationDO.setSettlerBankNumber(request.getSettlerBankNumber());
buildInformationDO.setSettlerBankMobile(request.getSettlerBankMobile());
buildInformationDO.setSettlerBankName(request.getSettlerBankName());
buildInformationDO.setSettlerBankBackPhotoUrl(request.getSettlerBankBackPhotoUrl());
buildInformationDO.setUpdateTime(new Date());
buildInformationDO.setUpdateUser(userId);
buildInformationDAO.updateByShopIdSelective(buildInformationDO);
List<PlatformBuildDO> platformBuildDOS = platformBuildDAO.selectByShopId(request.getShopId());
if (CollectionUtils.isNotEmpty(platformBuildDOS)){
for (PlatformBuildDO platformBuildDO : platformBuildDOS){
platformBuildDO.setSettlerName(buildInformationDO.getSettlerName());
platformBuildDO.setSettlerIdCardFront(buildInformationDO.getSettlerIdCardFront());
platformBuildDO.setSettlerIdCardReverse(buildInformationDO.getSettlerIdCardReverse());
platformBuildDO.setSettlerInHandBackPicture(buildInformationDO.getSettlerInHandBackPicture());
platformBuildDO.setSettlerInHandFrontPicture(buildInformationDO.getSettlerInHandFrontPicture());
platformBuildDO.setSettlerIdCardNo(buildInformationDO.getSettlerIdCardNo());
platformBuildDO.setSettlerBankPhotoUrl(buildInformationDO.getSettlerBankPhotoUrl());
platformBuildDO.setSettlerBankNumber(buildInformationDO.getSettlerBankNumber());
platformBuildDO.setSettlerBankMobile(buildInformationDO.getSettlerBankMobile());
platformBuildDO.setSettlerBankName(buildInformationDO.getSettlerBankName());
}
}
platformBuildDAO.batchUpdate(platformBuildDOS);
return true;
}
} }

View File

@@ -345,7 +345,7 @@ public class PlatformBuildServiceImpl implements PlatformBuildService {
dto.setElMeStageStatus(stageDTO.getShopSubStageStatus()); dto.setElMeStageStatus(stageDTO.getShopSubStageStatus());
} else if (stageDTO.getShopSubStage().equals(ShopSubStageEnum.SHOP_STAGE_22.getShopSubStage())) { } else if (stageDTO.getShopSubStage().equals(ShopSubStageEnum.SHOP_STAGE_22.getShopSubStage())) {
dto.setKsStageStatus(stageDTO.getShopSubStageStatus()); dto.setKsStageStatus(stageDTO.getShopSubStageStatus());
}else if (stageDTO.getShopSubStage().equals(ShopSubStageEnum.SHOP_STAGE_25.getShopSubStage())) { } else if (stageDTO.getShopSubStage().equals(ShopSubStageEnum.SHOP_STAGE_25.getShopSubStage())) {
dto.setJDStageStatus(stageDTO.getShopSubStageStatus()); dto.setJDStageStatus(stageDTO.getShopSubStageStatus());
} }
} }
@@ -364,15 +364,11 @@ public class PlatformBuildServiceImpl implements PlatformBuildService {
QualificationsInfoDO qualificationsInfoDO = qualificationsInfoDAO.getByLineId(shopInfo.getLineId()); QualificationsInfoDO qualificationsInfoDO = qualificationsInfoDAO.getByLineId(shopInfo.getLineId());
BuildInformationDO informationDO = buildInformationDAO.selectOneByShopId(shopId); BuildInformationDO informationDO = buildInformationDAO.selectOneByShopId(shopId);
LicenseTransactDO licenseTransactDO = applyLicenseMapper.selectByShopId(shopId); LicenseTransactDO licenseTransactDO = applyLicenseMapper.selectByShopId(shopId);
if (Objects.nonNull(qualificationsInfoDO)) { platformBuildResponse.setLegalName(informationDO.getJuridicalName());
platformBuildResponse.setLegalName(qualificationsInfoDO.getLegalName()); platformBuildResponse.setLegalIdCardFront(informationDO.getJuridicalIdCardFront());
platformBuildResponse.setLegalIdCardFront(qualificationsInfoDO.getLegalIdCardFront()); platformBuildResponse.setLegalIdCardBack(informationDO.getSettlerIdCardReverse());
platformBuildResponse.setLegalIdCardBack(qualificationsInfoDO.getLegalIdCardBack()); platformBuildResponse.setShopProvinceCityDistrict(shopInfo.getProvince() + shopInfo.getCity() + shopInfo.getDistrict());
} platformBuildResponse.setShopAddress(shopInfo.getDetailAddress());
if (Objects.nonNull(pointInfo)) {
platformBuildResponse.setShopProvinceCityDistrict(pointInfo.getProvince() + pointInfo.getCity() + pointInfo.getDistrict());
platformBuildResponse.setShopAddress(pointInfo.getAddress());
}
platformBuildResponse.setShopCode(shopInfo.getShopCode()); platformBuildResponse.setShopCode(shopInfo.getShopCode());
platformBuildResponse.setFranchiseBrand(FranchiseBrandEnum.getDescByCode(shopInfo.getFranchiseBrand())); platformBuildResponse.setFranchiseBrand(FranchiseBrandEnum.getDescByCode(shopInfo.getFranchiseBrand()));
platformBuildResponse.setShopName(shopInfo.getShopName()); platformBuildResponse.setShopName(shopInfo.getShopName());
@@ -386,11 +382,16 @@ public class PlatformBuildServiceImpl implements PlatformBuildService {
platformBuildResponse.setFoodBusinessLicenseUrl(licenseTransactDO.getFoodBusinessLicenseUrl()); platformBuildResponse.setFoodBusinessLicenseUrl(licenseTransactDO.getFoodBusinessLicenseUrl());
} }
} }
AcceptanceInfoDO acceptanceInfoDO = acceptanceInfoDAO.selectByShopId(shopId);
if (Objects.nonNull(acceptanceInfoDO)) {
platformBuildResponse.setShopDoorwayPhoto(acceptanceInfoDO.getShopDoorwayPhoto());
platformBuildResponse.setShopInteriorPhoto(acceptanceInfoDO.getShopInteriorPhoto());
}
if (Objects.isNull(platformBuildDO)) { if (Objects.isNull(platformBuildDO)) {
BeanUtils.copyProperties(informationDO, platformBuildResponse); BeanUtils.copyProperties(informationDO, platformBuildResponse);
AcceptanceInfoDO acceptanceInfoDO = acceptanceInfoDAO.selectByShopId(shopId); if (Objects.nonNull(acceptanceInfoDO)) {
if(Objects.nonNull(acceptanceInfoDO)){ platformBuildResponse.setStorePositioningUrl(acceptanceInfoDO.getShopLocationScreenshots());
platformBuildResponse.setStorePositioningUrl(acceptanceInfoDO.getShopLocationScreenshots());} }
return platformBuildResponse; return platformBuildResponse;
} }
BeanUtils.copyProperties(platformBuildDO, platformBuildResponse); BeanUtils.copyProperties(platformBuildDO, platformBuildResponse);
@@ -407,7 +408,7 @@ public class PlatformBuildServiceImpl implements PlatformBuildService {
OperationLogDO trial = operationLogDAO.getByCondition(shopId, SHOP_SUB_STAGE_STATUS_251.getShopSubStageStatus()); OperationLogDO trial = operationLogDAO.getByCondition(shopId, SHOP_SUB_STAGE_STATUS_251.getShopSubStageStatus());
ShopAuditInfoDO auditInfo = shopAuditInfoDAO.getAuditInfo(platformBuildDO.getAuditId()); ShopAuditInfoDO auditInfo = shopAuditInfoDAO.getAuditInfo(platformBuildDO.getAuditId());
doSomething(platformBuildResponse, trial, auditInfo); doSomething(platformBuildResponse, trial, auditInfo);
}else { } else {
ShopAuditInfoDO auditInfo = shopAuditInfoDAO.getAuditInfo(platformBuildDO.getAuditId()); ShopAuditInfoDO auditInfo = shopAuditInfoDAO.getAuditInfo(platformBuildDO.getAuditId());
if (Objects.nonNull(auditInfo)) { if (Objects.nonNull(auditInfo)) {
if (auditInfo.getResultType().equals(AuditResultTypeEnum.PASS.getCode())) { if (auditInfo.getResultType().equals(AuditResultTypeEnum.PASS.getCode())) {

View File

@@ -1,9 +1,12 @@
package com.cool.store.controller.webc; package com.cool.store.controller.webc;
import com.cool.store.context.PartnerUserHolder;
import com.cool.store.request.BuildInformationRequest; import com.cool.store.request.BuildInformationRequest;
import com.cool.store.request.BuildSettlerRequest;
import com.cool.store.response.BuildInformationResponse; import com.cool.store.response.BuildInformationResponse;
import com.cool.store.response.ResponseResult; import com.cool.store.response.ResponseResult;
import com.cool.store.service.BuildInformationService; import com.cool.store.service.BuildInformationService;
import com.cool.store.vo.PartnerUserInfoVO;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
@@ -42,4 +45,11 @@ public class MiniBuildInformationController {
return ResponseResult.success(buildInformationService.getJoinType(lineId)); return ResponseResult.success(buildInformationService.getJoinType(lineId));
} }
@ApiOperation("修改结算人信息")
@PostMapping("/updateSettler")
public ResponseResult<Boolean> updateSettler(@RequestBody @Validated BuildSettlerRequest request) {
PartnerUserInfoVO user = PartnerUserHolder.getUser();
return ResponseResult.success(buildInformationService.updateBuildSettler(request,user.getPartnerId()));
}
} }