Merge remote-tracking branch 'origin/dev-ty1.2' into dev-ty1.2
This commit is contained in:
@@ -79,6 +79,7 @@ public class SsoAuthorizeController {
|
|||||||
// 5. 重定向到前端页面,token通过URL参数传递
|
// 5. 重定向到前端页面,token通过URL参数传递
|
||||||
// 前端页面需读取URL中的token参数并存入localStorage
|
// 前端页面需读取URL中的token参数并存入localStorage
|
||||||
log.info("SSO单点登录成功, account={}", account);
|
log.info("SSO单点登录成功, account={}", account);
|
||||||
|
log.info("SSO单点登录成功, account={}, token={} , redirectUrl={}", account, accessToken, redirectUrl);
|
||||||
response.sendRedirect(redirectUrl + "?token=" + URLEncoder.encode(accessToken, StandardCharsets.UTF_8.name()));
|
response.sendRedirect(redirectUrl + "?token=" + URLEncoder.encode(accessToken, StandardCharsets.UTF_8.name()));
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ public class SsoAuthorizeService {
|
|||||||
@Value("${sso.public-key}")
|
@Value("${sso.public-key}")
|
||||||
private String publicKeyStr;
|
private String publicKeyStr;
|
||||||
|
|
||||||
@Value("https://diglog.namkwong.com.mo/main_app/sso")
|
@Value("${sso.redirect-url}")
|
||||||
private String redirectUrl;
|
private String redirectUrl;
|
||||||
|
|
||||||
@Resource
|
@Resource
|
||||||
|
|||||||
@@ -550,11 +550,11 @@ public class SysLoginService {
|
|||||||
throw new ServiceException("请输入手机号和短信验证码");
|
throw new ServiceException("请输入手机号和短信验证码");
|
||||||
}
|
}
|
||||||
|
|
||||||
//调用工具类校验,校验手机号格式错误
|
// //调用工具类校验,校验手机号格式错误
|
||||||
if (!RegexUtil.isPhoneLegal(userPhone)) {
|
// if (!RegexUtil.isPhoneLegal(userPhone)) {
|
||||||
recordLogininfor(userPhone, Constants.LOGIN_FAIL, UserError.USER_PHONE_REG_ERROR.errmsg(), 1);
|
// recordLogininfor(userPhone, Constants.LOGIN_FAIL, UserError.USER_PHONE_REG_ERROR.errmsg(), 1);
|
||||||
throw new DigitalLogisticsException(UserError.USER_PHONE_REG_ERROR);
|
// throw new DigitalLogisticsException(UserError.USER_PHONE_REG_ERROR);
|
||||||
}
|
// }
|
||||||
|
|
||||||
//根据域名获取一级组织ID
|
//根据域名获取一级组织ID
|
||||||
AjaxResult topOrganizationIdR = organizationServiceFeign.getOrganizationByPath(path, SecurityConstants.INNER);
|
AjaxResult topOrganizationIdR = organizationServiceFeign.getOrganizationByPath(path, SecurityConstants.INNER);
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ spring:
|
|||||||
# server-addr: 127.0.0.1:8848
|
# server-addr: 127.0.0.1:8848
|
||||||
# 线上测试环境配置 容器名+端口号
|
# 线上测试环境配置 容器名+端口号
|
||||||
# server-addr: 10.33.0.129:6010
|
# server-addr: 10.33.0.129:6010
|
||||||
server-addr: 10.102.192.30:6848
|
server-addr: 10.102.192.31:6848
|
||||||
username: nacos
|
username: nacos
|
||||||
password: manhuoda@2023
|
password: manhuoda@2023
|
||||||
#线上正式环境
|
#线上正式环境
|
||||||
@@ -24,7 +24,7 @@ spring:
|
|||||||
# password: manhuoda@2023
|
# password: manhuoda@2023
|
||||||
config:
|
config:
|
||||||
# server-addr: 127.0.0.1:8848
|
# server-addr: 127.0.0.1:8848
|
||||||
server-addr: 10.102.192.30:6848
|
server-addr: 10.102.192.31:6848
|
||||||
# 测试环境配置 容器名+端口号
|
# 测试环境配置 容器名+端口号
|
||||||
# server-addr: 10.33.0.129:6010
|
# server-addr: 10.33.0.129:6010
|
||||||
# 线上测试环境配置 容器名+端口号
|
# 线上测试环境配置 容器名+端口号
|
||||||
@@ -52,4 +52,4 @@ sso:
|
|||||||
AwIDAQAB
|
AwIDAQAB
|
||||||
-----END PUBLIC KEY-----
|
-----END PUBLIC KEY-----
|
||||||
# SSO登录成功后跳转的前端页面地址
|
# SSO登录成功后跳转的前端页面地址
|
||||||
redirect-url: "/"
|
redirect-url: "https://diglog.namkwong.com.mo/main_app/sso"
|
||||||
|
|||||||
+2
-2
@@ -270,7 +270,7 @@ public class LeaseApplicationService {
|
|||||||
* 货主租赁明细
|
* 货主租赁明细
|
||||||
* 定时任务:每天凌晨1点执行,计算前一天的货主租赁明细
|
* 定时任务:每天凌晨1点执行,计算前一天的货主租赁明细
|
||||||
*/
|
*/
|
||||||
@Scheduled(cron = "0 0 1 * * ?")
|
// @Scheduled(cron = "0 0 1 * * ?")
|
||||||
public void shipperLeaseDetails() {
|
public void shipperLeaseDetails() {
|
||||||
log.info("开始执行货主租赁明细定时任务");
|
log.info("开始执行货主租赁明细定时任务");
|
||||||
// 计算前一天的日期,将时间设置为当天的0点0分0秒,只保留日期部分
|
// 计算前一天的日期,将时间设置为当天的0点0分0秒,只保留日期部分
|
||||||
@@ -537,7 +537,7 @@ public class LeaseApplicationService {
|
|||||||
/**
|
/**
|
||||||
* 定时任务散租推送到bms
|
* 定时任务散租推送到bms
|
||||||
*/
|
*/
|
||||||
@Scheduled(cron = "0 0 0 * * ?")
|
// @Scheduled(cron = "0 0 0 * * ?")
|
||||||
public void ScatteredRentalSynchronization() {
|
public void ScatteredRentalSynchronization() {
|
||||||
LeaseDO leaseDO = new LeaseDO();
|
LeaseDO leaseDO = new LeaseDO();
|
||||||
leaseDO.setTime(new Date());
|
leaseDO.setTime(new Date());
|
||||||
|
|||||||
+47
@@ -1124,4 +1124,51 @@ public class ContractManageApplicationService {
|
|||||||
public ContractManagePO getGeneralContract() {
|
public ContractManagePO getGeneralContract() {
|
||||||
return contractManageDomainService.getGeneralContract();
|
return contractManageDomainService.getGeneralContract();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 合同导出(合同头字段 + 明细拍平成一行一条明细)
|
||||||
|
*/
|
||||||
|
public List<ContractManageExportVO> buildExportList(ContractManageDO contractManageDO) {
|
||||||
|
List<ContractManagePO> contractList = this.queryList(contractManageDO);
|
||||||
|
List<ContractManageExportVO> exportList = new ArrayList<>();
|
||||||
|
if (contractList == null || contractList.isEmpty()) {
|
||||||
|
return exportList;
|
||||||
|
}
|
||||||
|
List<Long> contractManageIds = contractList.stream()
|
||||||
|
.map(ContractManagePO::getContractManageId)
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
Map<Long, List<ContractManageDetailPO>> detailMap = contractManageDetailDomainService
|
||||||
|
.queryListByManageIds(contractManageIds).stream()
|
||||||
|
.collect(Collectors.groupingBy(ContractManageDetailPO::getContractManageId));
|
||||||
|
|
||||||
|
for (ContractManagePO contract : contractList) {
|
||||||
|
List<ContractManageDetailPO> details = detailMap.get(contract.getContractManageId());
|
||||||
|
if (details != null && !details.isEmpty()) {
|
||||||
|
for (ContractManageDetailPO detail : details) {
|
||||||
|
ContractManageExportVO vo = new ContractManageExportVO();
|
||||||
|
// 合同头字段整体复制
|
||||||
|
BeanUtils.copyProperties(contract, vo);
|
||||||
|
// 明细字段显式赋值(合同头/明细存在同名字段,避免互相覆盖)
|
||||||
|
vo.setSubjectType(detail.getSubjectType());
|
||||||
|
vo.setFirstSubjectCode(detail.getFirstSubjectCode());
|
||||||
|
vo.setFirstSubjectName(detail.getFirstSubjectName());
|
||||||
|
vo.setSecondSubjectCode(detail.getSecondSubjectCode());
|
||||||
|
vo.setSecondSubjectName(detail.getSecondSubjectName());
|
||||||
|
vo.setAccountingStrategy(detail.getAccountingStrategy());
|
||||||
|
vo.setBillingAttributes(detail.getBillingAttributes());
|
||||||
|
vo.setSubjectEffectiveDate(detail.getSubjectEffectiveDate());
|
||||||
|
vo.setSubjectExpirationDate(detail.getSubjectExpirationDate());
|
||||||
|
vo.setDocumentType(detail.getDocumentType());
|
||||||
|
vo.setServiceItemsName(detail.getServiceItemsName());
|
||||||
|
exportList.add(vo);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// 无明细的合同也保留一行头字段
|
||||||
|
ContractManageExportVO vo = new ContractManageExportVO();
|
||||||
|
BeanUtils.copyProperties(contract, vo);
|
||||||
|
exportList.add(vo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return exportList;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+6
@@ -98,4 +98,10 @@ public class ContractManageDetail extends BaseVOEntity{
|
|||||||
@ApiModelProperty("单据类型")
|
@ApiModelProperty("单据类型")
|
||||||
private String documentType;
|
private String documentType;
|
||||||
|
|
||||||
|
@ApiModelProperty("费用类别编码")
|
||||||
|
private String serviceItemsCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("费用类别名称")
|
||||||
|
private String serviceItemsName;
|
||||||
|
|
||||||
}
|
}
|
||||||
+6
@@ -97,4 +97,10 @@ public class ContractManageDetailPO extends BaseVOEntity{
|
|||||||
@ApiModelProperty("单据类型")
|
@ApiModelProperty("单据类型")
|
||||||
private String documentType;
|
private String documentType;
|
||||||
|
|
||||||
|
@ApiModelProperty("费用类别编码")
|
||||||
|
private String serviceItemsCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("费用类别名称")
|
||||||
|
private String serviceItemsName;
|
||||||
|
|
||||||
}
|
}
|
||||||
+6
@@ -102,4 +102,10 @@ public class ContractManageDetailDO extends BaseVOEntity{
|
|||||||
|
|
||||||
@ApiModelProperty("单据类型")
|
@ApiModelProperty("单据类型")
|
||||||
private String documentType;
|
private String documentType;
|
||||||
|
|
||||||
|
@ApiModelProperty("费用类别编码")
|
||||||
|
private String serviceItemsCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("费用类别名称")
|
||||||
|
private String serviceItemsName;
|
||||||
}
|
}
|
||||||
+25
@@ -11,6 +11,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
/**
|
/**
|
||||||
* 合同管理详情
|
* 合同管理详情
|
||||||
@@ -95,5 +96,29 @@ public class ContractManageDetailDomainService {
|
|||||||
return resultList;
|
return resultList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据多个合同管理id批量查询合同科目详情(一次SQL查询,避免逐合同N+1)
|
||||||
|
* @param contractManageIds 合同管理id集合
|
||||||
|
* @return 合同科目详情列表
|
||||||
|
*/
|
||||||
|
public List<ContractManageDetailPO> queryListByManageIds(Collection<Long> contractManageIds) {
|
||||||
|
List<ContractManageDetailPO> resultList = new ArrayList<>();
|
||||||
|
if (contractManageIds == null || contractManageIds.isEmpty()) {
|
||||||
|
return resultList;
|
||||||
|
}
|
||||||
|
LambdaQueryWrapper<ContractManageDetail> queryWrapper = new LambdaQueryWrapper<>();
|
||||||
|
queryWrapper.in(ContractManageDetail::getContractManageId, contractManageIds);
|
||||||
|
queryWrapper.eq(ContractManageDetail::getDelFlag, 1);
|
||||||
|
List<ContractManageDetail> contractManageDetails = contractManageDetailService.list(queryWrapper);
|
||||||
|
if (contractManageDetails != null && contractManageDetails.size() > 0) {
|
||||||
|
for (ContractManageDetail contractManageDetail : contractManageDetails) {
|
||||||
|
ContractManageDetailPO contractManageDetailPO = new ContractManageDetailPO();
|
||||||
|
BeanUtils.copyProperties(contractManageDetail, contractManageDetailPO);
|
||||||
|
resultList.add(contractManageDetailPO);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return resultList;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-20
@@ -91,31 +91,15 @@ public class StorageSectionDomainService {
|
|||||||
public Boolean update(StorageSectionDO storageSectionDO) {
|
public Boolean update(StorageSectionDO storageSectionDO) {
|
||||||
LoginUser loginUser = SecurityUtils.getLoginUser();
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
Long topOrganizationId = loginUser.getUserPo().getTopOrganizationId();
|
Long topOrganizationId = loginUser.getUserPo().getTopOrganizationId();
|
||||||
AssociationWarehouseCacheDO associationWarehouseCacheDO = SystemServiceCacheUtil.getAssociationWarehouseCache(loginUser.getUserid());
|
if (topOrganizationId == null || topOrganizationId == 0) {
|
||||||
if (topOrganizationId == null || topOrganizationId == 0 || associationWarehouseCacheDO == null) {
|
throw new ServiceException("获取当前登陆人组织失败!");
|
||||||
throw new ServiceException("获取当前登陆人组织与登陆仓库失败!");
|
|
||||||
}
|
}
|
||||||
checkStorageSectionDuplicate(topOrganizationId, associationWarehouseCacheDO.getWarehouseId(),
|
// 直接用记录自身的 warehouseId 做唯一校验,不再依赖缓存仓库
|
||||||
|
checkStorageSectionDuplicate(topOrganizationId, storageSectionDO.getWarehouseId(),
|
||||||
storageSectionDO.getStorageCode(), storageSectionDO.getStorageName(),
|
storageSectionDO.getStorageCode(), storageSectionDO.getStorageName(),
|
||||||
storageSectionDO.getStorageSectionId());
|
storageSectionDO.getStorageSectionId());
|
||||||
//设置仓库
|
//设置仓库
|
||||||
setWarehouseInfo(storageSectionDO);
|
setWarehouseInfo(storageSectionDO);
|
||||||
String storageCode = storageSectionDO.getStorageCode();
|
|
||||||
String storageName = storageSectionDO.getStorageName();
|
|
||||||
Long warehouseId = storageSectionDO.getWarehouseId();
|
|
||||||
List<StorageSection> codelist = storageSectionService.list(new QueryWrapper<StorageSection>().lambda()
|
|
||||||
.eq(StorageSection::getStorageCode, storageCode)
|
|
||||||
.eq(StorageSection::getWarehouseId, warehouseId)
|
|
||||||
.ne(StorageSection::getStorageSectionId, storageSectionDO.getStorageSectionId())
|
|
||||||
.eq(StorageSection::getDelFlag, 1));
|
|
||||||
List<StorageSection> namelist = storageSectionService.list(new QueryWrapper<StorageSection>().lambda()
|
|
||||||
.eq(StorageSection::getStorageName, storageName)
|
|
||||||
.eq(StorageSection::getWarehouseId, warehouseId)
|
|
||||||
.ne(StorageSection::getStorageSectionId, storageSectionDO.getStorageSectionId())
|
|
||||||
.eq(StorageSection::getDelFlag, 1));
|
|
||||||
if ((codelist != null && codelist.size() > 0) || (namelist != null && namelist.size() > 0)) {
|
|
||||||
throw new ServiceException("库区编码或名称已存在");
|
|
||||||
}
|
|
||||||
return storageSectionService.update(storageSectionDO);
|
return storageSectionService.update(storageSectionDO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+102
@@ -0,0 +1,102 @@
|
|||||||
|
package com.mhd.basic.interfaces.dto.contractManage;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 合同管理导出对象(合同头字段 + 科目明细字段,拍平为一行一条明细)
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2024-06-07
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "合同管理导出对象", description = "合同管理导出对象(含明细)")
|
||||||
|
public class ContractManageExportVO {
|
||||||
|
|
||||||
|
/** ====== 合同头字段(与 ContractManagePO 的 @Excel 一致) ====== */
|
||||||
|
@Excel(name = "合同编号")
|
||||||
|
private String contractNumber;
|
||||||
|
|
||||||
|
@Excel(name = "合同名称")
|
||||||
|
private String contractName;
|
||||||
|
|
||||||
|
@Excel(name = "是否通用合同", readConverterExp = "1=是,2=否")
|
||||||
|
private Integer commonContractFlag;
|
||||||
|
|
||||||
|
@Excel(name = "合同类型", readConverterExp = "1=仓储,2=运输,3=其他")
|
||||||
|
private Integer contractType;
|
||||||
|
|
||||||
|
@Excel(name = "合同状态", readConverterExp = "1=未生效,2=使用中,3=已过期,4=已作废")
|
||||||
|
private Integer contractState;
|
||||||
|
|
||||||
|
@Excel(name = "签订单位")
|
||||||
|
private String signingUnit;
|
||||||
|
|
||||||
|
@Excel(name = "结算主体")
|
||||||
|
private String settlementCustomers;
|
||||||
|
|
||||||
|
@Excel(name = "我司身份", readConverterExp = "1=甲方,2=乙方")
|
||||||
|
private Integer ourIdentity;
|
||||||
|
|
||||||
|
@Excel(name = "账期", readConverterExp = "1=每月,2=双月,3=季度")
|
||||||
|
private Integer accountingPeriod;
|
||||||
|
|
||||||
|
@Excel(name = "合同签订日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date signingDate;
|
||||||
|
|
||||||
|
@Excel(name = "合同生效日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date effectiveDate;
|
||||||
|
|
||||||
|
@Excel(name = "合同到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date expirationDate;
|
||||||
|
|
||||||
|
@Excel(name = "组织名称")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@Excel(name = "客户类型")
|
||||||
|
private String customerType;
|
||||||
|
|
||||||
|
@Excel(name = "是否自动出账", readConverterExp = "1=是,2=否")
|
||||||
|
private Integer automaticFlag;
|
||||||
|
|
||||||
|
@Excel(name = "备注")
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
/** ====== 明细字段(来源于 contract_manage_detail) ====== */
|
||||||
|
@Excel(name = "结算科目类型", readConverterExp = "1=通用,2=临时")
|
||||||
|
private Integer subjectType;
|
||||||
|
|
||||||
|
@Excel(name = "一级费用科目code")
|
||||||
|
private String firstSubjectCode;
|
||||||
|
|
||||||
|
@Excel(name = "一级费用科目")
|
||||||
|
private String firstSubjectName;
|
||||||
|
|
||||||
|
@Excel(name = "二级费用科目code")
|
||||||
|
private String secondSubjectCode;
|
||||||
|
|
||||||
|
@Excel(name = "二级费用科目")
|
||||||
|
private String secondSubjectName;
|
||||||
|
|
||||||
|
@Excel(name = "计费策略")
|
||||||
|
private String accountingStrategy;
|
||||||
|
|
||||||
|
@Excel(name = "计费周期")
|
||||||
|
private String billingAttributes;
|
||||||
|
|
||||||
|
@Excel(name = "科目生效日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date subjectEffectiveDate;
|
||||||
|
|
||||||
|
@Excel(name = "科目到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date subjectExpirationDate;
|
||||||
|
|
||||||
|
@Excel(name = "单据类型")
|
||||||
|
private String documentType;
|
||||||
|
|
||||||
|
@Excel(name = "费用类别")
|
||||||
|
private String serviceItemsName;
|
||||||
|
}
|
||||||
+6
@@ -102,4 +102,10 @@ public class ContractManageDetailDTO extends BaseVOEntity{
|
|||||||
|
|
||||||
@ApiModelProperty("单据类型")
|
@ApiModelProperty("单据类型")
|
||||||
private String documentType;
|
private String documentType;
|
||||||
|
|
||||||
|
@ApiModelProperty("费用类别编码")
|
||||||
|
private String serviceItemsCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("费用类别名称")
|
||||||
|
private String serviceItemsName;
|
||||||
}
|
}
|
||||||
+22
@@ -1,8 +1,11 @@
|
|||||||
package com.mhd.basic.interfaces.facade.contractManage;
|
package com.mhd.basic.interfaces.facade.contractManage;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.URLEncoder;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.mhd.basic.interfaces.assember.contractManage.ContractManageAssembler;
|
import com.mhd.basic.interfaces.assember.contractManage.ContractManageAssembler;
|
||||||
|
import com.mhd.basic.interfaces.dto.contractManage.ContractManageExportVO;
|
||||||
import com.mhd.basic.interfaces.dto.contractManage.SubjectAndPriceDTO;
|
import com.mhd.basic.interfaces.dto.contractManage.SubjectAndPriceDTO;
|
||||||
import com.mhd.basic.interfaces.dto.contractManage.SubjectAndPriceReturn;
|
import com.mhd.basic.interfaces.dto.contractManage.SubjectAndPriceReturn;
|
||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
@@ -14,9 +17,11 @@ import com.mhd.basic.domain.contractManage.repository.todo.ContractManageDO;
|
|||||||
import com.mhd.basic.domain.contractManage.repository.po.ContractManagePO;
|
import com.mhd.basic.domain.contractManage.repository.po.ContractManagePO;
|
||||||
import com.mhd.basic.application.service.contractManage.ContractManageApplicationService;
|
import com.mhd.basic.application.service.contractManage.ContractManageApplicationService;
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import com.mhd.common.core.web.controller.BaseController;
|
import com.mhd.common.core.web.controller.BaseController;
|
||||||
import com.mhd.common.core.web.domain.AjaxResult;
|
import com.mhd.common.core.web.domain.AjaxResult;
|
||||||
import com.mhd.common.core.web.page.TableDataInfo;
|
import com.mhd.common.core.web.page.TableDataInfo;
|
||||||
|
import com.mhd.common.core.utils.poi.ExcelUtil;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 合同管理Api
|
* 合同管理Api
|
||||||
@@ -205,7 +210,24 @@ public class ContractManageApi extends BaseController{
|
|||||||
return AjaxResult.success(list);
|
return AjaxResult.success(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ApiOperation("导出合同(含明细)")
|
||||||
|
@GetMapping(value = "/export", produces = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
|
||||||
|
public void export(ContractManageDTO contractManageDTO, HttpServletResponse response) throws IOException
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
ContractManageDO contractManageDO = new ContractManageDO();
|
||||||
|
BeanUtils.copyProperties(contractManageDTO, contractManageDO);
|
||||||
|
//查询全量(不分页)并拍平明细
|
||||||
|
List<ContractManageExportVO> list = contractManageApplicationService.buildExportList(contractManageDO);
|
||||||
|
|
||||||
|
//设置下载头,防止浏览器乱码
|
||||||
|
String fileName = URLEncoder.encode("合同导出", "UTF-8").replaceAll("\\+", "%20");
|
||||||
|
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
|
||||||
|
response.setCharacterEncoding("utf-8");
|
||||||
|
response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");
|
||||||
|
|
||||||
|
ExcelUtil<ContractManageExportVO> util = new ExcelUtil<>(ContractManageExportVO.class);
|
||||||
|
util.exportExcel(response, list, "合同导出");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -16,7 +16,7 @@ spring:
|
|||||||
# server-addr: 127.0.0.1:8848
|
# server-addr: 127.0.0.1:8848
|
||||||
# server-addr: 10.33.0.129:6010
|
# server-addr: 10.33.0.129:6010
|
||||||
# 线上测试环境配置 容器名+端口号
|
# 线上测试环境配置 容器名+端口号
|
||||||
server-addr: 10.102.192.31:6848
|
server-addr: 10.102.192.30:6848
|
||||||
username: nacos
|
username: nacos
|
||||||
password: manhuoda@2023
|
password: manhuoda@2023
|
||||||
#线上正式环境
|
#线上正式环境
|
||||||
@@ -25,7 +25,7 @@ spring:
|
|||||||
# server-addr: 127.0.0.1:8848
|
# server-addr: 127.0.0.1:8848
|
||||||
# server-addr: 10.33.0.129:6010
|
# server-addr: 10.33.0.129:6010
|
||||||
# 线上测试环境配置 容器名+端口号
|
# 线上测试环境配置 容器名+端口号
|
||||||
server-addr: 10.102.192.31:6848
|
server-addr: 10.102.192.30:6848
|
||||||
username: nacos
|
username: nacos
|
||||||
password: manhuoda@2023
|
password: manhuoda@2023
|
||||||
#线上正式环境
|
#线上正式环境
|
||||||
|
|||||||
@@ -148,6 +148,7 @@
|
|||||||
AND a.top_organization_id = #{expenseAccountDO.topOrganizationId}
|
AND a.top_organization_id = #{expenseAccountDO.topOrganizationId}
|
||||||
AND a.subject_code = #{expenseAccountDO.subjectCode}
|
AND a.subject_code = #{expenseAccountDO.subjectCode}
|
||||||
AND a.status = 1
|
AND a.status = 1
|
||||||
|
LIMIT 1
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+86
-7
@@ -1,12 +1,22 @@
|
|||||||
package com.mhd.user.application.service;
|
package com.mhd.user.application.service;
|
||||||
|
|
||||||
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
|
import com.alibaba.fastjson.JSONArray;
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
import com.mhd.user.domain.userAggregate.entity.AgreementDetails;
|
import com.mhd.user.domain.userAggregate.entity.AgreementDetails;
|
||||||
|
import com.mhd.user.domain.userAggregate.entity.UserShipperEntity;
|
||||||
import com.mhd.user.domain.userAggregate.repository.mapper.AgreementDetailsMapper;
|
import com.mhd.user.domain.userAggregate.repository.mapper.AgreementDetailsMapper;
|
||||||
|
import com.mhd.user.domain.userAggregate.repository.mapper.UserShipperMapper;
|
||||||
|
import com.mhd.user.domain.userAggregate.repository.po.AgreementDetailsPo;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -19,18 +29,87 @@ public class AgreementDetailsApplicationService {
|
|||||||
@Resource
|
@Resource
|
||||||
private AgreementDetailsMapper agreementDetailsMapper;
|
private AgreementDetailsMapper agreementDetailsMapper;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private UserShipperMapper userShipperMapper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据货主ID查询所有协议明细
|
* 根据货主ID查询当前登录用户组织下的协议明细
|
||||||
|
* 从user_shipper表的orgCode字段解析JSON,匹配当前登录用户组织code,
|
||||||
|
* 返回该组织下的agreedaydatas列表
|
||||||
*
|
*
|
||||||
* @param shipperId 货主ID
|
* @param shipperId 货主ID
|
||||||
* @return 协议明细列表
|
* @return 协议明细列表
|
||||||
*/
|
*/
|
||||||
public List<AgreementDetails> listByShipperId(Long shipperId) {
|
public List<AgreementDetailsPo> listByShipperId(Long shipperId) {
|
||||||
return agreementDetailsMapper.selectList(
|
// 1. 获取当前登录用户组织ID
|
||||||
new LambdaQueryWrapper<AgreementDetails>()
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
.eq(AgreementDetails::getShipperId, shipperId)
|
if (ObjectUtil.isNull(loginUser) || ObjectUtil.isNull(loginUser.getUserPo())) {
|
||||||
.orderByDesc(AgreementDetails::getCreateTime)
|
log.warn("未获取到登录用户信息");
|
||||||
);
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
Long organizationId = loginUser.getUserPo().getOrganizationId();
|
||||||
|
if (ObjectUtil.isNull(organizationId)) {
|
||||||
|
log.warn("当前登录用户无组织信息");
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. 根据shipperId查询货主信息,获取orgCode字段
|
||||||
|
UserShipperEntity shipperEntity = userShipperMapper.selectById(shipperId);
|
||||||
|
if (ObjectUtil.isNull(shipperEntity)) {
|
||||||
|
log.warn("未找到货主信息,shipperId={}", shipperId);
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
String orgCodeJson = shipperEntity.getOrgCode();
|
||||||
|
if (ObjectUtil.isNull(orgCodeJson) || orgCodeJson.isEmpty()) {
|
||||||
|
log.warn("货主orgCode为空,shipperId={}", shipperId);
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. 解析orgCode JSON数组,匹配当前登录用户组织code
|
||||||
|
JSONArray orgCodeArray = JSONArray.parseArray(orgCodeJson);
|
||||||
|
if (orgCodeArray == null || orgCodeArray.isEmpty()) {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
JSONObject matchedOrg = null;
|
||||||
|
for (int i = 0; i < orgCodeArray.size(); i++) {
|
||||||
|
JSONObject orgItem = orgCodeArray.getJSONObject(i);
|
||||||
|
Long code = orgItem.getLong("code");
|
||||||
|
if (organizationId.equals(code)) {
|
||||||
|
matchedOrg = orgItem;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (matchedOrg == null) {
|
||||||
|
log.info("未匹配到当前组织的协议信息,shipperId={},organizationId={}", shipperId, organizationId);
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. 获取匹配组织的agreedaydatas
|
||||||
|
JSONArray agreedaydatas = matchedOrg.getJSONArray("agreedaydatas");
|
||||||
|
if (agreedaydatas == null || agreedaydatas.isEmpty()) {
|
||||||
|
log.info("当前组织下无协议天数数据,shipperId={},organizationId={}", shipperId, organizationId);
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 5. 转换为AgreementDetailsPo列表
|
||||||
|
List<AgreementDetailsPo> result = new ArrayList<>();
|
||||||
|
for (int i = 0; i < agreedaydatas.size(); i++) {
|
||||||
|
JSONObject item = agreedaydatas.getJSONObject(i);
|
||||||
|
AgreementDetailsPo po = new AgreementDetailsPo();
|
||||||
|
po.setCode(item.getString("code"));
|
||||||
|
po.setOrgcode(item.getString("orgcode"));
|
||||||
|
po.setPtypename(item.getString("ptypename"));
|
||||||
|
po.setPtype(item.getString("ptype"));
|
||||||
|
po.setPcode(item.getString("pcode"));
|
||||||
|
po.setPname(item.getString("pname"));
|
||||||
|
po.setPday(item.getString("pday"));
|
||||||
|
result.add(po);
|
||||||
|
}
|
||||||
|
|
||||||
|
log.info("查询协议明细成功,shipperId={},organizationId={},共{}条", shipperId, organizationId, result.size());
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+182
-20
@@ -23,7 +23,10 @@ import com.mhd.common.core.enums.MessageTypeEnum;
|
|||||||
import com.mhd.common.core.enums.WebsocketTypeEnum;
|
import com.mhd.common.core.enums.WebsocketTypeEnum;
|
||||||
import com.mhd.common.core.feign.ThirdPartyServiceFeign;
|
import com.mhd.common.core.feign.ThirdPartyServiceFeign;
|
||||||
import com.mhd.common.core.service.jPush.AsyncJPushApplicationService;
|
import com.mhd.common.core.service.jPush.AsyncJPushApplicationService;
|
||||||
|
import com.mhd.common.core.utils.AESUtil;
|
||||||
|
import com.mhd.common.core.utils.OConvertUtils;
|
||||||
import com.mhd.common.core.utils.StringUtils;
|
import com.mhd.common.core.utils.StringUtils;
|
||||||
|
import com.mhd.common.security.utils.password.PasswordUtil;
|
||||||
import com.mhd.system.api.FinanceServiceFeign;
|
import com.mhd.system.api.FinanceServiceFeign;
|
||||||
import com.mhd.system.api.WlhyServiceFeign;
|
import com.mhd.system.api.WlhyServiceFeign;
|
||||||
import com.mhd.system.api.domain.UserShipperEntityFeign;
|
import com.mhd.system.api.domain.UserShipperEntityFeign;
|
||||||
@@ -361,7 +364,7 @@ public class UserShipperApplicationService {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 从 Excel 导入委托方
|
* 从 Excel 导入委托方
|
||||||
* 模版列:登录账号、公司名称、联系人、联系电话、地址、详细地址、备注、结算币种
|
* 模版列:登录账号、公司名称、联系人、联系电话、地址、详细地址、备注、结算币种、NC客户编码
|
||||||
*/
|
*/
|
||||||
public com.mhd.common.core.web.domain.AjaxResult importShipperFromExcel(org.springframework.web.multipart.MultipartFile file) {
|
public com.mhd.common.core.web.domain.AjaxResult importShipperFromExcel(org.springframework.web.multipart.MultipartFile file) {
|
||||||
if (file == null || file.isEmpty()) {
|
if (file == null || file.isEmpty()) {
|
||||||
@@ -372,6 +375,12 @@ public class UserShipperApplicationService {
|
|||||||
org.apache.poi.ss.usermodel.Sheet sheet = workbook.getSheetAt(0);
|
org.apache.poi.ss.usermodel.Sheet sheet = workbook.getSheetAt(0);
|
||||||
int total = 0, success = 0, failed = 0;
|
int total = 0, success = 0, failed = 0;
|
||||||
java.util.List<String> errors = new java.util.ArrayList<>();
|
java.util.List<String> errors = new java.util.ArrayList<>();
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (loginUser == null || loginUser.getUserPo() == null) {
|
||||||
|
return com.mhd.common.core.web.domain.AjaxResult.error("登录信息失效");
|
||||||
|
}
|
||||||
|
Long currentOrgId = loginUser.getUserPo().getOrganizationId();
|
||||||
|
String currentOrgName = loginUser.getUserPo().getOrganizationName();
|
||||||
for (int i = 1; i <= sheet.getLastRowNum(); i++) {
|
for (int i = 1; i <= sheet.getLastRowNum(); i++) {
|
||||||
org.apache.poi.ss.usermodel.Row row = sheet.getRow(i);
|
org.apache.poi.ss.usermodel.Row row = sheet.getRow(i);
|
||||||
if (row == null) continue;
|
if (row == null) continue;
|
||||||
@@ -380,14 +389,21 @@ public class UserShipperApplicationService {
|
|||||||
if (org.springframework.util.StringUtils.isEmpty(companyName)) continue;
|
if (org.springframework.util.StringUtils.isEmpty(companyName)) continue;
|
||||||
total++;
|
total++;
|
||||||
try {
|
try {
|
||||||
|
String contactName = getCellStr(row.getCell(2));
|
||||||
|
String contactPhone = getCellStr(row.getCell(3));
|
||||||
|
String address = getCellStr(row.getCell(4));
|
||||||
|
String detailedAddress = getCellStr(row.getCell(5));
|
||||||
|
String remark = getCellStr(row.getCell(6));
|
||||||
|
String settlementCurrency = getCellStr(row.getCell(7));
|
||||||
|
String ncCustomerCode = getCellStr(row.getCell(8));
|
||||||
|
|
||||||
// 先按公司名称查是否已存在委托方
|
// 先按公司名称查是否已存在委托方
|
||||||
UserShipperEntity existingShipper = findFirstByShipperEnterpriseNameAcrossOrgs(companyName);
|
UserShipperEntity existingShipper = findFirstByShipperEnterpriseNameAcrossOrgs(companyName);
|
||||||
if (existingShipper != null && existingShipper.getShipperId() != null) {
|
if (existingShipper != null && existingShipper.getShipperId() != null) {
|
||||||
// 已存在:只更新NC客户编码和org_code
|
// 已存在:按模板更新指定字段
|
||||||
appendOrganizationToExistingShipper(existingShipper,
|
updateShipperFromExcel(existingShipper, userAccount, companyName,
|
||||||
SecurityUtils.getLoginUser().getUserPo().getOrganizationId(),
|
contactName, contactPhone, address, detailedAddress,
|
||||||
SecurityUtils.getLoginUser().getUserPo().getOrganizationName(),
|
remark, settlementCurrency, ncCustomerCode, loginUser, currentOrgId);
|
||||||
userAccount, SecurityUtils.getLoginUser());
|
|
||||||
success++;
|
success++;
|
||||||
} else {
|
} else {
|
||||||
UserShipperDO shipperDO = new UserShipperDO();
|
UserShipperDO shipperDO = new UserShipperDO();
|
||||||
@@ -395,31 +411,34 @@ public class UserShipperApplicationService {
|
|||||||
shipperDO.setDataSource(2);
|
shipperDO.setDataSource(2);
|
||||||
shipperDO.setUserAccount(userAccount);
|
shipperDO.setUserAccount(userAccount);
|
||||||
shipperDO.setShipperEnterpriseName(companyName);
|
shipperDO.setShipperEnterpriseName(companyName);
|
||||||
// 登录账号同时作为NC客户编码
|
// NC客户编码使用模板中的独立字段,不再复用登录账号
|
||||||
shipperDO.setCustomerNcCode(userAccount);
|
shipperDO.setCustomerNcCode(ncCustomerCode);
|
||||||
String contactName = getCellStr(row.getCell(2));
|
|
||||||
String contactPhone = getCellStr(row.getCell(3));
|
|
||||||
// 联系人 -> user表 user_name + user_shipper表 user_name_shipper
|
// 联系人 -> user表 user_name + user_shipper表 user_name_shipper
|
||||||
shipperDO.setUserName(contactName);
|
shipperDO.setUserName(contactName);
|
||||||
shipperDO.setUserNameShipper(contactName);
|
shipperDO.setUserNameShipper(contactName);
|
||||||
// 联系电话 -> user表 user_phone
|
// 联系电话 -> user表 user_phone
|
||||||
shipperDO.setUserPhone(contactPhone);
|
shipperDO.setUserPhone(contactPhone);
|
||||||
// 地址 -> user表 user_area_name,详细地址 -> user表 user_area_address
|
// 地址 -> user表 user_area_name,详细地址 -> user表 user_area_address
|
||||||
shipperDO.setUserAreaName(getCellStr(row.getCell(4)));
|
shipperDO.setUserAreaName(address);
|
||||||
shipperDO.setUserAreaAddress(getCellStr(row.getCell(5)));
|
shipperDO.setUserAreaAddress(detailedAddress);
|
||||||
shipperDO.setRemark(getCellStr(row.getCell(6)));
|
shipperDO.setRemark(remark);
|
||||||
shipperDO.setSettlementCurrency(getCellStr(row.getCell(7)));
|
shipperDO.setSettlementCurrency(settlementCurrency);
|
||||||
|
// 新导入账号默认密码 Aa123456(按前端加密约定先 AES 加密)
|
||||||
|
shipperDO.setUserPassword(AESUtil.encrypt("Aa123456"));
|
||||||
// 初始化 orgCode:记录当前组织信息和NC客户编码
|
// 初始化 orgCode:记录当前组织信息和NC客户编码
|
||||||
com.alibaba.fastjson.JSONArray orgCodeArray = new com.alibaba.fastjson.JSONArray();
|
com.alibaba.fastjson.JSONArray orgCodeArray = new com.alibaba.fastjson.JSONArray();
|
||||||
com.alibaba.fastjson.JSONObject orgItem = new com.alibaba.fastjson.JSONObject();
|
com.alibaba.fastjson.JSONObject orgItem = new com.alibaba.fastjson.JSONObject();
|
||||||
LoginUser loginUser = SecurityUtils.getLoginUser();
|
orgItem.put("name", currentOrgName);
|
||||||
orgItem.put("name", loginUser.getUserPo().getOrganizationName());
|
orgItem.put("code", currentOrgId);
|
||||||
orgItem.put("code", loginUser.getUserPo().getOrganizationId());
|
orgItem.put("ncCustomer", ncCustomerCode);
|
||||||
orgItem.put("ncCustomer", userAccount);
|
orgItem.put("names", currentOrgId);
|
||||||
orgItem.put("names", loginUser.getUserPo().getOrganizationId());
|
|
||||||
orgCodeArray.add(orgItem);
|
orgCodeArray.add(orgItem);
|
||||||
shipperDO.setOrgCode(orgCodeArray.toJSONString());
|
shipperDO.setOrgCode(orgCodeArray.toJSONString());
|
||||||
addShipper(shipperDO);
|
Map<String, Object> addResult = addShipper(shipperDO);
|
||||||
|
Object newUserIdObj = addResult.get("userId");
|
||||||
|
if (newUserIdObj instanceof Long) {
|
||||||
|
assignCompanyRoleIfMissing((Long) newUserIdObj, currentOrgId);
|
||||||
|
}
|
||||||
success++;
|
success++;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@@ -441,6 +460,149 @@ public class UserShipperApplicationService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入时若账号没有任何角色,则补分配企业货主角色
|
||||||
|
*/
|
||||||
|
private void assignCompanyRoleIfMissing(Long userId, Long organizationId) {
|
||||||
|
if (userId == null || organizationId == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
List<UserRoleMenuPO> existingRoles = userRoleDomainService.selectRolesByUserId(userId);
|
||||||
|
if (CollUtil.isNotEmpty(existingRoles)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 按 role_code + organization_id 精确匹配角色(selectByOrganizationIdAndRoleCode 的 common_where 不含 roleCode 过滤,不适用)
|
||||||
|
RolePO rolePO = roleDomainService.selectByRoleCodeAndOrganizationId(RoleEnum.COMPANY.getCode(), organizationId);
|
||||||
|
if (rolePO == null) {
|
||||||
|
log.warn("组织{}下未找到{}角色,无法为导入用户{}分配角色", organizationId, RoleEnum.COMPANY.getCode(), userId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 1. 写入 user_role 表
|
||||||
|
UserRoleDo userRoleDo = new UserRoleDo();
|
||||||
|
userRoleDo.setUserId(userId);
|
||||||
|
userRoleDo.setRoleId(rolePO.getRoleId());
|
||||||
|
userRoleDomainService.addUserRole(userRoleDo);
|
||||||
|
// 2. 同步更新 user 表的 role_code / role_name
|
||||||
|
UserDO userDO = new UserDO();
|
||||||
|
userDO.setUserId(userId);
|
||||||
|
userDO.setRoleCode(RoleEnum.COMPANY.getCode());
|
||||||
|
userDO.setRoleName(RoleEnum.COMPANY.getName());
|
||||||
|
userDomainService.updateUser(userDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 按Excel模板更新已存在的委托方(只更新模板中的字段)
|
||||||
|
*/
|
||||||
|
private void updateShipperFromExcel(UserShipperEntity existingShipper, String userAccount,
|
||||||
|
String companyName, String contactName, String contactPhone,
|
||||||
|
String address, String detailedAddress, String remark,
|
||||||
|
String settlementCurrency, String ncCustomerCode,
|
||||||
|
LoginUser loginUser, Long currentOrgId) {
|
||||||
|
Long userId = existingShipper.getUserId();
|
||||||
|
// 从 user 主表读取当前登录账号(user_shipper 表无 user_account 字段)
|
||||||
|
UserPo existingUser = null;
|
||||||
|
String existingUserAccount = null;
|
||||||
|
if (userId != null) {
|
||||||
|
existingUser = userDomainService.selectByUserId(userId);
|
||||||
|
if (existingUser != null) {
|
||||||
|
existingUserAccount = existingUser.getUserAccount();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (StringUtils.isBlank(existingUserAccount) && StringUtils.isBlank(userAccount)) {
|
||||||
|
throw new ServiceException("登录账号不能为空");
|
||||||
|
}
|
||||||
|
// 登录账号变更时校验唯一性
|
||||||
|
if (StringUtils.isNotBlank(userAccount) && !userAccount.equals(existingUserAccount)) {
|
||||||
|
UserDO checkDO = new UserDO();
|
||||||
|
checkDO.setUserAccount(userAccount);
|
||||||
|
checkDO.setTopOrganizationId(existingShipper.getTopOrganizationId());
|
||||||
|
UserPo existedUser = userDomainService.findByTopOrganizationIdAndUserAccount(checkDO);
|
||||||
|
if (existedUser != null && !existedUser.getUserId().equals(userId)) {
|
||||||
|
throw new ServiceException("登录账号已存在:" + userAccount);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Date now = new Date();
|
||||||
|
Long updateBy = loginUser.getUserPo().getUserId();
|
||||||
|
String updateByName = loginUser.getUserPo().getUserName();
|
||||||
|
|
||||||
|
// 1. 更新 user_shipper 表指定字段
|
||||||
|
// 注意:user_shipper 表没有 user_account 字段,登录账号在 user 主表维护
|
||||||
|
UserShipperEntity shipperUpdate = new UserShipperEntity();
|
||||||
|
shipperUpdate.setShipperId(existingShipper.getShipperId());
|
||||||
|
shipperUpdate.setShipperEnterpriseName(companyName);
|
||||||
|
shipperUpdate.setUserNameShipper(contactName);
|
||||||
|
shipperUpdate.setUserAreaName(address);
|
||||||
|
shipperUpdate.setUserAreaAddress(detailedAddress);
|
||||||
|
shipperUpdate.setRemark(remark);
|
||||||
|
shipperUpdate.setSettlementCurrency(settlementCurrency);
|
||||||
|
shipperUpdate.setCustomerNcCode(ncCustomerCode);
|
||||||
|
shipperUpdate.setUpdateBy(updateBy);
|
||||||
|
shipperUpdate.setUpdateByName(updateByName);
|
||||||
|
shipperUpdate.setUpdateTime(now);
|
||||||
|
userShipperMapper.updateById(shipperUpdate);
|
||||||
|
|
||||||
|
// 2. 同步更新 user 表指定字段
|
||||||
|
if (userId != null) {
|
||||||
|
UserDO userDO = new UserDO();
|
||||||
|
userDO.setUserId(userId);
|
||||||
|
if (StringUtils.isNotBlank(userAccount)) {
|
||||||
|
userDO.setUserAccount(userAccount);
|
||||||
|
}
|
||||||
|
userDO.setUserName(contactName);
|
||||||
|
userDO.setUserPhone(contactPhone);
|
||||||
|
userDO.setUserAreaName(address);
|
||||||
|
userDO.setUserAreaAddress(detailedAddress);
|
||||||
|
userDO.setUpdateBy(updateBy);
|
||||||
|
userDO.setUpdateByName(updateByName);
|
||||||
|
userDO.setUpdateTime(now);
|
||||||
|
// 如果现有账号没有密码,设置默认密码 Aa123456(与 addUserInfoShipper 一致的加密流程)
|
||||||
|
if (existingUser != null && StringUtils.isBlank(existingUser.getUserPassword())) {
|
||||||
|
String finalAccount = StringUtils.isNotBlank(userAccount) ? userAccount : existingUser.getUserAccount();
|
||||||
|
String salt = OConvertUtils.randomGen(8);
|
||||||
|
String passwordEncode = PasswordUtil.encrypt(finalAccount, "Aa123456", salt);
|
||||||
|
userDO.setUserPassword(passwordEncode);
|
||||||
|
userDO.setUserSalt(salt);
|
||||||
|
}
|
||||||
|
userDomainService.updateUser(userDO);
|
||||||
|
// 如果该账号没有任何角色,补分配企业货主角色,避免登录报“账号未授权角色信息”
|
||||||
|
assignCompanyRoleIfMissing(userId, existingShipper.getOrganizationId());
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. 更新 orgCode 中当前组织的 ncCustomer
|
||||||
|
String existingOrgCode = existingShipper.getOrgCode();
|
||||||
|
com.alibaba.fastjson.JSONArray orgCodeArray = new com.alibaba.fastjson.JSONArray();
|
||||||
|
boolean hasOrg = false;
|
||||||
|
if (StringUtils.isNotEmpty(existingOrgCode)) {
|
||||||
|
try {
|
||||||
|
orgCodeArray = com.alibaba.fastjson.JSONArray.parseArray(existingOrgCode);
|
||||||
|
for (int i = 0; i < orgCodeArray.size(); i++) {
|
||||||
|
com.alibaba.fastjson.JSONObject orgItem = orgCodeArray.getJSONObject(i);
|
||||||
|
if (currentOrgId != null && currentOrgId.equals(orgItem.getLong("code"))) {
|
||||||
|
orgItem.put("ncCustomer", ncCustomerCode);
|
||||||
|
hasOrg = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("解析orgCode失败,shipperId={}", existingShipper.getShipperId(), e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!hasOrg) {
|
||||||
|
com.alibaba.fastjson.JSONObject newOrgItem = new com.alibaba.fastjson.JSONObject();
|
||||||
|
newOrgItem.put("name", loginUser.getUserPo().getOrganizationName());
|
||||||
|
newOrgItem.put("code", currentOrgId);
|
||||||
|
newOrgItem.put("ncCustomer", ncCustomerCode);
|
||||||
|
newOrgItem.put("names", currentOrgId);
|
||||||
|
orgCodeArray.add(newOrgItem);
|
||||||
|
}
|
||||||
|
UserShipperEntity orgCodeUpdate = new UserShipperEntity();
|
||||||
|
orgCodeUpdate.setShipperId(existingShipper.getShipperId());
|
||||||
|
orgCodeUpdate.setOrgCode(orgCodeArray.toJSONString());
|
||||||
|
orgCodeUpdate.setUpdateBy(updateBy);
|
||||||
|
orgCodeUpdate.setUpdateByName(updateByName);
|
||||||
|
orgCodeUpdate.setUpdateTime(now);
|
||||||
|
userShipperMapper.updateById(orgCodeUpdate);
|
||||||
|
}
|
||||||
|
|
||||||
private String getCellStr(org.apache.poi.ss.usermodel.Cell cell) {
|
private String getCellStr(org.apache.poi.ss.usermodel.Cell cell) {
|
||||||
if (cell == null) return null;
|
if (cell == null) return null;
|
||||||
cell.setCellType(org.apache.poi.ss.usermodel.CellType.STRING);
|
cell.setCellType(org.apache.poi.ss.usermodel.CellType.STRING);
|
||||||
|
|||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
package com.mhd.user.domain.userAggregate.repository.po;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 协议天数PO
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class AgreementDetailsPo {
|
||||||
|
|
||||||
|
@ApiModelProperty("客户编码")
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
@ApiModelProperty("协议组织编码")
|
||||||
|
private String orgcode;
|
||||||
|
|
||||||
|
@ApiModelProperty("协议类型名称")
|
||||||
|
private String ptypename;
|
||||||
|
|
||||||
|
@ApiModelProperty("协议类型:1-付款协议天数,2-收款协议天数")
|
||||||
|
private String ptype;
|
||||||
|
|
||||||
|
@ApiModelProperty("财务系统协议编码")
|
||||||
|
private String pcode;
|
||||||
|
|
||||||
|
@ApiModelProperty("协议天数名称")
|
||||||
|
private String pname;
|
||||||
|
|
||||||
|
@ApiModelProperty("协议天数")
|
||||||
|
private String pday;
|
||||||
|
}
|
||||||
@@ -20,15 +20,15 @@ spring:
|
|||||||
discovery:
|
discovery:
|
||||||
# server-addr: 127.0.0.1:8848
|
# server-addr: 127.0.0.1:8848
|
||||||
# 线上测试环境配置 容器名+端口号
|
# 线上测试环境配置 容器名+端口号
|
||||||
# server-addr: 10.33.0.129:6010
|
server-addr: 10.33.0.129:6010
|
||||||
server-addr: 10.102.192.30:6848
|
# server-addr: 10.102.192.30:6848
|
||||||
username: nacos
|
username: nacos
|
||||||
password: manhuoda@2023
|
password: manhuoda@2023
|
||||||
config:
|
config:
|
||||||
# server-addr: 127.0.0.1:8848
|
# server-addr: 127.0.0.1:8848
|
||||||
# 线上测试环境配置 容器名+端口号
|
# 线上测试环境配置 容器名+端口号
|
||||||
# server-addr: 10.33.0.129:6010
|
server-addr: 10.33.0.129:6010
|
||||||
server-addr: 10.102.192.30:6848
|
# server-addr: 10.102.192.30:6848
|
||||||
username: nacos
|
username: nacos
|
||||||
password: manhuoda@2023
|
password: manhuoda@2023
|
||||||
group: DEFAULT_GROUP # 默认分组就是DEFAULT_GROUP,如果使用默认分组可以不配置
|
group: DEFAULT_GROUP # 默认分组就是DEFAULT_GROUP,如果使用默认分组可以不配置
|
||||||
|
|||||||
+62
-86
@@ -133,8 +133,12 @@ public class BillManageApplicationService {
|
|||||||
List<BillManagePO> billManagePOS = billManageDomainService.queryList(billManageDO);
|
List<BillManagePO> billManagePOS = billManageDomainService.queryList(billManageDO);
|
||||||
for (BillManagePO billManagePO : billManagePOS) {
|
for (BillManagePO billManagePO : billManagePOS) {
|
||||||
String billNumber = billManagePO.getBillNumber(); // 获取账单编号
|
String billNumber = billManagePO.getBillNumber(); // 获取账单编号
|
||||||
|
// 原有 - 前端列表用,不变
|
||||||
List<BillDetail> billDetails = billDetailMapper.selectList(new LambdaQueryWrapper<BillDetail>().eq(BillDetail::getBillNumber, billNumber));
|
List<BillDetail> billDetails = billDetailMapper.selectList(new LambdaQueryWrapper<BillDetail>().eq(BillDetail::getBillNumber, billNumber));
|
||||||
billManagePO.setBillDetailList(billDetails);
|
billManagePO.setBillDetailList(billDetails);
|
||||||
|
// 新增 - 导出用,LEFT JOIN billing_statement 拿到费用科目
|
||||||
|
List<BillDetailPO> billDetailPOs = billDetailMapper.getDetailsByBillManageId(billManagePO.getBillManageId());
|
||||||
|
billManagePO.setBillDetailPOList(billDetailPOs);
|
||||||
}
|
}
|
||||||
return billManagePOS;
|
return billManagePOS;
|
||||||
}
|
}
|
||||||
@@ -360,6 +364,19 @@ public class BillManageApplicationService {
|
|||||||
billDetailDTO1.setFeeType(billDetailDTO1.getServiceItemsName());
|
billDetailDTO1.setFeeType(billDetailDTO1.getServiceItemsName());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
//同步更新已有计费流水(调整账单时可修改已有费用)
|
||||||
|
List<BillDetailDTO> billDetailDTOListHasBillingStatementId = billDetailDTOList.stream()
|
||||||
|
.filter(billDetailDTO -> billDetailDTO.getBillingStatementId() != null)
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
for (BillDetailDTO billDetailDTO : billDetailDTOListHasBillingStatementId) {
|
||||||
|
BillingStatementDO billingStatementDO = new BillingStatementDO();
|
||||||
|
BeanUtils.copyProperties(billDetailDTO, billingStatementDO);
|
||||||
|
billingStatementDO.setBillingStatementId(billDetailDTO.getBillingStatementId());
|
||||||
|
billingStatementDO.setBillManageId(billManagePO.getBillManageId());
|
||||||
|
billingStatementDO.setBillingState(3);
|
||||||
|
billingStatementDO.setAccountExpenseType(billDetailDTO.getBillType());
|
||||||
|
billingStatementApplicationService.update(billingStatementDO);
|
||||||
|
}
|
||||||
//保存账单明细
|
//保存账单明细
|
||||||
Boolean flag = billDetailDomainService.saveBatch(billDetailDTOList);
|
Boolean flag = billDetailDomainService.saveBatch(billDetailDTOList);
|
||||||
//更新账单金额
|
//更新账单金额
|
||||||
@@ -464,6 +481,19 @@ public class BillManageApplicationService {
|
|||||||
item.setFeeType(item.getServiceItemsName());
|
item.setFeeType(item.getServiceItemsName());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
//同步更新已有计费流水(新增账单时可修改已有费用)
|
||||||
|
List<BillDetailDTO> billDetailDTOListHasBillingStatementId = billDetailDTOList.stream()
|
||||||
|
.filter(item -> item.getBillingStatementId() != null)
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
for (BillDetailDTO billDetailDTO : billDetailDTOListHasBillingStatementId) {
|
||||||
|
BillingStatementDO billingStatementDO = new BillingStatementDO();
|
||||||
|
BeanUtils.copyProperties(billDetailDTO, billingStatementDO);
|
||||||
|
billingStatementDO.setBillingStatementId(billDetailDTO.getBillingStatementId());
|
||||||
|
billingStatementDO.setBillManageId(billManageDO.getBillManageId());
|
||||||
|
billingStatementDO.setBillingState(3);
|
||||||
|
billingStatementDO.setAccountExpenseType(billDetailDTO.getBillType());
|
||||||
|
billingStatementApplicationService.update(billingStatementDO);
|
||||||
|
}
|
||||||
//保存账单明细
|
//保存账单明细
|
||||||
Boolean flagTwo = billDetailDomainService.saveBatch(billDetailDTOList);
|
Boolean flagTwo = billDetailDomainService.saveBatch(billDetailDTOList);
|
||||||
//保存操作记录
|
//保存操作记录
|
||||||
@@ -476,105 +506,51 @@ public class BillManageApplicationService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 复制账单
|
* 复制账单-获取原账单数据供前端回显
|
||||||
|
* 前端拿到数据后跳转到类似修改/新增账单的页面,用户修改后通过addBill接口提交新增
|
||||||
*/
|
*/
|
||||||
@Transactional
|
public BillManagePO copyBill(BillManageDTO billManageDTO) {
|
||||||
public Boolean copyBill(BillManageDTO billManageDTO) {
|
|
||||||
LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
||||||
if (ObjectUtil.isNull(loginUser)) {
|
|
||||||
throw new DigitalLogisticsException(UserError.TIMEOUT);
|
|
||||||
}
|
|
||||||
if (billManageDTO.getBillManageId() == null) {
|
if (billManageDTO.getBillManageId() == null) {
|
||||||
throw new ServiceException("原账单id不能为空");
|
throw new ServiceException("原账单id不能为空");
|
||||||
}
|
}
|
||||||
// 1. 获取原账单信息
|
// 获取原账单信息
|
||||||
BillManagePO originalBill = billManageDomainService.getInfo(billManageDTO.getBillManageId());
|
BillManagePO originalBill = billManageDomainService.getInfo(billManageDTO.getBillManageId());
|
||||||
if (null == originalBill) {
|
if (null == originalBill) {
|
||||||
throw new ServiceException("原账单信息未找到");
|
throw new ServiceException("原账单信息未找到");
|
||||||
}
|
}
|
||||||
// 2. 获取原账单明细
|
// 获取原账单明细
|
||||||
List<BillDetailPO> originalDetails = billDetailDomainService.getDetailsByBillManageId(billManageDTO.getBillManageId());
|
List<BillDetailPO> originalDetails = billDetailDomainService.getDetailsByBillManageId(billManageDTO.getBillManageId());
|
||||||
if (originalDetails == null || originalDetails.isEmpty()) {
|
if (originalDetails == null || originalDetails.isEmpty()) {
|
||||||
throw new ServiceException("原账单明细为空,无法复制");
|
throw new ServiceException("原账单明细为空,无法复制");
|
||||||
}
|
}
|
||||||
// 3. 创建新账单,除账单编号外完全复制原账单
|
// 重置关键字段为初始值,清空id等,方便前端回显后直接提交新增
|
||||||
String newBillNumber = OrderSequence.getOrderCode("ZD");
|
originalBill.setBillManageId(null);
|
||||||
BillManage newBill = new BillManage();
|
originalBill.setBillNumber(null);
|
||||||
BeanUtils.copyProperties(originalBill, newBill);
|
originalBill.setBillState(1);
|
||||||
newBill.setBillManageId(null);
|
originalBill.setBillStep(1);
|
||||||
newBill.setBillNumber(newBillNumber);
|
originalBill.setReconciliationStatus(0);
|
||||||
newBill.setCreateBy(loginUser.getUserPo().getUserId());
|
originalBill.setIsInvoice(0);
|
||||||
newBill.setCreateByName(loginUser.getUserPo().getUserName());
|
originalBill.setActualReceivedAmount(BigDecimal.ZERO);
|
||||||
newBill.setCreateTime(new Date());
|
originalBill.setBillAmountUnsettled(originalBill.getBillAmount());
|
||||||
newBill.setUpdateBy(loginUser.getUserPo().getUserId());
|
originalBill.setBillAmountSettlement(BigDecimal.ZERO);
|
||||||
newBill.setUpdateByName(loginUser.getUserPo().getUserName());
|
originalBill.setSynchronousStatus(0);
|
||||||
newBill.setUpdateTime(new Date());
|
originalBill.setSkSynchronousStatus(0);
|
||||||
newBill.setDelFlag(1);
|
originalBill.setApplyNumber(null);
|
||||||
// 复制后重置状态字段为初始值
|
originalBill.setSettlementTime(null);
|
||||||
// 账单状态、对账状态、发票状态重置
|
originalBill.setSynchronousTime(null);
|
||||||
newBill.setBillState(1); // 1-未确认
|
originalBill.setSkSynchronousTime(null);
|
||||||
newBill.setBillStep(1); // 1-发起对账
|
originalBill.setInvoiceId(null);
|
||||||
newBill.setReconciliationStatus(0); // 1-暂未确认
|
originalBill.setInvoiceMakeTime(null);
|
||||||
newBill.setIsInvoice(0); // 0-未索取
|
originalBill.setNcId(null);
|
||||||
// 实收=0,未收=账单金额
|
originalBill.setSkNcId(null);
|
||||||
newBill.setActualReceivedAmount(BigDecimal.ZERO);
|
// 明细也清空id
|
||||||
newBill.setBillAmountUnsettled(newBill.getBillAmount());
|
for (BillDetailPO detail : originalDetails) {
|
||||||
newBill.setBillAmountSettlement(BigDecimal.ZERO);
|
detail.setBillDetailId(null);
|
||||||
// NC同步状态重置
|
detail.setBillManageId(null);
|
||||||
newBill.setSynchronousStatus(0); // 0-未同步
|
detail.setBillNumber(null);
|
||||||
newBill.setSkSynchronousStatus(0); // 0-未同步
|
|
||||||
// 清空发票、收款、推送相关字段
|
|
||||||
newBill.setApplyNumber(null); // 发票申请单号
|
|
||||||
newBill.setSettlementTime(null); // 收款时间
|
|
||||||
newBill.setSynchronousTime(null); // 应收单推送时间
|
|
||||||
newBill.setSkSynchronousTime(null); // 收款单推送时间
|
|
||||||
newBill.setInvoiceId(null); // 发票表ID
|
|
||||||
newBill.setInvoiceMakeTime(null); // 开票时间
|
|
||||||
newBill.setNcId(null); // nc唯一标识(应收)
|
|
||||||
newBill.setSkNcId(null); // nc唯一标识(收款)
|
|
||||||
// 保存新账单
|
|
||||||
boolean flag = billManageDomainService.saveEntity(newBill);
|
|
||||||
if (!flag) {
|
|
||||||
throw new ServiceException("复制账单失败,请重试");
|
|
||||||
}
|
}
|
||||||
// 4. 复制账单明细
|
originalBill.setBillDetailPOList(originalDetails);
|
||||||
List<BillDetail> newDetailList = new ArrayList<>();
|
return originalBill;
|
||||||
for (BillDetailPO originalDetail : originalDetails) {
|
|
||||||
BillDetail newDetail = new BillDetail();
|
|
||||||
BeanUtils.copyProperties(originalDetail, newDetail);
|
|
||||||
newDetail.setBillDetailId(null);
|
|
||||||
newDetail.setBillManageId(newBill.getBillManageId());
|
|
||||||
newDetail.setBillNumber(newBillNumber);
|
|
||||||
newDetail.setCreateBy(loginUser.getUserPo().getUserId());
|
|
||||||
newDetail.setCreateByName(loginUser.getUserPo().getUserName());
|
|
||||||
newDetail.setCreateTime(new Date());
|
|
||||||
newDetailList.add(newDetail);
|
|
||||||
}
|
|
||||||
Boolean flagTwo = billDetailDomainService.insertBatch(newDetailList);
|
|
||||||
// 5. 复制计费流水(billing_statement)
|
|
||||||
List<BillingStatementPO> originalStatements = billingStatementDomainService.getDetailsByManageId(billManageDTO.getBillManageId());
|
|
||||||
boolean flagThree = true;
|
|
||||||
if (originalStatements != null && !originalStatements.isEmpty()) {
|
|
||||||
List<BillingStatement> newStatementList = new ArrayList<>();
|
|
||||||
for (BillingStatementPO originalStatement : originalStatements) {
|
|
||||||
BillingStatement newStatement = new BillingStatement();
|
|
||||||
BeanUtils.copyProperties(originalStatement, newStatement);
|
|
||||||
newStatement.setBillingStatementId(null);
|
|
||||||
newStatement.setBillManageId(newBill.getBillManageId());
|
|
||||||
newStatement.setCreateBy(loginUser.getUserPo().getUserId());
|
|
||||||
newStatement.setCreateByName(loginUser.getUserPo().getUserName());
|
|
||||||
newStatement.setCreateTime(new Date());
|
|
||||||
newStatementList.add(newStatement);
|
|
||||||
}
|
|
||||||
flagThree = billingStatementDomainService.saveEntityBatch(newStatementList);
|
|
||||||
}
|
|
||||||
// 6. 保存操作日志
|
|
||||||
BillOperationLogDO billOperationLogDO = new BillOperationLogDO();
|
|
||||||
billOperationLogDO.setBillManageId(newBill.getBillManageId());
|
|
||||||
billOperationLogDO.setOperationInfo(StringUtils.format(BillLogsConstants.copy_bill_text, originalBill.getBillNumber(), newBillNumber));
|
|
||||||
billOperationLogDO.setOperationType(1);
|
|
||||||
boolean three = billOperationLogDomainService.saveBillOperationLog(billOperationLogDO);
|
|
||||||
return flag && flagTwo && flagThree && three;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -0,0 +1,145 @@
|
|||||||
|
package com.mhd.bms.interfaces.dto.billManage;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "应收账单导出对象")
|
||||||
|
public class BillManageExportVO {
|
||||||
|
|
||||||
|
/** ====== 原有账单头字段(与 BillManagePO 的 @Excel 一致) ====== */
|
||||||
|
@Excel(name = "一级组织表ID")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@Excel(name = "组织表ID")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@Excel(name = "组织名称")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@Excel(name = "账单编号")
|
||||||
|
private String billNumber;
|
||||||
|
|
||||||
|
@Excel(name = "账单类型", readConverterExp = "1=-应收,2-应付")
|
||||||
|
private Integer billType;
|
||||||
|
|
||||||
|
@Excel(name = "账单状态", readConverterExp = "1=-未确认,2-对账中,3-未收款/付款,4-部分收款/付款,5-已收款/付款,6-已作废,7-已退款")
|
||||||
|
private Integer billState;
|
||||||
|
|
||||||
|
@Excel(name = "账单流程节点", readConverterExp = "1=-发起对账,2-客户确认,3-财务审核,4-收款/付款")
|
||||||
|
private Integer billStep;
|
||||||
|
|
||||||
|
@Excel(name = "系统来源")
|
||||||
|
private String belongModule;
|
||||||
|
|
||||||
|
@Excel(name = "系统来源code")
|
||||||
|
private String belongModuleCode;
|
||||||
|
|
||||||
|
@Excel(name = "结算对象id")
|
||||||
|
private Long settlementCustomersId;
|
||||||
|
|
||||||
|
@Excel(name = "结算对象code")
|
||||||
|
private String settlementCustomersCode;
|
||||||
|
|
||||||
|
@Excel(name = "结算对象")
|
||||||
|
private String settlementEntity;
|
||||||
|
|
||||||
|
@Excel(name = "账单总金额")
|
||||||
|
private BigDecimal billTotalAmount;
|
||||||
|
|
||||||
|
@Excel(name = "优惠金额")
|
||||||
|
private BigDecimal billDiscountAmount;
|
||||||
|
|
||||||
|
@Excel(name = "账单金额")
|
||||||
|
private BigDecimal billAmount;
|
||||||
|
|
||||||
|
@Excel(name = "已收/付金额")
|
||||||
|
private BigDecimal billAmountSettlement;
|
||||||
|
|
||||||
|
@Excel(name = "未收/付金额")
|
||||||
|
private BigDecimal billAmountUnsettled;
|
||||||
|
|
||||||
|
@Excel(name = "期望金额")
|
||||||
|
private BigDecimal billExpectedAmount;
|
||||||
|
|
||||||
|
@Excel(name = "对账状态", readConverterExp = "1=-暂未确认,2-申请调账,3-财务调账,4-核对无误")
|
||||||
|
private Integer reconciliationStatus;
|
||||||
|
|
||||||
|
@Excel(name = "对账意见描述")
|
||||||
|
private String reconciliationOpinion;
|
||||||
|
|
||||||
|
@Excel(name = "客户凭证地址")
|
||||||
|
private String voucherAddress;
|
||||||
|
|
||||||
|
@Excel(name = "财务审核结果(1-同意,2-拒绝)")
|
||||||
|
private Integer financialReviewFlag;
|
||||||
|
|
||||||
|
@Excel(name = "审核意见描述")
|
||||||
|
private String financialReviewOpinion;
|
||||||
|
|
||||||
|
@Excel(name = "周期开始时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date cycleBeginTime;
|
||||||
|
|
||||||
|
@Excel(name = "周期结束时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date cycleEndTime;
|
||||||
|
|
||||||
|
@Excel(name = "收款/付款时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date settlementTime;
|
||||||
|
|
||||||
|
@Excel(name = "备注")
|
||||||
|
private String billRemark;
|
||||||
|
|
||||||
|
@Excel(name = "折扣百分比")
|
||||||
|
private BigDecimal billDiscount;
|
||||||
|
|
||||||
|
@Excel(name = "折扣上限金额")
|
||||||
|
private BigDecimal billDiscountLimit;
|
||||||
|
|
||||||
|
@Excel(name = "费用计算精度code")
|
||||||
|
private String costAccuracyCode;
|
||||||
|
|
||||||
|
@Excel(name = "费用计算精度name")
|
||||||
|
private String costAccuracyName;
|
||||||
|
|
||||||
|
@Excel(name = "尾数计算code")
|
||||||
|
private String tailCalculationCode;
|
||||||
|
|
||||||
|
@Excel(name = "尾数计算name")
|
||||||
|
private String tailCalculationName;
|
||||||
|
|
||||||
|
@Excel(name = "账单金额精度code")
|
||||||
|
private String amountAccuracyCode;
|
||||||
|
|
||||||
|
@Excel(name = "账单金额精度name")
|
||||||
|
private String amountAccuracyName;
|
||||||
|
|
||||||
|
/** ====== 新增明细字段(来源于 bill_detail + billing_statement) ====== */
|
||||||
|
@Excel(name = "费用类别")
|
||||||
|
private String feeType;
|
||||||
|
|
||||||
|
@Excel(name = "费用类型code")
|
||||||
|
private String serviceItemsCode;
|
||||||
|
|
||||||
|
@Excel(name = "费用类型")
|
||||||
|
private String serviceItemsName;
|
||||||
|
|
||||||
|
@Excel(name = "一级费用科目code")
|
||||||
|
private String firstSubjectCode;
|
||||||
|
|
||||||
|
@Excel(name = "一级费用科目")
|
||||||
|
private String firstSubjectName;
|
||||||
|
|
||||||
|
@Excel(name = "二级费用科目code")
|
||||||
|
private String secondSubjectCode;
|
||||||
|
|
||||||
|
@Excel(name = "二级费用科目")
|
||||||
|
private String secondSubjectName;
|
||||||
|
|
||||||
|
@Excel(name = "明细金额")
|
||||||
|
private BigDecimal billingAmount;
|
||||||
|
}
|
||||||
@@ -6,6 +6,8 @@ import java.util.Set;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
import java.util.stream.Stream;
|
import java.util.stream.Stream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.URLEncoder;
|
||||||
|
|
||||||
import com.mhd.bms.application.server.billManage.BillManageApplicationService;
|
import com.mhd.bms.application.server.billManage.BillManageApplicationService;
|
||||||
import com.mhd.bms.domain.billManage.repository.po.BillDetailPO;
|
import com.mhd.bms.domain.billManage.repository.po.BillDetailPO;
|
||||||
@@ -13,7 +15,9 @@ import com.mhd.bms.domain.billingStatement.repository.todo.BillingStatementDO;
|
|||||||
import com.mhd.bms.domain.ncLog.entity.NcLog;
|
import com.mhd.bms.domain.ncLog.entity.NcLog;
|
||||||
import com.mhd.bms.infrastructure.utils.UniqueKeyUtil;
|
import com.mhd.bms.infrastructure.utils.UniqueKeyUtil;
|
||||||
import com.mhd.bms.interfaces.dto.billingStatement.BillingStatementDTO;
|
import com.mhd.bms.interfaces.dto.billingStatement.BillingStatementDTO;
|
||||||
|
import com.mhd.bms.interfaces.dto.billManage.BillManageExportVO;
|
||||||
import com.mhd.common.core.exception.ServiceException;
|
import com.mhd.common.core.exception.ServiceException;
|
||||||
|
import com.mhd.common.core.utils.poi.ExcelUtil;
|
||||||
import com.mhd.common.log.annotation.Log;
|
import com.mhd.common.log.annotation.Log;
|
||||||
import com.mhd.common.log.enums.BusinessType;
|
import com.mhd.common.log.enums.BusinessType;
|
||||||
import com.mhd.common.redis.enums.RedisLockTypeEnum;
|
import com.mhd.common.redis.enums.RedisLockTypeEnum;
|
||||||
@@ -31,6 +35,7 @@ import com.mhd.bms.domain.billManage.repository.todo.BillManageDO;
|
|||||||
import com.mhd.bms.domain.billManage.repository.po.BillManagePO;
|
import com.mhd.bms.domain.billManage.repository.po.BillManagePO;
|
||||||
import com.mhd.bms.interfaces.assembler.billManage.BillManageAssembler;
|
import com.mhd.bms.interfaces.assembler.billManage.BillManageAssembler;
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import com.mhd.common.core.web.controller.BaseController;
|
import com.mhd.common.core.web.controller.BaseController;
|
||||||
import com.mhd.common.core.web.domain.AjaxResult;
|
import com.mhd.common.core.web.domain.AjaxResult;
|
||||||
import com.mhd.common.core.web.page.TableDataInfo;
|
import com.mhd.common.core.web.page.TableDataInfo;
|
||||||
@@ -79,6 +84,55 @@ public class BillManageApi extends BaseController{
|
|||||||
return AjaxResult.success(billManageApplicationService.listCount(billManageDO));
|
return AjaxResult.success(billManageApplicationService.listCount(billManageDO));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ApiOperation("导出应收账单")
|
||||||
|
@GetMapping(value = "/exportReceivableList", produces = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
|
||||||
|
public void exportReceivableList(BillManageDTO billManageDTO, HttpServletResponse response) throws IOException
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
BillManageDO billManageDO = new BillManageDO();
|
||||||
|
BeanUtils.copyProperties(billManageDTO,billManageDO);
|
||||||
|
billManageDO.setBillType(1);
|
||||||
|
//查全部(不分页)
|
||||||
|
List<BillManagePO> list = billManageApplicationService.queryList(billManageDO);
|
||||||
|
|
||||||
|
//扁平化处理:一条明细生成一行
|
||||||
|
List<BillManageExportVO> exportList = new ArrayList<>();
|
||||||
|
for (BillManagePO bill : list) {
|
||||||
|
List<BillDetailPO> details = bill.getBillDetailPOList();
|
||||||
|
if (details != null && !details.isEmpty()) {
|
||||||
|
for (BillDetailPO detail : details) {
|
||||||
|
BillManageExportVO vo = new BillManageExportVO();
|
||||||
|
//复制全部账单头字段
|
||||||
|
BeanUtils.copyProperties(bill, vo);
|
||||||
|
//覆盖明细字段
|
||||||
|
vo.setFeeType(detail.getFeeType());
|
||||||
|
vo.setServiceItemsCode(detail.getServiceItemsCode());
|
||||||
|
vo.setServiceItemsName(detail.getServiceItemsName());
|
||||||
|
vo.setFirstSubjectCode(detail.getFirstSubjectCode());
|
||||||
|
vo.setFirstSubjectName(detail.getFirstSubjectName());
|
||||||
|
vo.setSecondSubjectCode(detail.getSecondSubjectCode());
|
||||||
|
vo.setSecondSubjectName(detail.getSecondSubjectName());
|
||||||
|
vo.setBillingAmount(detail.getBillingAmount());
|
||||||
|
exportList.add(vo);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//没有明细也要有一行
|
||||||
|
BillManageExportVO vo = new BillManageExportVO();
|
||||||
|
BeanUtils.copyProperties(bill, vo);
|
||||||
|
exportList.add(vo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//设置下载头,防止浏览器乱码
|
||||||
|
String fileName = URLEncoder.encode("应收账单", "UTF-8").replaceAll("\\+", "%20");
|
||||||
|
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
|
||||||
|
response.setCharacterEncoding("utf-8");
|
||||||
|
response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");
|
||||||
|
|
||||||
|
ExcelUtil<BillManageExportVO> util = new ExcelUtil<>(BillManageExportVO.class);
|
||||||
|
util.exportExcel(response, exportList, "应收账单");
|
||||||
|
}
|
||||||
|
|
||||||
@ApiOperation("获取nc推送日志")
|
@ApiOperation("获取nc推送日志")
|
||||||
@GetMapping(value = "/getNcLog")
|
@GetMapping(value = "/getNcLog")
|
||||||
public AjaxResult getNcLog(@RequestParam(name = "billManageId") Long billManageId, @RequestParam(name = "type") Long type)
|
public AjaxResult getNcLog(@RequestParam(name = "billManageId") Long billManageId, @RequestParam(name = "type") Long type)
|
||||||
@@ -258,7 +312,7 @@ public class BillManageApi extends BaseController{
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ApiOperation("复制账单")
|
@ApiOperation("复制账单-获取原账单数据用于回显")
|
||||||
@PostMapping("/copyBill")
|
@PostMapping("/copyBill")
|
||||||
public AjaxResult copyBill(@RequestBody BillManageDTO billManageDTO)
|
public AjaxResult copyBill(@RequestBody BillManageDTO billManageDTO)
|
||||||
{
|
{
|
||||||
@@ -266,8 +320,8 @@ public class BillManageApi extends BaseController{
|
|||||||
throw new ServiceException("原账单id不能为空");
|
throw new ServiceException("原账单id不能为空");
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
Boolean result = billManageApplicationService.copyBill(billManageDTO);
|
BillManagePO result = billManageApplicationService.copyBill(billManageDTO);
|
||||||
return toAjax(result);
|
return AjaxResult.success(result);
|
||||||
}catch (Exception e){
|
}catch (Exception e){
|
||||||
return AjaxResult.error("复制账单失败:"+e.getMessage());
|
return AjaxResult.error("复制账单失败:"+e.getMessage());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -166,12 +166,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<if test="businessDocumentDO.contractName != null and businessDocumentDO.contractName != ''">
|
<if test="businessDocumentDO.contractName != null and businessDocumentDO.contractName != ''">
|
||||||
AND contract_name like concat('%', #{businessDocumentDO.contractName}, '%')
|
AND contract_name like concat('%', #{businessDocumentDO.contractName}, '%')
|
||||||
</if>
|
</if>
|
||||||
|
<!-- <if test="businessDocumentDO.billAmount != null and businessDocumentDO.billAmount != ''">-->
|
||||||
|
<!-- AND bill_amount like concat('%', #{businessDocumentDO.billAmount}, '%')-->
|
||||||
|
<!-- </if>-->
|
||||||
<if test="businessDocumentDO.billAmount != null and businessDocumentDO.billAmount != ''">
|
<if test="businessDocumentDO.billAmount != null and businessDocumentDO.billAmount != ''">
|
||||||
AND bill_amount like concat('%', #{businessDocumentDO.billAmount}, '%')
|
and bill_amount = #{businessDocumentDO.billAmount}
|
||||||
</if>
|
</if>
|
||||||
<if test="businessDocumentDO.estimatedCost != null and businessDocumentDO.estimatedCost != ''">
|
<if test="businessDocumentDO.estimatedCost != null and businessDocumentDO.estimatedCost != ''">
|
||||||
AND estimated_cost like concat('%', #{businessDocumentDO.estimatedCost}, '%')
|
AND estimated_cost = #{businessDocumentDO.estimatedCost}
|
||||||
</if>
|
</if>
|
||||||
|
<!-- <if test="businessDocumentDO.estimatedCost != null and businessDocumentDO.estimatedCost != ''">-->
|
||||||
|
<!-- AND estimated_cost like concat('%', #{businessDocumentDO.estimatedCost}, '%')-->
|
||||||
|
<!-- </if>-->
|
||||||
<if test="businessDocumentDO.firstSubjectName != null and businessDocumentDO.firstSubjectName != ''">
|
<if test="businessDocumentDO.firstSubjectName != null and businessDocumentDO.firstSubjectName != ''">
|
||||||
AND first_subject_name like concat('%', #{businessDocumentDO.firstSubjectName}, '%')
|
AND first_subject_name like concat('%', #{businessDocumentDO.firstSubjectName}, '%')
|
||||||
</if>
|
</if>
|
||||||
@@ -193,6 +199,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<if test="businessDocumentDO.documentTypeCode != null and businessDocumentDO.documentTypeCode != ''">
|
<if test="businessDocumentDO.documentTypeCode != null and businessDocumentDO.documentTypeCode != ''">
|
||||||
AND document_type_code = #{businessDocumentDO.documentTypeCode}
|
AND document_type_code = #{businessDocumentDO.documentTypeCode}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="businessDocumentDO.salesmanId != null and businessDocumentDO.salesmanId != ''">
|
||||||
|
AND document_type_code = #{businessDocumentDO.salesmanId}
|
||||||
|
</if>
|
||||||
<if test="businessDocumentDO.businessDocumentIdSet != null">
|
<if test="businessDocumentDO.businessDocumentIdSet != null">
|
||||||
and business_document_id in
|
and business_document_id in
|
||||||
<foreach item="id" collection="businessDocumentDO.businessDocumentIdSet" open="(" separator="," close=")">
|
<foreach item="id" collection="businessDocumentDO.businessDocumentIdSet" open="(" separator="," close=")">
|
||||||
|
|||||||
+16
@@ -271,9 +271,25 @@ public class ReservationStockInOrderImpl extends ServiceImpl<ReservationStockInO
|
|||||||
Long materialInventoryId = reservationMaterialInventoryPO.getMaterialInventoryId();
|
Long materialInventoryId = reservationMaterialInventoryPO.getMaterialInventoryId();
|
||||||
String batchNumber = reservationMaterialInventoryPO.getBatchNumber();
|
String batchNumber = reservationMaterialInventoryPO.getBatchNumber();
|
||||||
String lotNumber = reservationMaterialInventoryPO.getLotNumber();
|
String lotNumber = reservationMaterialInventoryPO.getLotNumber();
|
||||||
|
Long warehouseId = reservationMaterialInventoryPO.getWarehouseId();
|
||||||
|
String warehouseCode = reservationMaterialInventoryPO.getWarehouseCode();
|
||||||
|
String warehouseName = reservationMaterialInventoryPO.getWarehouseName();
|
||||||
|
String inOrderNumber = reservationMaterialInventoryPO.getInOrderNumber();
|
||||||
|
BigDecimal inventoryQuantity = reservationMaterialInventoryPO.getInventoryQuantity();
|
||||||
|
String unit = reservationMaterialInventoryPO.getUnit();
|
||||||
|
String unitName = reservationMaterialInventoryPO.getUnitName();
|
||||||
reservationOutMaterialDetailDO.setMaterialInventoryId(materialInventoryId);
|
reservationOutMaterialDetailDO.setMaterialInventoryId(materialInventoryId);
|
||||||
reservationOutMaterialDetailDO.setBatchNumber(batchNumber);
|
reservationOutMaterialDetailDO.setBatchNumber(batchNumber);
|
||||||
reservationOutMaterialDetailDO.setLotNo(lotNumber);
|
reservationOutMaterialDetailDO.setLotNo(lotNumber);
|
||||||
|
reservationOutMaterialDetailDO.setWarehouseId(warehouseId);
|
||||||
|
reservationOutMaterialDetailDO.setWarehouseCode(warehouseCode);
|
||||||
|
reservationOutMaterialDetailDO.setWarehouseName(warehouseName);
|
||||||
|
reservationOutMaterialDetailDO.setInOrderNumber(inOrderNumber);
|
||||||
|
reservationOutMaterialDetailDO.setStockQuantity(inventoryQuantity);
|
||||||
|
reservationOutMaterialDetailDO.setUnit(unit);
|
||||||
|
reservationOutMaterialDetailDO.setStockUnit(unitName);
|
||||||
|
reservationOutMaterialDetailDO.setInventoryQuantity(inventoryQuantity);
|
||||||
|
reservationOutMaterialDetailDO.setUnitName(unitName);
|
||||||
} else {
|
} else {
|
||||||
throw new RuntimeException("物料批次库存数量少于出库数量!");
|
throw new RuntimeException("物料批次库存数量少于出库数量!");
|
||||||
}
|
}
|
||||||
|
|||||||
+27
@@ -2,6 +2,8 @@ package com.mhd.oms.domain.reserveStockInOrder.repository.mapper;
|
|||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
//import com.mhd.oms.domain.reservationInMaterialDetail.repository.po.ReserveInMaterialDetailPO;
|
//import com.mhd.oms.domain.reservationInMaterialDetail.repository.po.ReserveInMaterialDetailPO;
|
||||||
|
import com.mhd.common.core.domain.po.UserPo;
|
||||||
|
import com.mhd.common.core.domain.po.WarehousePO;
|
||||||
import com.mhd.oms.domain.reservationStockInOrder.repository.po.MaterialBaseInfoPO;
|
import com.mhd.oms.domain.reservationStockInOrder.repository.po.MaterialBaseInfoPO;
|
||||||
import com.mhd.oms.domain.reservationStockInOrder.repository.po.MaterialGoodsRulePO;
|
import com.mhd.oms.domain.reservationStockInOrder.repository.po.MaterialGoodsRulePO;
|
||||||
import com.mhd.oms.domain.reservationStockInOrder.repository.po.MaterialWarehouseControlPO;
|
import com.mhd.oms.domain.reservationStockInOrder.repository.po.MaterialWarehouseControlPO;
|
||||||
@@ -50,4 +52,29 @@ public interface ReserveStockInOrderMapper extends BaseMapper<ReserveStockInOrde
|
|||||||
int countByOrderNumberPrefix(@Param("prefix") String prefix);
|
int countByOrderNumberPrefix(@Param("prefix") String prefix);
|
||||||
|
|
||||||
List<String> generateReserveOrderNumber1(@Param("prefix") String prefix);
|
List<String> generateReserveOrderNumber1(@Param("prefix") String prefix);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据货主名称查询用户(老系统数据导入用)
|
||||||
|
*/
|
||||||
|
List<UserPo> getShipperByName(@Param("name") String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据仓库名称查询仓库(老系统数据导入用)
|
||||||
|
*/
|
||||||
|
List<WarehousePO> getWarehouseByName(@Param("name") String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据仓库类型查询仓库(老系统数据导入用,1=干仓 2=冬仓)
|
||||||
|
*/
|
||||||
|
List<WarehousePO> getWarehouseByType(@Param("warehouseType") String warehouseType);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据货主用户ID查询NC客户编码
|
||||||
|
*/
|
||||||
|
String getCustomerNcCodeByUserId(@Param("id") Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据入库单号精确统计(导入防重用)
|
||||||
|
*/
|
||||||
|
int countByInOrderNumber(@Param("inOrderNumber") String inOrderNumber);
|
||||||
}
|
}
|
||||||
+48
@@ -1,12 +1,16 @@
|
|||||||
package com.mhd.oms.domain.reserveStockInOrder.repository.util;
|
package com.mhd.oms.domain.reserveStockInOrder.repository.util;
|
||||||
|
|
||||||
import com.alibaba.excel.EasyExcel;
|
import com.alibaba.excel.EasyExcel;
|
||||||
|
import com.mhd.common.core.utils.StringUtils;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.listener.ReservedInventoryListener;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.listener.ReservedInventoryListener;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.LegacyReserveInDetailVO;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.LegacyReserveInOrderVO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.ReservedInventory;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.ReservedInventory;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Excel解析工具类
|
* Excel解析工具类
|
||||||
@@ -56,6 +60,50 @@ public class ExcelParseUtil {
|
|||||||
return dataList;
|
return dataList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解析老系统《入库预约单列表》Excel(表头第1行,数据从第2行开始)
|
||||||
|
* @param file 上传的Excel文件
|
||||||
|
* @return 老系统入库预约单主表行列表
|
||||||
|
* @throws IOException 文件处理异常
|
||||||
|
*/
|
||||||
|
public static List<LegacyReserveInOrderVO> parseLegacyOrderExcel(MultipartFile file) throws IOException {
|
||||||
|
validateFile(file);
|
||||||
|
List<LegacyReserveInOrderVO> dataList;
|
||||||
|
try (InputStream inputStream = file.getInputStream()) {
|
||||||
|
dataList = EasyExcel.read(inputStream)
|
||||||
|
.head(LegacyReserveInOrderVO.class)
|
||||||
|
.sheet(0)
|
||||||
|
.headRowNumber(1)
|
||||||
|
.doReadSync();
|
||||||
|
}
|
||||||
|
// 过滤入库单号为空的无效行
|
||||||
|
return dataList.stream()
|
||||||
|
.filter(row -> row != null && StringUtils.isNotBlank(row.getInOrderNumber()))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解析老系统《入库预约单明细列表》Excel(表头第1行,数据从第2行开始)
|
||||||
|
* @param file 上传的Excel文件
|
||||||
|
* @return 老系统入库预约单明细行列表
|
||||||
|
* @throws IOException 文件处理异常
|
||||||
|
*/
|
||||||
|
public static List<LegacyReserveInDetailVO> parseLegacyDetailExcel(MultipartFile file) throws IOException {
|
||||||
|
validateFile(file);
|
||||||
|
List<LegacyReserveInDetailVO> dataList;
|
||||||
|
try (InputStream inputStream = file.getInputStream()) {
|
||||||
|
dataList = EasyExcel.read(inputStream)
|
||||||
|
.head(LegacyReserveInDetailVO.class)
|
||||||
|
.sheet(0)
|
||||||
|
.headRowNumber(1)
|
||||||
|
.doReadSync();
|
||||||
|
}
|
||||||
|
// 过滤入库单号为空的无效行
|
||||||
|
return dataList.stream()
|
||||||
|
.filter(row -> row != null && StringUtils.isNotBlank(row.getInOrderNumber()))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 验证Excel文件合法性
|
* 验证Excel文件合法性
|
||||||
*/
|
*/
|
||||||
|
|||||||
+77
@@ -0,0 +1,77 @@
|
|||||||
|
package com.mhd.oms.domain.reserveStockInOrder.repository.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.util.StringToBigDecimalConverter;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.util.StringToDateConverter;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统入库预约单明细行
|
||||||
|
* 与老系统导出Excel《入库预约单明细列表》字段一一映射(表头第1行,数据从第2行开始)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class LegacyReserveInDetailVO {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 入库单号(必填,与主表关联键)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 0, value = "入库单号")
|
||||||
|
private String inOrderNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计划数量(必填)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 1, value = "计划数量", converter = StringToBigDecimalConverter.class)
|
||||||
|
private BigDecimal quantity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 物料名称(必填,用于匹配新系统物料基础信息)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 2, value = "物料名称")
|
||||||
|
private String materialName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单位名称
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 3, value = "单位名称")
|
||||||
|
private String unitName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 4, value = "创建时间", converter = StringToDateConverter.class)
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 5, value = "修改时间", converter = StringToDateConverter.class)
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人名称(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 6, value = "创建人名称")
|
||||||
|
private String createByName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人名称(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 7, value = "修改人名称")
|
||||||
|
private String updateByName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 总净重(KG)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 8, value = "总净重(KG)", converter = StringToBigDecimalConverter.class)
|
||||||
|
private BigDecimal totalNetWeight;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 9, value = "备注")
|
||||||
|
private String remark;
|
||||||
|
}
|
||||||
+93
@@ -0,0 +1,93 @@
|
|||||||
|
package com.mhd.oms.domain.reserveStockInOrder.repository.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.util.StringToDateConverter;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统入库预约单主表行
|
||||||
|
* 与老系统导出Excel《入库预约单列表》字段一一映射(表头第1行,数据从第2行开始)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class LegacyReserveInOrderVO {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 入库单号(必填,与明细表关联键)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 0, value = "入库单号")
|
||||||
|
private String inOrderNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 入仓时间
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 1, value = "入仓时间", converter = StringToDateConverter.class)
|
||||||
|
private Date warehouseDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 制单人
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 2, value = "制单人")
|
||||||
|
private String documentCreator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 制单时间
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 3, value = "制单时间", converter = StringToDateConverter.class)
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 货主名称(必填,用于匹配新系统用户)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 4, value = "货主名称")
|
||||||
|
private String shipperName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 5, value = "备注")
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 6, value = "创建时间", converter = StringToDateConverter.class)
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 7, value = "修改时间", converter = StringToDateConverter.class)
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人名称(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 8, value = "创建人名称")
|
||||||
|
private String createByName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人名称(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 9, value = "修改人名称")
|
||||||
|
private String updateByName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统仓库id(跨系统id不可用,仅做占位)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 10, value = "仓库id")
|
||||||
|
private String oldWarehouseId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 仓库名称(用于匹配新系统仓库)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 11, value = "仓库名称")
|
||||||
|
private String warehouseName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 仓库类型(1=干仓 2=冬仓,用于仓库名称匹配兜底)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 12, value = "仓库类型")
|
||||||
|
private String warehouseType;
|
||||||
|
}
|
||||||
+249
@@ -5,6 +5,7 @@ import cn.hutool.json.JSONUtil;
|
|||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
import com.alibaba.fastjson2.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.mhd.common.core.domain.po.UserPo;
|
import com.mhd.common.core.domain.po.UserPo;
|
||||||
|
import com.mhd.common.core.domain.po.WarehousePO;
|
||||||
import com.mhd.common.core.enums.DictCode;
|
import com.mhd.common.core.enums.DictCode;
|
||||||
import com.mhd.common.core.exception.ServiceException;
|
import com.mhd.common.core.exception.ServiceException;
|
||||||
import com.mhd.common.core.utils.OrderSequence;
|
import com.mhd.common.core.utils.OrderSequence;
|
||||||
@@ -16,15 +17,21 @@ import com.mhd.oms.domain.reservationMaterialInventory.repository.todo.MaterialB
|
|||||||
import com.mhd.oms.domain.reservationStockInOrder.repository.mapper.ReservationStockInOrderMapper;
|
import com.mhd.oms.domain.reservationStockInOrder.repository.mapper.ReservationStockInOrderMapper;
|
||||||
import com.mhd.oms.domain.reservationStockInOrder.repository.po.MaterialBaseInfoPO;
|
import com.mhd.oms.domain.reservationStockInOrder.repository.po.MaterialBaseInfoPO;
|
||||||
import com.mhd.oms.domain.reserveInMaterialDetail.entity.ReserveInMaterialDetail;
|
import com.mhd.oms.domain.reserveInMaterialDetail.entity.ReserveInMaterialDetail;
|
||||||
|
import com.mhd.oms.domain.reserveInMaterialDetail.repository.facade.IReserveInMaterialDetailService;
|
||||||
import com.mhd.oms.domain.reserveInMaterialDetail.repository.po.ReserveInMaterialDetailPO;
|
import com.mhd.oms.domain.reserveInMaterialDetail.repository.po.ReserveInMaterialDetailPO;
|
||||||
import com.mhd.oms.domain.reserveInMaterialDetail.repository.todo.ReserveInMaterialDetailDO;
|
import com.mhd.oms.domain.reserveInMaterialDetail.repository.todo.ReserveInMaterialDetailDO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.entity.ReserveStockInOrder;
|
import com.mhd.oms.domain.reserveStockInOrder.entity.ReserveStockInOrder;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.facade.IReserveStockInOrderService;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.listener.ValidationException;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.mapper.ReserveStockInOrderMapper;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.mapper.ReserveStockInOrderMapper;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.po.ReserveStockInOrderPO;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.po.ReserveStockInOrderPO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrderDO;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrderDO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrderDTO;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrderDTO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.InAndOutListVo;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.InAndOutListVo;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.LegacyReserveInDetailVO;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.LegacyReserveInOrderVO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.ReservedInventory;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.ReservedInventory;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.mapper.ReserveStockOutOrderMapper;
|
||||||
import com.mhd.system.api.SystemServiceFeign;
|
import com.mhd.system.api.SystemServiceFeign;
|
||||||
import com.mhd.system.api.UserServiceFeign;
|
import com.mhd.system.api.UserServiceFeign;
|
||||||
import com.mhd.system.api.WmsServiceFeign;
|
import com.mhd.system.api.WmsServiceFeign;
|
||||||
@@ -38,6 +45,7 @@ import org.apache.poi.ss.usermodel.DateUtil;
|
|||||||
import org.springframework.beans.BeanUtils;
|
import org.springframework.beans.BeanUtils;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.text.ParseException;
|
import java.text.ParseException;
|
||||||
@@ -61,6 +69,8 @@ public class ReserveStockInOrderApplicationService {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private ReserveStockInOrderMapper reserveStockInOrderMapper;
|
private ReserveStockInOrderMapper reserveStockInOrderMapper;
|
||||||
@Autowired
|
@Autowired
|
||||||
|
private ReserveStockOutOrderMapper reserveStockOutOrderMapper;
|
||||||
|
@Autowired
|
||||||
private ReservationMaterialInventoryMapper reservationMaterialInventoryMapper;
|
private ReservationMaterialInventoryMapper reservationMaterialInventoryMapper;
|
||||||
@Autowired
|
@Autowired
|
||||||
private UserServiceFeign userServiceFeign;
|
private UserServiceFeign userServiceFeign;
|
||||||
@@ -70,6 +80,10 @@ public class ReserveStockInOrderApplicationService {
|
|||||||
private WmsServiceFeign wmsServiceFeign;
|
private WmsServiceFeign wmsServiceFeign;
|
||||||
@Autowired
|
@Autowired
|
||||||
private ReservationStockInOrderMapper reservationStockInOrderMapper;
|
private ReservationStockInOrderMapper reservationStockInOrderMapper;
|
||||||
|
@Autowired
|
||||||
|
private IReserveStockInOrderService stockInOrderService;
|
||||||
|
@Autowired
|
||||||
|
private IReserveInMaterialDetailService materialDetailService;
|
||||||
// @Autowired
|
// @Autowired
|
||||||
// private IMaterialBaseInfoService materialBaseInfoService;
|
// private IMaterialBaseInfoService materialBaseInfoService;
|
||||||
|
|
||||||
@@ -2039,6 +2053,241 @@ public class ReserveStockInOrderApplicationService {
|
|||||||
insert(reserveStockInOrder);
|
insert(reserveStockInOrder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统入库预约单数据导入(主表+明细两个Excel,多单批量导入)
|
||||||
|
* 老系统的id类字段不可用,货主、仓库、物料均按名称匹配新系统基础数据
|
||||||
|
*/
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public Map<String, Object> importLegacyData(List<LegacyReserveInOrderVO> orderList, List<LegacyReserveInDetailVO> detailList) {
|
||||||
|
if (orderList == null || orderList.isEmpty()) {
|
||||||
|
throw new ValidationException("入库预约单列表文件中没有有效数据");
|
||||||
|
}
|
||||||
|
if (detailList == null || detailList.isEmpty()) {
|
||||||
|
throw new ValidationException("入库预约单明细列表文件中没有有效数据");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 明细按入库单号分组
|
||||||
|
Map<String, List<LegacyReserveInDetailVO>> detailGroupMap = new LinkedHashMap<>();
|
||||||
|
for (LegacyReserveInDetailVO detailRow : detailList) {
|
||||||
|
detailGroupMap.computeIfAbsent(detailRow.getInOrderNumber().trim(), k -> new ArrayList<>()).add(detailRow);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> errorList = new ArrayList<>();
|
||||||
|
// 名称匹配结果缓存,避免重复查库
|
||||||
|
Map<String, UserPo> shipperCache = new HashMap<>();
|
||||||
|
Map<String, WarehousePO> warehouseCache = new HashMap<>();
|
||||||
|
// 仓库类型 -> 仓库 缓存(用于名称匹配失败时的兜底)
|
||||||
|
Map<String, WarehousePO> warehouseTypeCache = new HashMap<>();
|
||||||
|
Map<String, MaterialBaseInfoPO> materialCache = new HashMap<>();
|
||||||
|
|
||||||
|
Set<String> orderNumberSet = new HashSet<>();
|
||||||
|
List<ReserveStockInOrderDO> stockInOrderList = new ArrayList<>();
|
||||||
|
int lotIndex = 1;
|
||||||
|
for (LegacyReserveInOrderVO orderRow : orderList) {
|
||||||
|
String orderNumber = orderRow.getInOrderNumber().trim();
|
||||||
|
if (!orderNumberSet.add(orderNumber)) {
|
||||||
|
errorList.add("入库单号【" + orderNumber + "】在主表文件中重复");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (reserveStockInOrderMapper.countByInOrderNumber(orderNumber) > 0) {
|
||||||
|
errorList.add("入库单号【" + orderNumber + "】在系统中已存在,请勿重复导入");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// 按货主名称匹配用户(查不到则用Excel中的名称兜底,不阻断导入)
|
||||||
|
UserPo shipper = null;
|
||||||
|
String shipperName = StringUtils.trimToEmpty(orderRow.getShipperName());
|
||||||
|
if (StringUtils.isBlank(shipperName)) {
|
||||||
|
errorList.add("入库单号【" + orderNumber + "】货主名称为空");
|
||||||
|
} else {
|
||||||
|
shipper = shipperCache.get(shipperName);
|
||||||
|
if (shipper == null) {
|
||||||
|
List<UserPo> userPoList = reserveStockInOrderMapper.getShipperByName(shipperName);
|
||||||
|
if (userPoList == null || userPoList.isEmpty()) {
|
||||||
|
errorList.add("入库单号【" + orderNumber + "】货主【" + shipperName + "】未找到对应用户,将仅以名称导入");
|
||||||
|
} else {
|
||||||
|
shipper = userPoList.get(0);
|
||||||
|
shipperCache.put(shipperName, shipper);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 按仓库类型匹配仓库(老系统仓库类型 1=干仓 2=冬仓,查不到则用类型名兜底)
|
||||||
|
String warehouseName = "";
|
||||||
|
WarehousePO warehouse = null;
|
||||||
|
String warehouseType = StringUtils.trimToEmpty(orderRow.getWarehouseType());
|
||||||
|
if (StringUtils.isNotBlank(warehouseType)) {
|
||||||
|
warehouse = warehouseTypeCache.get(warehouseType);
|
||||||
|
if (warehouse == null) {
|
||||||
|
List<WarehousePO> warehousePOList = reserveStockOutOrderMapper.getWarehouseByType(warehouseType);
|
||||||
|
if (warehousePOList == null || warehousePOList.isEmpty()) {
|
||||||
|
warehouseName = "1".equals(warehouseType) ? "干仓" : ("2".equals(warehouseType) ? "冻仓" : "");
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】仓库类型【" + warehouseType + "】未找到对应仓库,将仅以名称导入");
|
||||||
|
warehouseTypeCache.put(warehouseType, null);
|
||||||
|
warehouse = null;
|
||||||
|
} else {
|
||||||
|
warehouse = warehousePOList.get(0);
|
||||||
|
warehouseName = warehouse.getWarehouseName();
|
||||||
|
warehouseTypeCache.put(warehouseType, warehouse);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 明细匹配
|
||||||
|
List<LegacyReserveInDetailVO> detailRows = detailGroupMap.get(orderNumber);
|
||||||
|
if (detailRows == null || detailRows.isEmpty()) {
|
||||||
|
errorList.add("入库单号【" + orderNumber + "】在明细文件中没有明细数据");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
List<ReserveInMaterialDetailDO> materialDetailList = new ArrayList<>();
|
||||||
|
for (LegacyReserveInDetailVO detailRow : detailRows) {
|
||||||
|
String materialName = StringUtils.trimToEmpty(detailRow.getMaterialName());
|
||||||
|
if (StringUtils.isBlank(materialName)) {
|
||||||
|
errorList.add("入库单号【" + orderNumber + "】存在物料名称为空的明细行");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// 按物料名称匹配物料基础信息(查不到则用Excel中的名称兜底,不阻断导入)
|
||||||
|
MaterialBaseInfoPO materialBaseInfoPO = materialCache.get(materialName);
|
||||||
|
if (materialBaseInfoPO == null) {
|
||||||
|
List<MaterialBaseInfoPO> materialBaseInfoPOS = reserveStockInOrderMapper.getByName(materialName);
|
||||||
|
if (materialBaseInfoPOS == null || materialBaseInfoPOS.isEmpty()) {
|
||||||
|
errorList.add("入库单号【" + orderNumber + "】物料【" + materialName + "】未找到对应物料,将仅以名称导入");
|
||||||
|
} else {
|
||||||
|
materialBaseInfoPO = materialBaseInfoPOS.get(0);
|
||||||
|
materialCache.put(materialName, materialBaseInfoPO);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ReserveInMaterialDetailDO materialDetail = new ReserveInMaterialDetailDO();
|
||||||
|
if (materialBaseInfoPO != null) {
|
||||||
|
materialDetail.setMaterialBaseInfoId(materialBaseInfoPO.getMaterialBaseInfoId());
|
||||||
|
materialDetail.setMaterialCode(materialBaseInfoPO.getMaterialCode());
|
||||||
|
materialDetail.setUnitCode(materialBaseInfoPO.getUnitCode());
|
||||||
|
materialDetail.setUnitName(StringUtils.isNotBlank(materialBaseInfoPO.getUnitName()) ? materialBaseInfoPO.getUnitName() : detailRow.getUnitName());
|
||||||
|
} else {
|
||||||
|
// 未匹配到物料基础信息,仅以Excel中的名称作为物料名称
|
||||||
|
materialDetail.setUnitName(detailRow.getUnitName());
|
||||||
|
}
|
||||||
|
materialDetail.setMaterialName(materialName);
|
||||||
|
materialDetail.setReserveMaterialName(materialName);
|
||||||
|
materialDetail.setQuantity(detailRow.getQuantity());
|
||||||
|
materialDetail.setReserveQuantity(detailRow.getQuantity());
|
||||||
|
materialDetail.setTotalNetWeight(detailRow.getTotalNetWeight());
|
||||||
|
materialDetail.setTotalGrossWeight(detailRow.getTotalNetWeight());
|
||||||
|
materialDetail.setRemark(detailRow.getRemark());
|
||||||
|
materialDetail.setContractFee(BigDecimal.ZERO);
|
||||||
|
materialDetail.setLotNo(generateDateSerialNumber() + "-" + lotIndex);
|
||||||
|
lotIndex++;
|
||||||
|
// if (shipper != null) {
|
||||||
|
materialDetail.setOrganizationId(2841L);
|
||||||
|
materialDetail.setOrganizationName("仓码");
|
||||||
|
materialDetail.setTopOrganizationId(2827L);
|
||||||
|
// }
|
||||||
|
// 创建人/修改人名称取老系统Excel中的值,不使用当前登录人
|
||||||
|
materialDetail.setCreateTime(detailRow.getCreateTime() != null ? detailRow.getCreateTime() : new Date());
|
||||||
|
materialDetail.setCreateByName(detailRow.getCreateByName());
|
||||||
|
materialDetail.setUpdateTime(detailRow.getUpdateTime());
|
||||||
|
materialDetail.setUpdateByName(detailRow.getUpdateByName());
|
||||||
|
materialDetailList.add(materialDetail);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 组装入库预约单
|
||||||
|
ReserveStockInOrderDO stockInOrderDO = new ReserveStockInOrderDO();
|
||||||
|
stockInOrderDO.setInOrderNumber(orderNumber);
|
||||||
|
stockInOrderDO.setBusinessOrderNo(orderNumber);
|
||||||
|
// 老系统历史数据,状态直接置为最终状态:已入库、审核通过、已完成
|
||||||
|
stockInOrderDO.setStatus(5);
|
||||||
|
stockInOrderDO.setAuditStatus(3);
|
||||||
|
stockInOrderDO.setIssueStatus(3);
|
||||||
|
stockInOrderDO.setOrderStatus("已确认");
|
||||||
|
stockInOrderDO.setStorageTime(orderRow.getWarehouseDate());
|
||||||
|
stockInOrderDO.setNeedTransport(0);
|
||||||
|
stockInOrderDO.setNeedCustomsDeclaration(0);
|
||||||
|
stockInOrderDO.setWarehouseDate(orderRow.getWarehouseDate());
|
||||||
|
stockInOrderDO.setExpectTime(orderRow.getWarehouseDate() != null ? orderRow.getWarehouseDate() : new Date());
|
||||||
|
stockInOrderDO.setDocumentDate(orderRow.getDocumentDate() != null ? orderRow.getDocumentDate() : new Date());
|
||||||
|
stockInOrderDO.setDocumentCreator(orderRow.getDocumentCreator());
|
||||||
|
stockInOrderDO.setRemark(orderRow.getRemark());
|
||||||
|
if (shipper != null) {
|
||||||
|
stockInOrderDO.setShipperId(shipper.getUserId());
|
||||||
|
stockInOrderDO.setShipperName(shipper.getUserName());
|
||||||
|
stockInOrderDO.setCustomerId(shipper.getUserId());
|
||||||
|
stockInOrderDO.setCustomerName(shipper.getUserName());
|
||||||
|
stockInOrderDO.setSalesmanId(String.valueOf(shipper.getUserId()));
|
||||||
|
stockInOrderDO.setSalesmanName(shipper.getUserName());
|
||||||
|
stockInOrderDO.setCustomerCode(reserveStockInOrderMapper.getCustomerNcCodeByUserId(shipper.getUserId()));
|
||||||
|
// stockInOrderDO.setOrganizationId(shipper.getOrganizationId());
|
||||||
|
// stockInOrderDO.setOrganizationName(shipper.getOrganizationName());
|
||||||
|
// stockInOrderDO.setTopOrganizationId(shipper.getTopOrganizationId());
|
||||||
|
} else {
|
||||||
|
// 货主未匹配到,仅以Excel中的名称作为名称字段,id/组织留空
|
||||||
|
stockInOrderDO.setShipperName(shipperName);
|
||||||
|
stockInOrderDO.setCustomerName(shipperName);
|
||||||
|
stockInOrderDO.setSalesmanName(shipperName);
|
||||||
|
}
|
||||||
|
stockInOrderDO.setOrganizationId(2841L);
|
||||||
|
stockInOrderDO.setOrganizationName("仓码");
|
||||||
|
stockInOrderDO.setTopOrganizationId(2827L);
|
||||||
|
if (warehouse != null) {
|
||||||
|
stockInOrderDO.setWarehouseId(warehouse.getWarehouseId());
|
||||||
|
stockInOrderDO.setWarehouseCode(warehouse.getWarehouseCode());
|
||||||
|
stockInOrderDO.setWarehouseName(warehouse.getWarehouseName());
|
||||||
|
} else if (StringUtils.isNotBlank(warehouseName)) {
|
||||||
|
// 仓库未匹配到,仅以Excel中的名称作为仓库名称,id/编码留空
|
||||||
|
stockInOrderDO.setWarehouseName(warehouseName);
|
||||||
|
}
|
||||||
|
// 创建人/修改人名称取老系统Excel中的值,不使用当前登录人
|
||||||
|
stockInOrderDO.setCreateTime(orderRow.getCreateTime() != null ? orderRow.getCreateTime() : new Date());
|
||||||
|
stockInOrderDO.setCreateByName(orderRow.getCreateByName());
|
||||||
|
stockInOrderDO.setUpdateTime(orderRow.getUpdateTime());
|
||||||
|
stockInOrderDO.setUpdateByName(orderRow.getUpdateByName());
|
||||||
|
stockInOrderDO.setMaterialDetailList(materialDetailList);
|
||||||
|
stockInOrderList.add(stockInOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 明细文件中存在但主表文件中不存在的单号
|
||||||
|
for (String detailOrderNumber : detailGroupMap.keySet()) {
|
||||||
|
if (!orderNumberSet.contains(detailOrderNumber)) {
|
||||||
|
errorList.add("明细文件中入库单号【" + detailOrderNumber + "】在主表文件中不存在");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 逐单入库(即使有未匹配到基础数据的警告也不阻断,错误信息随结果返回)
|
||||||
|
// 直接走 MyBatis-Plus 入库,绕过领域服务/应用服务层的参数补全逻辑,避免货主/物料未匹配等场景报错
|
||||||
|
int detailCount = 0;
|
||||||
|
for (ReserveStockInOrderDO stockInOrderDO : stockInOrderList) {
|
||||||
|
// 主表:DO -> 实体 -> save
|
||||||
|
ReserveStockInOrder stockInOrder = new ReserveStockInOrder();
|
||||||
|
BeanUtils.copyProperties(stockInOrderDO, stockInOrder);
|
||||||
|
stockInOrder.setMaterialQuantity(stockInOrderDO.getMaterialDetailList().size());
|
||||||
|
BigDecimal totalQuantity = stockInOrderDO.getMaterialDetailList().stream()
|
||||||
|
.map(ReserveInMaterialDetailDO::getQuantity).filter(Objects::nonNull)
|
||||||
|
.reduce(BigDecimal.ZERO, BigDecimal::add);
|
||||||
|
stockInOrder.setQuantity(totalQuantity);
|
||||||
|
stockInOrder.setReserveQuantity(totalQuantity);
|
||||||
|
stockInOrderService.save(stockInOrder);
|
||||||
|
|
||||||
|
// 明细:DO -> 实体 -> saveBatch
|
||||||
|
List<ReserveInMaterialDetail> detailEntities = new ArrayList<>();
|
||||||
|
for (ReserveInMaterialDetailDO detailDO : stockInOrderDO.getMaterialDetailList()) {
|
||||||
|
ReserveInMaterialDetail detail = new ReserveInMaterialDetail();
|
||||||
|
BeanUtils.copyProperties(detailDO, detail);
|
||||||
|
detail.setInOrderNumber(stockInOrderDO.getInOrderNumber());
|
||||||
|
detail.setLevel(1);
|
||||||
|
detailEntities.add(detail);
|
||||||
|
}
|
||||||
|
if (!detailEntities.isEmpty()) {
|
||||||
|
materialDetailService.saveBatch(detailEntities);
|
||||||
|
}
|
||||||
|
detailCount += detailEntities.size();
|
||||||
|
}
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
result.put("orderCount", stockInOrderList.size());
|
||||||
|
result.put("detailCount", detailCount);
|
||||||
|
if (!errorList.isEmpty()) {
|
||||||
|
result.put("warnings", errorList);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
public static String generateDateTimeWithRandom() {
|
public static String generateDateTimeWithRandom() {
|
||||||
// 1. 获取当前时间,格式化:yyMMddHHmmss
|
// 1. 获取当前时间,格式化:yyMMddHHmmss
|
||||||
LocalDateTime now = LocalDateTime.now();
|
LocalDateTime now = LocalDateTime.now();
|
||||||
|
|||||||
+12
@@ -2,6 +2,7 @@ package com.mhd.oms.domain.reserveStockOutOrder.repository.mapper;
|
|||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
//import com.mhd.oms.domain.reservationOutMaterialDetail.repository.po.ReserveOutMaterialDetailPO;
|
//import com.mhd.oms.domain.reservationOutMaterialDetail.repository.po.ReserveOutMaterialDetailPO;
|
||||||
|
import com.mhd.common.core.domain.po.WarehousePO;
|
||||||
import com.mhd.oms.domain.reserveOutMaterialDetail.repository.po.ReserveOutMaterialDetailPO;
|
import com.mhd.oms.domain.reserveOutMaterialDetail.repository.po.ReserveOutMaterialDetailPO;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.entity.ReserveStockOutOrder;
|
import com.mhd.oms.domain.reserveStockOutOrder.entity.ReserveStockOutOrder;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.po.ReserveStockOutOrderPO;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.po.ReserveStockOutOrderPO;
|
||||||
@@ -38,4 +39,15 @@ public interface ReserveStockOutOrderMapper extends BaseMapper<ReserveStockOutOr
|
|||||||
int countByOrderNumberPrefix(@Param("prefix") String prefix);
|
int countByOrderNumberPrefix(@Param("prefix") String prefix);
|
||||||
|
|
||||||
List<String> generateReserveOrderNumber1(@Param("prefix") String prefix);
|
List<String> generateReserveOrderNumber1(@Param("prefix") String prefix);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统数据导入:根据出库单号精确统计(防重)
|
||||||
|
*/
|
||||||
|
int countByOutOrderNumber(@Param("outOrderNumber") String outOrderNumber);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统数据导入:根据仓库类型查询仓库
|
||||||
|
* @param warehouseType 仓库类型编码(如 "1"/"2")
|
||||||
|
*/
|
||||||
|
List<WarehousePO> getWarehouseByType(@Param("warehouseType") String warehouseType);
|
||||||
}
|
}
|
||||||
+52
@@ -1,7 +1,10 @@
|
|||||||
package com.mhd.oms.domain.reserveStockOutOrder.repository.util;
|
package com.mhd.oms.domain.reserveStockOutOrder.repository.util;
|
||||||
|
|
||||||
import com.alibaba.excel.EasyExcel;
|
import com.alibaba.excel.EasyExcel;
|
||||||
|
import com.mhd.common.core.utils.StringUtils;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.listener.ReservedInventoryOutListener;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.listener.ReservedInventoryOutListener;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.LegacyReserveOutDetailVO;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.LegacyReserveOutOrderVO;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.ReservedInventoryOut;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.ReservedInventoryOut;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
@@ -55,6 +58,55 @@ public class ExcelParseUtil {
|
|||||||
return dataList;
|
return dataList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解析老系统《出库预约单列表》Excel(表头第1行,数据从第2行开始)
|
||||||
|
*/
|
||||||
|
public static List<LegacyReserveOutOrderVO> parseLegacyOrderExcel(MultipartFile file) throws IOException {
|
||||||
|
validateFile(file);
|
||||||
|
List<LegacyReserveOutOrderVO> dataList;
|
||||||
|
try (InputStream inputStream = file.getInputStream()) {
|
||||||
|
dataList = EasyExcel.read(inputStream)
|
||||||
|
.head(LegacyReserveOutOrderVO.class)
|
||||||
|
.sheet(0)
|
||||||
|
.headRowNumber(1)
|
||||||
|
.doReadSync();
|
||||||
|
}
|
||||||
|
// 过滤出库单号为空的无效行
|
||||||
|
return dataList.stream()
|
||||||
|
.filter(row -> row != null && StringUtils.isNotBlank(row.getOutOrderNumber()))
|
||||||
|
.collect(java.util.stream.Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解析老系统《出库预约单明细列表》Excel(表头第1行,数据从第2行开始)
|
||||||
|
* 物料名称取物料名称1和物料名称2中有值的那一个
|
||||||
|
*/
|
||||||
|
public static List<LegacyReserveOutDetailVO> parseLegacyDetailExcel(MultipartFile file) throws IOException {
|
||||||
|
validateFile(file);
|
||||||
|
List<LegacyReserveOutDetailVO> dataList;
|
||||||
|
try (InputStream inputStream = file.getInputStream()) {
|
||||||
|
dataList = EasyExcel.read(inputStream)
|
||||||
|
.head(LegacyReserveOutDetailVO.class)
|
||||||
|
.sheet(0)
|
||||||
|
.headRowNumber(1)
|
||||||
|
.doReadSync();
|
||||||
|
}
|
||||||
|
// 过滤出库单号为空的无效行,同时把 materialName1/materialName2 中有值的赋给 materialName
|
||||||
|
return dataList.stream()
|
||||||
|
.filter(row -> row != null && StringUtils.isNotBlank(row.getOutOrderNumber()))
|
||||||
|
.map(row -> {
|
||||||
|
if (StringUtils.isBlank(row.getMaterialName())) {
|
||||||
|
if (StringUtils.isNotBlank(row.getMaterialName1())) {
|
||||||
|
row.setMaterialName(row.getMaterialName1());
|
||||||
|
} else if (StringUtils.isNotBlank(row.getMaterialName2())) {
|
||||||
|
row.setMaterialName(row.getMaterialName2());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return row;
|
||||||
|
})
|
||||||
|
.collect(java.util.stream.Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 验证Excel文件合法性
|
* 验证Excel文件合法性
|
||||||
*/
|
*/
|
||||||
|
|||||||
+91
@@ -0,0 +1,91 @@
|
|||||||
|
package com.mhd.oms.domain.reserveStockOutOrder.repository.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.util.StringToBigDecimalConverter;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.util.StringToDateConverter;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统出库预约单明细行
|
||||||
|
* 与老系统导出Excel《出库预约单明细列表》字段一一映射(表头第1行,数据从第2行开始)
|
||||||
|
* 物料名称取物料名称1和物料名称2中有值的那一个
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class LegacyReserveOutDetailVO {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统明细id(跨系统id不可用,仅做占位)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 0, value = "id")
|
||||||
|
private String oldDetailId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 出库单号(必填,关联主表)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 1, value = "出库单号")
|
||||||
|
private String outOrderNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 出库数量
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 2, value = "出库数量", converter = StringToBigDecimalConverter.class)
|
||||||
|
private BigDecimal quantity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 入库单号(老系统关联的入库单号,保留到备注或来源单号字段)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 3, value = "入库单号")
|
||||||
|
private String inOrderNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 物料名称1
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 4, value = "物料名称1")
|
||||||
|
private String materialName1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 物料名称2
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 5, value = "物料名称2")
|
||||||
|
private String materialName2;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重量(KG)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 6, value = "重量", converter = StringToBigDecimalConverter.class)
|
||||||
|
private BigDecimal weight;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 7, value = "创建时间", converter = StringToDateConverter.class)
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 8, value = "修改时间", converter = StringToDateConverter.class)
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人名称(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 9, value = "创建人名称")
|
||||||
|
private String createByName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人名称(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 10, value = "修改人名称")
|
||||||
|
private String updateByName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 取物料名称1和物料名称2中有值的那一个(不映射Excel列,运行时计算)
|
||||||
|
*/
|
||||||
|
@ExcelIgnore
|
||||||
|
private String materialName;
|
||||||
|
}
|
||||||
+82
@@ -0,0 +1,82 @@
|
|||||||
|
package com.mhd.oms.domain.reserveStockOutOrder.repository.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.util.StringToDateConverter;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统出库预约单主表行
|
||||||
|
* 与老系统导出Excel《出库预约单列表》字段一一映射(表头第1行,数据从第2行开始)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class LegacyReserveOutOrderVO {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 出库单号(必填,与明细表关联键)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 0, value = "出库单号")
|
||||||
|
private String outOrderNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 出库时间
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 1, value = "出库时间", converter = StringToDateConverter.class)
|
||||||
|
private Date outboundDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 制单人名称
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 2, value = "制单人名称")
|
||||||
|
private String documentCreator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 制单时间
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 3, value = "制单时间", converter = StringToDateConverter.class)
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 货主名称(必填,用于匹配新系统用户)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 4, value = "货主名称")
|
||||||
|
private String shipperName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 5, value = "备注")
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 6, value = "创建时间", converter = StringToDateConverter.class)
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 7, value = "修改时间", converter = StringToDateConverter.class)
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人名称(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 8, value = "创建人名称")
|
||||||
|
private String createByName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人名称(老系统)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 9, value = "修改人名称")
|
||||||
|
private String updateByName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 仓库类型:1-干仓 2-冬仓
|
||||||
|
* 用于按类型匹配新系统仓库(老系统没有仓库名称,只有仓库类型)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(index = 10, value = "仓库类型")
|
||||||
|
private String warehouseType;
|
||||||
|
}
|
||||||
+243
@@ -5,7 +5,9 @@ import cn.hutool.json.JSONUtil;
|
|||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
import com.alibaba.fastjson2.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||||
|
import com.mhd.common.core.constant.SnowFlakeConstants;
|
||||||
import com.mhd.common.core.domain.po.UserPo;
|
import com.mhd.common.core.domain.po.UserPo;
|
||||||
|
import com.mhd.common.core.domain.po.WarehousePO;
|
||||||
import com.mhd.common.core.enums.DictCode;
|
import com.mhd.common.core.enums.DictCode;
|
||||||
import com.mhd.common.core.exception.ServiceException;
|
import com.mhd.common.core.exception.ServiceException;
|
||||||
import com.mhd.common.core.utils.StringUtils;
|
import com.mhd.common.core.utils.StringUtils;
|
||||||
@@ -23,14 +25,20 @@ import com.mhd.oms.domain.reserveInMaterialDetail.repository.todo.ReserveInMater
|
|||||||
import com.mhd.oms.domain.reserveOutMaterialDetail.repository.facade.IReserveOutMaterialDetailService;
|
import com.mhd.oms.domain.reserveOutMaterialDetail.repository.facade.IReserveOutMaterialDetailService;
|
||||||
import com.mhd.oms.domain.reserveOutMaterialDetail.repository.po.ReserveOutMaterialDetailPO;
|
import com.mhd.oms.domain.reserveOutMaterialDetail.repository.po.ReserveOutMaterialDetailPO;
|
||||||
import com.mhd.oms.domain.reserveOutMaterialDetail.repository.todo.ReserveOutMaterialDetailDO;
|
import com.mhd.oms.domain.reserveOutMaterialDetail.repository.todo.ReserveOutMaterialDetailDO;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.listener.ValidationException;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.mapper.ReserveStockInOrderMapper;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.mapper.ReserveStockInOrderMapper;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrderDO;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrderDO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.ReservedInventory;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.ReservedInventory;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.entity.ReserveStockOutOrder;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.facade.IReserveStockOutOrderService;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.facade.IReserveStockOutOrderService;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.mapper.ReserveStockOutOrderMapper;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.po.ReserveStockOutOrderPO;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.po.ReserveStockOutOrderPO;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.todo.ReserveStockOutOrderDO;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.todo.ReserveStockOutOrderDO;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.todo.ReserveStockOutOrderDTO;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.todo.ReserveStockOutOrderDTO;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.LegacyReserveOutDetailVO;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.LegacyReserveOutOrderVO;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.ReservedInventoryOut;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.ReservedInventoryOut;
|
||||||
|
import com.mhd.oms.domain.reserveOutMaterialDetail.entity.ReserveOutMaterialDetail;
|
||||||
import com.mhd.system.api.SystemServiceFeign;
|
import com.mhd.system.api.SystemServiceFeign;
|
||||||
import com.mhd.system.api.UserServiceFeign;
|
import com.mhd.system.api.UserServiceFeign;
|
||||||
import com.mhd.system.api.domain.*;
|
import com.mhd.system.api.domain.*;
|
||||||
@@ -38,6 +46,7 @@ import com.mhd.system.api.model.LoginUser;
|
|||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
import org.springframework.util.CollectionUtils;
|
import org.springframework.util.CollectionUtils;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
@@ -68,6 +77,8 @@ public class ReserveStockOutOrderApplicationService {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private ReserveStockInOrderMapper reserveStockInOrderMapper;
|
private ReserveStockInOrderMapper reserveStockInOrderMapper;
|
||||||
@Autowired
|
@Autowired
|
||||||
|
private ReserveStockOutOrderMapper reserveStockOutOrderMapper;
|
||||||
|
@Autowired
|
||||||
private ReservationMaterialInventoryMapper reservationMaterialInventoryMapper;
|
private ReservationMaterialInventoryMapper reservationMaterialInventoryMapper;
|
||||||
@Autowired
|
@Autowired
|
||||||
private UserServiceFeign userServiceFeign;
|
private UserServiceFeign userServiceFeign;
|
||||||
@@ -1112,6 +1123,238 @@ public class ReserveStockOutOrderApplicationService {
|
|||||||
return stockOutOrderDomainService.queryOutStockNoticePrintDetail(stockOutOrderDO);
|
return stockOutOrderDomainService.queryOutStockNoticePrintDetail(stockOutOrderDO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统出库预约单数据导入(主表+明细两个Excel,多单批量导入)
|
||||||
|
* 老系统的id类字段不可用,货主按名称匹配新系统用户,仓库按仓库类型(1=干仓 2=冬仓)匹配新系统仓库,物料按名称匹配
|
||||||
|
* 明细表物料名称取物料名称1和物料名称2中有值的那一个
|
||||||
|
*/
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public Map<String, Object> importLegacyData(List<LegacyReserveOutOrderVO> orderList, List<LegacyReserveOutDetailVO> detailList) {
|
||||||
|
if (orderList == null || orderList.isEmpty()) {
|
||||||
|
throw new ValidationException("出库预约单列表文件中没有有效数据");
|
||||||
|
}
|
||||||
|
if (detailList == null || detailList.isEmpty()) {
|
||||||
|
throw new ValidationException("出库预约单明细列表文件中没有有效数据");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 明细按出库单号分组
|
||||||
|
Map<String, List<LegacyReserveOutDetailVO>> detailGroupMap = new LinkedHashMap<>();
|
||||||
|
for (LegacyReserveOutDetailVO detailRow : detailList) {
|
||||||
|
detailGroupMap.computeIfAbsent(detailRow.getOutOrderNumber().trim(), k -> new ArrayList<>()).add(detailRow);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> errorList = new ArrayList<>();
|
||||||
|
// 名称匹配结果缓存,避免重复查库
|
||||||
|
Map<String, UserPo> shipperCache = new HashMap<>();
|
||||||
|
// 仓库类型 -> 仓库 缓存(老系统只有仓库类型,没有仓库名称)
|
||||||
|
Map<String, WarehousePO> warehouseTypeCache = new HashMap<>();
|
||||||
|
Map<String, MaterialBaseInfoPO> materialCache = new HashMap<>();
|
||||||
|
|
||||||
|
Set<String> orderNumberSet = new HashSet<>();
|
||||||
|
List<ReserveStockOutOrderDO> stockOutOrderList = new ArrayList<>();
|
||||||
|
int lotIndex = 1;
|
||||||
|
for (LegacyReserveOutOrderVO orderRow : orderList) {
|
||||||
|
String orderNumber = orderRow.getOutOrderNumber().trim();
|
||||||
|
if (!orderNumberSet.add(orderNumber)) {
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】在主表文件中重复");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (reserveStockOutOrderMapper.countByOutOrderNumber(orderNumber) > 0) {
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】在系统中已存在,请勿重复导入");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 按货主名称匹配用户(查不到则用Excel中的名称兜底,不阻断导入)
|
||||||
|
UserPo shipper = null;
|
||||||
|
String shipperName = StringUtils.trimToEmpty(orderRow.getShipperName());
|
||||||
|
if (StringUtils.isBlank(shipperName)) {
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】货主名称为空");
|
||||||
|
} else {
|
||||||
|
shipper = shipperCache.get(shipperName);
|
||||||
|
if (shipper == null) {
|
||||||
|
List<UserPo> userPoList = reserveStockInOrderMapper.getShipperByName(shipperName);
|
||||||
|
if (userPoList == null || userPoList.isEmpty()) {
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】货主【" + shipperName + "】未找到对应用户,将仅以名称导入");
|
||||||
|
} else {
|
||||||
|
shipper = userPoList.get(0);
|
||||||
|
shipperCache.put(shipperName, shipper);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 按仓库类型匹配仓库(老系统仓库类型 1=干仓 2=冬仓,查不到则用类型名兜底)
|
||||||
|
WarehousePO warehouse = null;
|
||||||
|
String warehouseType = StringUtils.trimToEmpty(orderRow.getWarehouseType());
|
||||||
|
if (StringUtils.isNotBlank(warehouseType)) {
|
||||||
|
warehouse = warehouseTypeCache.get(warehouseType);
|
||||||
|
if (warehouse == null) {
|
||||||
|
List<WarehousePO> warehousePOList = reserveStockOutOrderMapper.getWarehouseByType(warehouseType);
|
||||||
|
if (warehousePOList == null || warehousePOList.isEmpty()) {
|
||||||
|
String fallbackName = "1".equals(warehouseType) ? "干仓" : ("2".equals(warehouseType) ? "冻仓" : "");
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】仓库类型【" + warehouseType + "】未找到对应仓库,将仅以名称导入");
|
||||||
|
warehouseTypeCache.put(warehouseType, null);
|
||||||
|
warehouse = null;
|
||||||
|
} else {
|
||||||
|
warehouse = warehousePOList.get(0);
|
||||||
|
warehouseTypeCache.put(warehouseType, warehouse);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 明细匹配
|
||||||
|
List<LegacyReserveOutDetailVO> detailRows = detailGroupMap.get(orderNumber);
|
||||||
|
if (detailRows == null || detailRows.isEmpty()) {
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】在明细文件中没有明细数据");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
List<ReserveOutMaterialDetailDO> materialDetailList = new ArrayList<>();
|
||||||
|
for (LegacyReserveOutDetailVO detailRow : detailRows) {
|
||||||
|
String materialName = StringUtils.trimToEmpty(detailRow.getMaterialName());
|
||||||
|
if (StringUtils.isBlank(materialName)) {
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】存在物料名称为空的明细行");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// 按物料名称匹配物料基础信息(查不到则用Excel中的名称兜底,不阻断导入)
|
||||||
|
MaterialBaseInfoPO materialBaseInfoPO = materialCache.get(materialName);
|
||||||
|
if (materialBaseInfoPO == null) {
|
||||||
|
List<MaterialBaseInfoPO> materialBaseInfoPOS = reserveStockInOrderMapper.getByName(materialName);
|
||||||
|
if (materialBaseInfoPOS == null || materialBaseInfoPOS.isEmpty()) {
|
||||||
|
errorList.add("出库单号【" + orderNumber + "】物料【" + materialName + "】未找到对应物料,将仅以名称导入");
|
||||||
|
} else {
|
||||||
|
materialBaseInfoPO = materialBaseInfoPOS.get(0);
|
||||||
|
materialCache.put(materialName, materialBaseInfoPO);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ReserveOutMaterialDetailDO materialDetail = new ReserveOutMaterialDetailDO();
|
||||||
|
if (materialBaseInfoPO != null) {
|
||||||
|
materialDetail.setMaterialBaseInfoId(materialBaseInfoPO.getMaterialBaseInfoId());
|
||||||
|
materialDetail.setMaterialCode(materialBaseInfoPO.getMaterialCode());
|
||||||
|
materialDetail.setUnitCode(materialBaseInfoPO.getUnitCode());
|
||||||
|
materialDetail.setUnitName(materialBaseInfoPO.getUnitName());
|
||||||
|
}
|
||||||
|
materialDetail.setMaterialName(materialName);
|
||||||
|
materialDetail.setReserveMaterialName(materialName);
|
||||||
|
materialDetail.setQuantity(detailRow.getQuantity());
|
||||||
|
materialDetail.setOutboundQuantity(detailRow.getQuantity());
|
||||||
|
materialDetail.setTotalNetWeight(detailRow.getWeight());
|
||||||
|
materialDetail.setTotalGrossWeight(detailRow.getWeight());
|
||||||
|
// 保留老系统关联的入库单号到备注
|
||||||
|
if (StringUtils.isNotBlank(detailRow.getInOrderNumber())) {
|
||||||
|
// materialDetail.setRemark("老系统入库单号:" + detailRow.getInOrderNumber());
|
||||||
|
materialDetail.setInOrderNumber(detailRow.getInOrderNumber());
|
||||||
|
}
|
||||||
|
materialDetail.setContractFee(BigDecimal.ZERO);
|
||||||
|
materialDetail.setLotNo(generateDateSerialNumber() + "-" + lotIndex);
|
||||||
|
lotIndex++;
|
||||||
|
// 组织字段硬编码(与入库导入保持一致)
|
||||||
|
materialDetail.setOrganizationId(2841L);
|
||||||
|
materialDetail.setOrganizationName("仓码");
|
||||||
|
materialDetail.setTopOrganizationId(2827L);
|
||||||
|
// 创建人/修改人名称取老系统Excel中的值,不使用当前登录人
|
||||||
|
materialDetail.setCreateTime(detailRow.getCreateTime() != null ? detailRow.getCreateTime() : new Date());
|
||||||
|
materialDetail.setCreateByName(detailRow.getCreateByName());
|
||||||
|
materialDetail.setUpdateTime(detailRow.getUpdateTime());
|
||||||
|
materialDetail.setUpdateByName(detailRow.getUpdateByName());
|
||||||
|
materialDetail.setUniqueId(idGenerator.snowflakeId(SnowFlakeConstants.wmsId));
|
||||||
|
materialDetailList.add(materialDetail);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 组装出库预约单
|
||||||
|
ReserveStockOutOrderDO stockOutOrderDO = new ReserveStockOutOrderDO();
|
||||||
|
stockOutOrderDO.setOutOrderNumber(orderNumber);
|
||||||
|
stockOutOrderDO.setBusinessOrderNo(orderNumber);
|
||||||
|
// 老系统历史数据,状态直接置为最终状态:已出库、审核通过
|
||||||
|
stockOutOrderDO.setStatus(9);
|
||||||
|
stockOutOrderDO.setAuditStatus(3);
|
||||||
|
stockOutOrderDO.setIssueStatus(3);
|
||||||
|
stockOutOrderDO.setOutboundDate(orderRow.getOutboundDate());
|
||||||
|
stockOutOrderDO.setNeedTransportFlag("0");
|
||||||
|
stockOutOrderDO.setNeedDeclareFlag("0");
|
||||||
|
stockOutOrderDO.setExpectTime(orderRow.getOutboundDate() != null ? orderRow.getOutboundDate() : new Date());
|
||||||
|
stockOutOrderDO.setDocumentDate(orderRow.getDocumentDate() != null ? orderRow.getDocumentDate() : new Date());
|
||||||
|
stockOutOrderDO.setDocumentCreator(orderRow.getDocumentCreator());
|
||||||
|
stockOutOrderDO.setRemark(orderRow.getRemark());
|
||||||
|
if (shipper != null) {
|
||||||
|
stockOutOrderDO.setShipperId(shipper.getUserId());
|
||||||
|
stockOutOrderDO.setShipperName(shipper.getUserName());
|
||||||
|
stockOutOrderDO.setCustomerId(shipper.getUserId());
|
||||||
|
stockOutOrderDO.setCustomerName(shipper.getUserName());
|
||||||
|
stockOutOrderDO.setSalesmanId(String.valueOf(shipper.getUserId()));
|
||||||
|
stockOutOrderDO.setSalesmanName(shipper.getUserName());
|
||||||
|
stockOutOrderDO.setCustomerCode(reserveStockInOrderMapper.getCustomerNcCodeByUserId(shipper.getUserId()));
|
||||||
|
} else {
|
||||||
|
// 货主未匹配到,仅以Excel中的名称作为名称字段,id留空
|
||||||
|
stockOutOrderDO.setShipperName(shipperName);
|
||||||
|
stockOutOrderDO.setCustomerName(shipperName);
|
||||||
|
stockOutOrderDO.setSalesmanName(shipperName);
|
||||||
|
}
|
||||||
|
// 组织字段硬编码(与入库导入保持一致)
|
||||||
|
stockOutOrderDO.setOrganizationId(2841L);
|
||||||
|
stockOutOrderDO.setOrganizationName("仓码");
|
||||||
|
stockOutOrderDO.setTopOrganizationId(2827L);
|
||||||
|
if (warehouse != null) {
|
||||||
|
stockOutOrderDO.setWarehouseId(warehouse.getWarehouseId());
|
||||||
|
stockOutOrderDO.setWarehouseCode(warehouse.getWarehouseCode());
|
||||||
|
stockOutOrderDO.setWarehouseName(warehouse.getWarehouseName());
|
||||||
|
} else if (StringUtils.isNotBlank(warehouseType)) {
|
||||||
|
// 仓库未匹配到,仅以仓库类型名作为仓库名称,id/编码留空
|
||||||
|
String fallbackName = "1".equals(warehouseType) ? "干仓" : ("2".equals(warehouseType) ? "冻仓" : "");
|
||||||
|
if (StringUtils.isNotBlank(fallbackName)) {
|
||||||
|
stockOutOrderDO.setWarehouseName(fallbackName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 创建人/修改人名称取老系统Excel中的值,不使用当前登录人
|
||||||
|
stockOutOrderDO.setCreateTime(orderRow.getCreateTime() != null ? orderRow.getCreateTime() : new Date());
|
||||||
|
stockOutOrderDO.setCreateByName(orderRow.getCreateByName());
|
||||||
|
stockOutOrderDO.setUpdateTime(orderRow.getUpdateTime());
|
||||||
|
stockOutOrderDO.setUpdateByName(orderRow.getUpdateByName());
|
||||||
|
stockOutOrderDO.setMaterialDetailList(materialDetailList);
|
||||||
|
stockOutOrderList.add(stockOutOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 明细文件中存在但主表文件中不存在的单号
|
||||||
|
for (String detailOrderNumber : detailGroupMap.keySet()) {
|
||||||
|
if (!orderNumberSet.contains(detailOrderNumber)) {
|
||||||
|
errorList.add("明细文件中出库单号【" + detailOrderNumber + "】在主表文件中不存在");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 逐单入库(即使有未匹配到基础数据的警告也不阻断,错误信息随结果返回)
|
||||||
|
// 直接走 MyBatis-Plus 入库,绕过领域服务/应用服务层的参数补全逻辑
|
||||||
|
int detailCount = 0;
|
||||||
|
for (ReserveStockOutOrderDO stockOutOrderDO : stockOutOrderList) {
|
||||||
|
// 主表:DO -> 实体 -> save
|
||||||
|
ReserveStockOutOrder stockOutOrder = new ReserveStockOutOrder();
|
||||||
|
BeanUtils.copyProperties(stockOutOrderDO, stockOutOrder);
|
||||||
|
stockOutOrder.setMaterialQuantity(stockOutOrderDO.getMaterialDetailList().size());
|
||||||
|
BigDecimal totalQuantity = stockOutOrderDO.getMaterialDetailList().stream()
|
||||||
|
.map(ReserveOutMaterialDetailDO::getQuantity).filter(Objects::nonNull)
|
||||||
|
.reduce(BigDecimal.ZERO, BigDecimal::add);
|
||||||
|
stockOutOrder.setQuantity(totalQuantity);
|
||||||
|
stockOutOrderService.save(stockOutOrder);
|
||||||
|
|
||||||
|
// 明细:DO -> 实体 -> saveBatch
|
||||||
|
List<ReserveOutMaterialDetail> detailEntities = new ArrayList<>();
|
||||||
|
for (ReserveOutMaterialDetailDO detailDO : stockOutOrderDO.getMaterialDetailList()) {
|
||||||
|
ReserveOutMaterialDetail detail = new ReserveOutMaterialDetail();
|
||||||
|
BeanUtils.copyProperties(detailDO, detail);
|
||||||
|
detail.setOutOrderNumber(stockOutOrderDO.getOutOrderNumber());
|
||||||
|
detailEntities.add(detail);
|
||||||
|
}
|
||||||
|
if (!detailEntities.isEmpty()) {
|
||||||
|
outMaterialDetailService.saveBatch(detailEntities);
|
||||||
|
}
|
||||||
|
detailCount += detailEntities.size();
|
||||||
|
}
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
result.put("orderCount", stockOutOrderList.size());
|
||||||
|
result.put("detailCount", detailCount);
|
||||||
|
if (!errorList.isEmpty()) {
|
||||||
|
result.put("warnings", errorList);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
public void importInData(List<ReservedInventoryOut> dataList) {
|
public void importInData(List<ReservedInventoryOut> dataList) {
|
||||||
LoginUser loginUser = SecurityUtils.getLoginUser();
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
ReserveStockOutOrderDO reserveStockOutOrder = new ReserveStockOutOrderDO();
|
ReserveStockOutOrderDO reserveStockOutOrder = new ReserveStockOutOrderDO();
|
||||||
|
|||||||
+57
@@ -15,6 +15,8 @@ import com.mhd.oms.domain.reserveStockOutOrder.repository.facade.IReserveStockOu
|
|||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.po.ReserveStockOutOrderPO;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.po.ReserveStockOutOrderPO;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.todo.ReserveStockOutOrderDO;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.todo.ReserveStockOutOrderDO;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.todo.ReserveStockOutOrderDTO;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.todo.ReserveStockOutOrderDTO;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.LegacyReserveOutDetailVO;
|
||||||
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.LegacyReserveOutOrderVO;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.ReservedInventoryOut;
|
import com.mhd.oms.domain.reserveStockOutOrder.repository.vo.ReservedInventoryOut;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.service.ReserveStockOutOrderApplicationService;
|
import com.mhd.oms.domain.reserveStockOutOrder.service.ReserveStockOutOrderApplicationService;
|
||||||
import com.mhd.oms.domain.reserveStockOutOrder.service.ReserveStockOutOrderAssembler;
|
import com.mhd.oms.domain.reserveStockOutOrder.service.ReserveStockOutOrderAssembler;
|
||||||
@@ -303,4 +305,59 @@ public class ReserveStockOutOrderApi extends BaseController {
|
|||||||
return AjaxResult.success(stockOutOrderApplicationService.generateReserveOrderNumber());
|
return AjaxResult.success(stockOutOrderApplicationService.generateReserveOrderNumber());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统出库预约单数据导入(两个文件:主表+明细)
|
||||||
|
* 通过货主名称、仓库类型、物料名称等匹配基础数据,id类字段不使用
|
||||||
|
* 仓库类型:1=干仓 2=冬仓
|
||||||
|
* 明细物料名称:取物料名称1和物料名称2中有值的那一个
|
||||||
|
*/
|
||||||
|
@ApiOperation("老系统出库预约单数据导入")
|
||||||
|
@PostMapping("/importLegacy")
|
||||||
|
public ResponseEntity<Map<String, Object>> importLegacyData(
|
||||||
|
@RequestParam("orderFile") MultipartFile orderFile,
|
||||||
|
@RequestParam("detailFile") MultipartFile detailFile) {
|
||||||
|
try {
|
||||||
|
// 1. 解析两个Excel文件
|
||||||
|
List<LegacyReserveOutOrderVO> orderList = ExcelParseUtil.parseLegacyOrderExcel(orderFile);
|
||||||
|
List<LegacyReserveOutDetailVO> detailList = ExcelParseUtil.parseLegacyDetailExcel(detailFile);
|
||||||
|
|
||||||
|
// 2. 调用应用服务执行导入
|
||||||
|
Map<String, Object> result = stockOutOrderApplicationService.importLegacyData(orderList, detailList);
|
||||||
|
|
||||||
|
Map<String, Object> successResponse = new HashMap<>();
|
||||||
|
successResponse.put("code", 200);
|
||||||
|
successResponse.put("message", "老系统出库预约单数据导入成功");
|
||||||
|
successResponse.put("orderCount", result.get("orderCount"));
|
||||||
|
successResponse.put("detailCount", result.get("detailCount"));
|
||||||
|
if (result.containsKey("warnings")) {
|
||||||
|
successResponse.put("warnings", result.get("warnings"));
|
||||||
|
}
|
||||||
|
return ResponseEntity.ok(successResponse);
|
||||||
|
|
||||||
|
} catch (ValidationException e) {
|
||||||
|
log.error("老系统出库预约单数据验证失败: {}", e.getMessage(), e);
|
||||||
|
Map<String, Object> errorResponse = new HashMap<>();
|
||||||
|
errorResponse.put("code", 400);
|
||||||
|
errorResponse.put("message", "数据验证失败");
|
||||||
|
errorResponse.put("errorDetails", e.getMessage());
|
||||||
|
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(errorResponse);
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
log.error("老系统出库预约单文件处理失败: {}", e.getMessage(), e);
|
||||||
|
Map<String, Object> errorResponse = new HashMap<>();
|
||||||
|
errorResponse.put("code", 500);
|
||||||
|
errorResponse.put("message", "文件处理失败");
|
||||||
|
errorResponse.put("errorDetails", e.getMessage());
|
||||||
|
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(errorResponse);
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("老系统出库预约单导入失败: {}", e.getMessage(), e);
|
||||||
|
Map<String, Object> errorResponse = new HashMap<>();
|
||||||
|
errorResponse.put("code", 500);
|
||||||
|
errorResponse.put("message", "导入失败");
|
||||||
|
errorResponse.put("errorDetails", e.getMessage());
|
||||||
|
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(errorResponse);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
+66
@@ -10,12 +10,15 @@ import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrde
|
|||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrderDTO;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.todo.ReserveStockInOrderDTO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.util.ExcelParseUtil;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.util.ExcelParseUtil;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.InAndOutListVo;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.InAndOutListVo;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.LegacyReserveInDetailVO;
|
||||||
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.LegacyReserveInOrderVO;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.ReservedInventory;
|
import com.mhd.oms.domain.reserveStockInOrder.repository.vo.ReservedInventory;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.service.ReserveStockInOrderApplicationService;
|
import com.mhd.oms.domain.reserveStockInOrder.service.ReserveStockInOrderApplicationService;
|
||||||
import com.mhd.oms.domain.reserveStockInOrder.service.ReserveStockInOrderAssembler;
|
import com.mhd.oms.domain.reserveStockInOrder.service.ReserveStockInOrderAssembler;
|
||||||
import com.mhd.system.api.domain.InMaterialDetailTZPD;
|
import com.mhd.system.api.domain.InMaterialDetailTZPD;
|
||||||
import com.mhd.system.api.domain.StockInOrderTZPD;
|
import com.mhd.system.api.domain.StockInOrderTZPD;
|
||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.http.ResponseEntity;
|
import org.springframework.http.ResponseEntity;
|
||||||
@@ -34,6 +37,7 @@ import java.util.Map;
|
|||||||
* @author gen
|
* @author gen
|
||||||
* @date 2024-05-21
|
* @date 2024-05-21
|
||||||
*/
|
*/
|
||||||
|
@Slf4j
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/reserveStockInOrderApi")
|
@RequestMapping("/reserveStockInOrderApi")
|
||||||
public class ReserveStockInOrderApi extends BaseController {
|
public class ReserveStockInOrderApi extends BaseController {
|
||||||
@@ -256,6 +260,68 @@ public class ReserveStockInOrderApi extends BaseController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 老系统入库预约单数据导入(主表+明细两个Excel文件批量导入,按名称匹配基础数据)
|
||||||
|
*/
|
||||||
|
@ApiOperation("老系统入库预约单数据导入")
|
||||||
|
@PostMapping("/importLegacy")
|
||||||
|
public ResponseEntity<Map<String, Object>> importLegacyExcel(
|
||||||
|
@RequestParam("orderFile") MultipartFile orderFile,
|
||||||
|
@RequestParam("detailFile") MultipartFile detailFile) {
|
||||||
|
try {
|
||||||
|
List<LegacyReserveInOrderVO> orderList = ExcelParseUtil.parseLegacyOrderExcel(orderFile);
|
||||||
|
List<LegacyReserveInDetailVO> detailList = ExcelParseUtil.parseLegacyDetailExcel(detailFile);
|
||||||
|
|
||||||
|
Map<String, Object> importResult = stockInOrderApplicationService.importLegacyData(orderList, detailList);
|
||||||
|
|
||||||
|
Map<String, Object> successResponse = new HashMap<>();
|
||||||
|
successResponse.put("code", 200);
|
||||||
|
successResponse.put("message", "老系统数据导入成功");
|
||||||
|
successResponse.put("orderCount", importResult.get("orderCount"));
|
||||||
|
successResponse.put("detailCount", importResult.get("detailCount"));
|
||||||
|
if (importResult.containsKey("warnings")) {
|
||||||
|
successResponse.put("warnings", importResult.get("warnings"));
|
||||||
|
}
|
||||||
|
return ResponseEntity.ok(successResponse);
|
||||||
|
|
||||||
|
} catch (ValidationException e) {
|
||||||
|
// 数据验证失败响应
|
||||||
|
log.warn("老系统数据导入校验失败: {}", e.getMessage());
|
||||||
|
Map<String, Object> errorResponse = new HashMap<>();
|
||||||
|
errorResponse.put("code", 400);
|
||||||
|
errorResponse.put("message", "数据验证失败");
|
||||||
|
errorResponse.put("errorDetails", e.getMessage());
|
||||||
|
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(errorResponse);
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
// 文件处理失败响应
|
||||||
|
log.error("老系统数据导入文件处理失败", e);
|
||||||
|
Map<String, Object> errorResponse = new HashMap<>();
|
||||||
|
errorResponse.put("code", 500);
|
||||||
|
errorResponse.put("message", "文件处理失败");
|
||||||
|
errorResponse.put("errorDetails", e.getClass().getSimpleName() + ": " + e.getMessage());
|
||||||
|
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(errorResponse);
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
// 其他未知错误响应:打印完整堆栈,把真正的报错信息报出来
|
||||||
|
log.error("老系统数据导入发生未知异常", e);
|
||||||
|
String errorType = e.getClass().getSimpleName();
|
||||||
|
String errorMsg = e.getMessage() != null ? e.getMessage() : "无详细信息";
|
||||||
|
// 如果异常带有 cause,则再追加 cause 信息,方便定位根因
|
||||||
|
Throwable cause = e.getCause();
|
||||||
|
StringBuilder detail = new StringBuilder();
|
||||||
|
detail.append(errorType).append(": ").append(errorMsg);
|
||||||
|
if (cause != null && cause != e) {
|
||||||
|
detail.append(" | 根因: ").append(cause.getClass().getSimpleName()).append(": ").append(cause.getMessage());
|
||||||
|
}
|
||||||
|
Map<String, Object> errorResponse = new HashMap<>();
|
||||||
|
errorResponse.put("code", 500);
|
||||||
|
errorResponse.put("message", detail.toString());
|
||||||
|
errorResponse.put("errorDetails", detail.toString());
|
||||||
|
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(errorResponse);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 生成入库预约单号
|
* 生成入库预约单号
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -788,4 +788,47 @@
|
|||||||
WHERE in_order_number LIKE concat(#{prefix}, '%')
|
WHERE in_order_number LIKE concat(#{prefix}, '%')
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<!-- 老系统数据导入:根据货主名称查询用户 -->
|
||||||
|
<select id="getShipperByName" parameterType="java.lang.String" resultType="com.mhd.common.core.domain.po.UserPo">
|
||||||
|
select USER_ID, USER_NAME, ORGANIZATION_ID, ORGANIZATION_NAME, TOP_ORGANIZATION_ID
|
||||||
|
from NGWL_TEST_USER."USER"
|
||||||
|
where DEL_FLAG = 1 and USER_NAME = #{name}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 老系统数据导入:根据仓库名称查询仓库(支持模糊匹配,如Excel中"凍倉-陳美玲"匹配系统中"凍倉") -->
|
||||||
|
<select id="getWarehouseByName" parameterType="java.lang.String" resultType="com.mhd.common.core.domain.po.WarehousePO">
|
||||||
|
select WAREHOUSE_ID, WAREHOUSE_CODE, WAREHOUSE_NAME
|
||||||
|
from "NGWL_TEST_SYSTEM".WAREHOUSE
|
||||||
|
where DEL_FLAG = 1
|
||||||
|
and (
|
||||||
|
WAREHOUSE_NAME = #{name}
|
||||||
|
or #{name} LIKE ('%' || WAREHOUSE_NAME || '%')
|
||||||
|
)
|
||||||
|
order by case when WAREHOUSE_NAME = #{name} then 0 else 1 end,
|
||||||
|
length(WAREHOUSE_NAME) asc
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 老系统数据导入:根据仓库类型查询仓库(1=干仓 2=冬仓) -->
|
||||||
|
<select id="getWarehouseByType" parameterType="java.lang.String" resultType="com.mhd.common.core.domain.po.WarehousePO">
|
||||||
|
select WAREHOUSE_ID, WAREHOUSE_CODE, WAREHOUSE_NAME
|
||||||
|
from "NGWL_TEST_SYSTEM".WAREHOUSE
|
||||||
|
where DEL_FLAG = 1
|
||||||
|
and (
|
||||||
|
WAREHOUSE_TYPE = #{warehouseType}
|
||||||
|
or WAREHOUSE_TYPE_NAME = case when #{warehouseType} = '1' then '干仓' when #{warehouseType} = '2' then '冻仓' else null end
|
||||||
|
)
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 老系统数据导入:根据货主用户ID查询NC客户编码 -->
|
||||||
|
<select id="getCustomerNcCodeByUserId" parameterType="java.lang.Long" resultType="java.lang.String">
|
||||||
|
select CUSTOMER_NC_CODE from "NGWL_TEST_USER".USER_SHIPPER where DEL_FLAG = 1 and USER_ID = #{id} limit 1
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 老系统数据导入:根据入库单号精确统计(防重) -->
|
||||||
|
<select id="countByInOrderNumber" resultType="java.lang.Integer" parameterType="java.lang.String">
|
||||||
|
SELECT COUNT(1)
|
||||||
|
FROM reserve_stock_in_order
|
||||||
|
WHERE in_order_number = #{inOrderNumber}
|
||||||
|
</select>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
@@ -528,4 +528,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
WHERE out_order_number LIKE concat(#{prefix}, '%')
|
WHERE out_order_number LIKE concat(#{prefix}, '%')
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<!-- 老系统数据导入:根据出库单号精确统计(防重) -->
|
||||||
|
<select id="countByOutOrderNumber" resultType="java.lang.Integer" parameterType="java.lang.String">
|
||||||
|
SELECT COUNT(1)
|
||||||
|
FROM reserve_stock_out_order
|
||||||
|
WHERE out_order_number = #{outOrderNumber}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 老系统数据导入:根据仓库类型查询仓库
|
||||||
|
老系统仓库类型 1=干仓 2=冬仓;新系统 WAREHOUSE_TYPE 为数据字典编码
|
||||||
|
同时尝试匹配 WAREHOUSE_TYPE 编码和 WAREHOUSE_TYPE_NAME 名称,兼容字典值与老系统编码一致或不一致两种情况 -->
|
||||||
|
<select id="getWarehouseByType" parameterType="java.lang.String" resultType="com.mhd.common.core.domain.po.WarehousePO">
|
||||||
|
select WAREHOUSE_ID, WAREHOUSE_CODE, WAREHOUSE_NAME
|
||||||
|
from "NGWL_TEST_SYSTEM".WAREHOUSE
|
||||||
|
where DEL_FLAG = 1
|
||||||
|
and (
|
||||||
|
WAREHOUSE_TYPE = #{warehouseType}
|
||||||
|
or WAREHOUSE_TYPE_NAME = case when #{warehouseType} = '1' then '干仓' when #{warehouseType} = '2' then '冻仓' else null end
|
||||||
|
)
|
||||||
|
</select>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
@@ -7,12 +7,14 @@ import org.springframework.boot.SpringApplication;
|
|||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
||||||
import org.springframework.context.annotation.ComponentScan;
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
|
import org.springframework.scheduling.annotation.EnableAsync;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
@EnableRyFeignClients
|
@EnableRyFeignClients
|
||||||
@EnableDiscoveryClient
|
@EnableDiscoveryClient
|
||||||
@MapperScan("com.mhd.wms.domain.**.mapper")
|
@MapperScan("com.mhd.wms.domain.**.mapper")
|
||||||
@EnableMethodCache(basePackages = "com.mhd.platform.domain.**.cache")
|
@EnableMethodCache(basePackages = "com.mhd.platform.domain.**.cache")
|
||||||
|
@EnableAsync
|
||||||
@ComponentScan(basePackages = {
|
@ComponentScan(basePackages = {
|
||||||
"com.mhd.wms",
|
"com.mhd.wms",
|
||||||
"com.mhd.system.api.factory"
|
"com.mhd.system.api.factory"
|
||||||
|
|||||||
+62
-17
@@ -49,12 +49,15 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.springframework.beans.BeanUtils;
|
import org.springframework.beans.BeanUtils;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.scheduling.annotation.Async;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
import org.springframework.util.CollectionUtils;
|
import org.springframework.util.CollectionUtils;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
@@ -100,6 +103,10 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
|
|
||||||
@Resource
|
@Resource
|
||||||
private MaterialBaseInfoMapper materialBaseInfoMapper;
|
private MaterialBaseInfoMapper materialBaseInfoMapper;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private MaterialBaseInfoAsyncService materialBaseInfoAsyncService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分页查询物料基础信息列表
|
* 分页查询物料基础信息列表
|
||||||
*/
|
*/
|
||||||
@@ -436,8 +443,47 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
return materialBaseInfoDomainService.getInfoByNoOrderReceipt(materialBaseInfoDO);
|
return materialBaseInfoDomainService.getInfoByNoOrderReceipt(materialBaseInfoDO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 导入物料主数据(仅导入主表字段)
|
* 导入物料主数据(异步入口)
|
||||||
|
*
|
||||||
|
* <p>接口层调用此方法,将文件保存到临时目录后立即返回"异步处理中",
|
||||||
|
* 实际导入由 {@link #doImportData(File, String, LoginUser)} 异步执行,
|
||||||
|
* 避免大数据量时接口超时。</p>
|
||||||
|
*/
|
||||||
|
public AjaxResult importDataAsync(MultipartFile file) {
|
||||||
|
if (file == null || file.isEmpty()) {
|
||||||
|
throw new ServiceException("上传文件不能为空");
|
||||||
|
}
|
||||||
|
String fileName = file.getOriginalFilename();
|
||||||
|
if (org.apache.commons.lang3.StringUtils.isBlank(fileName)
|
||||||
|
|| (!fileName.endsWith(".xls") && !fileName.endsWith(".xlsx"))) {
|
||||||
|
throw new ServiceException("请上传xls或xlsx格式文件");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 流式写入临时文件,避免大文件 getBytes() 导致内存溢出和接口超时
|
||||||
|
String tmpDir = System.getProperty("java.io.tmpdir") + File.separator + "material_import";
|
||||||
|
File dir = new File(tmpDir);
|
||||||
|
if (!dir.exists()) {
|
||||||
|
dir.mkdirs();
|
||||||
|
}
|
||||||
|
String tmpFileName = System.currentTimeMillis() + "_" + fileName;
|
||||||
|
File tmpFile = new File(dir, tmpFileName);
|
||||||
|
try {
|
||||||
|
file.transferTo(tmpFile);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new ServiceException("文件保存失败:" + e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
// 通过独立的异步 Service 执行导入(避免类内部 self-invocation 导致 @Async 失效)
|
||||||
|
materialBaseInfoAsyncService.doImportData(tmpFile, fileName, loginUser);
|
||||||
|
|
||||||
|
return AjaxResult.success("导入任务已提交,正在后台异步处理,请稍后查看导入结果日志");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入物料主数据(仅导入主表字段)- 原同步方法保留,供其他场景调用
|
||||||
*/
|
*/
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public AjaxResult importData(MultipartFile file) {
|
public AjaxResult importData(MultipartFile file) {
|
||||||
@@ -496,7 +542,6 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
row.setHsCode(row.getHsCodeImport().trim());
|
row.setHsCode(row.getHsCodeImport().trim());
|
||||||
}
|
}
|
||||||
normalizeImportBarCodeWhenDuplicateOfHs(row);
|
normalizeImportBarCodeWhenDuplicateOfHs(row);
|
||||||
// 客户模板通常只有「货主名称」无「货主id」:须先按名称解析货主,再回填组织;勿提前写入登录组织以免组织校验拦截货主匹配
|
|
||||||
fillIdsFromExistingMasterData(row);
|
fillIdsFromExistingMasterData(row);
|
||||||
fillOrganizationFromShipperIfNeeded(row);
|
fillOrganizationFromShipperIfNeeded(row);
|
||||||
if (!isValidOrgId(row.getOrganizationId()) && isValidOrgId(loginOrgId)) {
|
if (!isValidOrgId(row.getOrganizationId()) && isValidOrgId(loginOrgId)) {
|
||||||
@@ -567,25 +612,20 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
materialBaseInfoDO.setMaterialCommon(null);
|
materialBaseInfoDO.setMaterialCommon(null);
|
||||||
materialBaseInfoDO.setMaterialWarehouseControl(null);
|
materialBaseInfoDO.setMaterialWarehouseControl(null);
|
||||||
materialBaseInfoDO.setMaterialBarCodeList(buildImportBarCodeList(row));
|
materialBaseInfoDO.setMaterialBarCodeList(buildImportBarCodeList(row));
|
||||||
// 商品规则由 buildImportMaterialGoodsRule + insert() 统一写入,勿再单独 insert,避免 MATERIAL_GOODS_RULE 重复
|
|
||||||
insert(materialBaseInfoDO);
|
insert(materialBaseInfoDO);
|
||||||
Long materialBaseInfoId = materialBaseInfoDO.getMaterialBaseInfoId();
|
Long materialBaseInfoId = materialBaseInfoDO.getMaterialBaseInfoId();
|
||||||
|
|
||||||
//公共信息
|
|
||||||
MaterialCommonDO materialCommonDO = materialBaseInfoDO.getMaterialCommon();
|
MaterialCommonDO materialCommonDO = materialBaseInfoDO.getMaterialCommon();
|
||||||
if (materialCommonDO != null) {
|
if (materialCommonDO != null) {
|
||||||
materialCommonDO.setMaterialBaseInfoId(materialBaseInfoId);
|
materialCommonDO.setMaterialBaseInfoId(materialBaseInfoId);
|
||||||
materialCommonDomainService.insert(materialCommonDO);
|
materialCommonDomainService.insert(materialCommonDO);
|
||||||
}
|
}
|
||||||
//仓库控制信息
|
|
||||||
MaterialWarehouseControlDO materialWarehouseControlDO = materialBaseInfoDO.getMaterialWarehouseControl();
|
MaterialWarehouseControlDO materialWarehouseControlDO = materialBaseInfoDO.getMaterialWarehouseControl();
|
||||||
if (materialWarehouseControlDO != null) {
|
if (materialWarehouseControlDO != null) {
|
||||||
materialWarehouseControlDO.setMaterialBaseInfoId(materialBaseInfoId);
|
materialWarehouseControlDO.setMaterialBaseInfoId(materialBaseInfoId);
|
||||||
materialWarehouseControlDomainService.insert(materialWarehouseControlDO);
|
materialWarehouseControlDomainService.insert(materialWarehouseControlDO);
|
||||||
}
|
}
|
||||||
//库存预警
|
|
||||||
materialInventoryWarningDomainService.batchInsertOrUpdate(materialBaseInfoDO);
|
materialInventoryWarningDomainService.batchInsertOrUpdate(materialBaseInfoDO);
|
||||||
//条码信息
|
|
||||||
materialBarCodeDomainService.batchInsertOrUpdate(materialBaseInfoDO);
|
materialBarCodeDomainService.batchInsertOrUpdate(materialBaseInfoDO);
|
||||||
successCount++;
|
successCount++;
|
||||||
}
|
}
|
||||||
@@ -596,10 +636,11 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
return AjaxResult.success("导入成功,共" + successCount + "条");
|
return AjaxResult.success("导入成功,共" + successCount + "条");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 使用已存在主数据按名称/编码反查并回填ID
|
* 使用已存在主数据按名称/编码反查并回填ID
|
||||||
*/
|
*/
|
||||||
private void fillIdsFromExistingMasterData(MaterialBaseInfoDTO row) {
|
public void fillIdsFromExistingMasterData(MaterialBaseInfoDTO row) {
|
||||||
if (StringUtils.isBlank(row.getPackName()) && StringUtils.isNotBlank(row.getPackImport())) {
|
if (StringUtils.isBlank(row.getPackName()) && StringUtils.isNotBlank(row.getPackImport())) {
|
||||||
row.setPackName(row.getPackImport().trim());
|
row.setPackName(row.getPackImport().trim());
|
||||||
}
|
}
|
||||||
@@ -818,10 +859,14 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
Object userCode = shipper.get("userCode");
|
Object userCode = shipper.get("userCode");
|
||||||
Object userMemberCode = shipper.get("userMemberCode");
|
Object userMemberCode = shipper.get("userMemberCode");
|
||||||
Object entName = shipper.get("shipperEnterpriseName");
|
Object entName = shipper.get("shipperEnterpriseName");
|
||||||
if (userName == null) {
|
// userName 可能为空字符串而非 null,需同时判断空字符串
|
||||||
|
if (userName == null || String.valueOf(userName).trim().isEmpty()) {
|
||||||
|
userName = shipper.get("userNameShipper");
|
||||||
|
}
|
||||||
|
if (userName == null || String.valueOf(userName).trim().isEmpty()) {
|
||||||
userName = shipper.get("name");
|
userName = shipper.get("name");
|
||||||
}
|
}
|
||||||
if (userName == null) {
|
if (userName == null || String.valueOf(userName).trim().isEmpty()) {
|
||||||
userName = shipper.get("shipperName");
|
userName = shipper.get("shipperName");
|
||||||
}
|
}
|
||||||
String normalizedName = StringUtils.isNotBlank(shipperName) ? shipperName : "";
|
String normalizedName = StringUtils.isNotBlank(shipperName) ? shipperName : "";
|
||||||
@@ -919,7 +964,7 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
/**
|
/**
|
||||||
* Excel 已填货主 ID、但未填组织时,从货主用户补全组织信息。
|
* Excel 已填货主 ID、但未填组织时,从货主用户补全组织信息。
|
||||||
*/
|
*/
|
||||||
private void fillOrganizationFromShipperIfNeeded(MaterialBaseInfoDTO row) {
|
public void fillOrganizationFromShipperIfNeeded(MaterialBaseInfoDTO row) {
|
||||||
if (isValidOrgId(row.getOrganizationId()) || row.getShipperId() == null) {
|
if (isValidOrgId(row.getOrganizationId()) || row.getShipperId() == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -978,7 +1023,7 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillOrganizationName(MaterialBaseInfoDTO row, LoginUser loginUser) {
|
public void fillOrganizationName(MaterialBaseInfoDTO row, LoginUser loginUser) {
|
||||||
if (StringUtils.isNotBlank(row.getOrganizationName())) {
|
if (StringUtils.isNotBlank(row.getOrganizationName())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -998,7 +1043,7 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillClassifyTypeAndUnit(MaterialBaseInfoDTO row) {
|
public void fillClassifyTypeAndUnit(MaterialBaseInfoDTO row) {
|
||||||
normalizeMaterialClassifyImportFields(row);
|
normalizeMaterialClassifyImportFields(row);
|
||||||
// 按组织从 system 主数据反查分类编码,与名称列表对齐
|
// 按组织从 system 主数据反查分类编码,与名称列表对齐
|
||||||
fillMaterialClassifyCodesFromSystem(row);
|
fillMaterialClassifyCodesFromSystem(row);
|
||||||
@@ -1179,7 +1224,7 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
* 导入约定:「HS码/HS编码」与「物料条形码」为不同列。模板表头错位或两列误填相同 HS 时,
|
* 导入约定:「HS码/HS编码」与「物料条形码」为不同列。模板表头错位或两列误填相同 HS 时,
|
||||||
* barCode 会与 hsCode 相同;此时保留 hsCode,清空主表/子表条码,避免 HS 写入 bar_code。
|
* barCode 会与 hsCode 相同;此时保留 hsCode,清空主表/子表条码,避免 HS 写入 bar_code。
|
||||||
*/
|
*/
|
||||||
private void normalizeImportBarCodeWhenDuplicateOfHs(MaterialBaseInfoDTO row) {
|
public void normalizeImportBarCodeWhenDuplicateOfHs(MaterialBaseInfoDTO row) {
|
||||||
if (row == null) {
|
if (row == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1194,7 +1239,7 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<MaterialBarCodeDO> buildImportBarCodeList(MaterialBaseInfoDTO row) {
|
public List<MaterialBarCodeDO> buildImportBarCodeList(MaterialBaseInfoDTO row) {
|
||||||
if (StringUtils.isBlank(row.getBarCode())) {
|
if (StringUtils.isBlank(row.getBarCode())) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -1234,7 +1279,7 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
return idObj == null ? null : Long.valueOf(String.valueOf(idObj));
|
return idObj == null ? null : Long.valueOf(String.valueOf(idObj));
|
||||||
}
|
}
|
||||||
|
|
||||||
private MaterialGoodsRuleDO buildImportMaterialGoodsRule(MaterialBaseInfoDTO row) {
|
public MaterialGoodsRuleDO buildImportMaterialGoodsRule(MaterialBaseInfoDTO row) {
|
||||||
String batchName = StringUtils.isNotBlank(row.getBatchRuleNameImport())
|
String batchName = StringUtils.isNotBlank(row.getBatchRuleNameImport())
|
||||||
? row.getBatchRuleNameImport().trim()
|
? row.getBatchRuleNameImport().trim()
|
||||||
: (StringUtils.isNotBlank(row.getBatchName())
|
: (StringUtils.isNotBlank(row.getBatchName())
|
||||||
@@ -1309,7 +1354,7 @@ public class MaterialBaseInfoApplicationService {
|
|||||||
.trim();
|
.trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<Map<String, Object>> extractTableDataRows(Map<String, Object> resultMap) {
|
public List<Map<String, Object>> extractTableDataRows(Map<String, Object> resultMap) {
|
||||||
if (resultMap == null) {
|
if (resultMap == null) {
|
||||||
return new ArrayList<>();
|
return new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|||||||
+274
@@ -0,0 +1,274 @@
|
|||||||
|
package com.mhd.wms.application.service.materialBaseInfo;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSON;
|
||||||
|
import com.alibaba.fastjson.TypeReference;
|
||||||
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||||
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
import com.mhd.common.core.domain.po.UserPo;
|
||||||
|
import com.mhd.common.core.web.domain.AjaxResult;
|
||||||
|
import com.mhd.system.api.SystemServiceFeign;
|
||||||
|
import com.mhd.system.api.UserServiceFeign;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import com.mhd.wms.domain.materialBarCode.service.MaterialBarCodeDomainService;
|
||||||
|
import com.mhd.wms.domain.materialBaseInfo.entity.MaterialBaseInfo;
|
||||||
|
import com.mhd.wms.domain.materialBaseInfo.repository.facade.IMaterialBaseInfoService;
|
||||||
|
import com.mhd.wms.domain.materialBaseInfo.repository.mapper.MaterialBaseInfoMapper;
|
||||||
|
import com.mhd.wms.domain.materialBaseInfo.repository.todo.MaterialBaseInfoDO;
|
||||||
|
import com.mhd.wms.domain.materialBaseInfo.service.MaterialBaseInfoDomainService;
|
||||||
|
import com.mhd.wms.domain.materialGoodsRule.service.MaterialGoodsRuleDomainService;
|
||||||
|
import com.mhd.wms.domain.materialCommon.service.MaterialCommonDomainService;
|
||||||
|
import com.mhd.wms.domain.materialCommon.repository.todo.MaterialCommonDO;
|
||||||
|
import com.mhd.wms.domain.materialInventoryWarning.service.MaterialInventoryWarningDomainService;
|
||||||
|
import com.mhd.wms.domain.materialWarehouseControl.service.MaterialWarehouseControlDomainService;
|
||||||
|
import com.mhd.wms.domain.materialWarehouseControl.repository.todo.MaterialWarehouseControlDO;
|
||||||
|
import com.mhd.wms.interfaces.dto.materialBaseInfo.MaterialBaseInfoDTO;
|
||||||
|
import com.mhd.wms.util.MaterialBaseInfoImportExcelUtil;
|
||||||
|
import com.mhd.wms.util.ZhTextNormalizeUtil;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
import org.springframework.beans.BeanUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.scheduling.annotation.Async;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.util.CollectionUtils;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.util.*;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 物料主数据异步导入服务
|
||||||
|
*/
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
public class MaterialBaseInfoAsyncService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IMaterialBaseInfoService materialBaseInfoService;
|
||||||
|
@Autowired
|
||||||
|
private MaterialBaseInfoMapper materialBaseInfoMapper;
|
||||||
|
@Autowired
|
||||||
|
private SystemServiceFeign systemServiceFeign;
|
||||||
|
@Autowired
|
||||||
|
private UserServiceFeign userServiceFeign;
|
||||||
|
@Autowired
|
||||||
|
private MaterialCommonDomainService materialCommonDomainService;
|
||||||
|
@Autowired
|
||||||
|
private MaterialWarehouseControlDomainService materialWarehouseControlDomainService;
|
||||||
|
@Autowired
|
||||||
|
private MaterialInventoryWarningDomainService materialInventoryWarningDomainService;
|
||||||
|
@Autowired
|
||||||
|
private MaterialBarCodeDomainService materialBarCodeDomainService;
|
||||||
|
@Autowired
|
||||||
|
private MaterialBaseInfoDomainService materialBaseInfoDomainService;
|
||||||
|
@Autowired
|
||||||
|
private com.mhd.wms.domain.materialGoodsRule.service.MaterialGoodsRuleDomainService materialGoodsRuleDomainService;
|
||||||
|
@org.springframework.context.annotation.Lazy
|
||||||
|
@Autowired
|
||||||
|
private MaterialBaseInfoApplicationService materialBaseInfoApplicationService;
|
||||||
|
|
||||||
|
@Async
|
||||||
|
public void doImportData(File tmpFile, String fileName, LoginUser loginUser) {
|
||||||
|
long startTime = System.currentTimeMillis();
|
||||||
|
log.info("=== 物料主数据异步导入开始,文件:{},大小:{}KB ===", fileName, tmpFile.length() / 1024);
|
||||||
|
try {
|
||||||
|
List<MaterialBaseInfoDTO> rows;
|
||||||
|
try (InputStream is = new FileInputStream(tmpFile)) {
|
||||||
|
rows = MaterialBaseInfoImportExcelUtil.importRows(is);
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("物料主数据异步导入失败 - 文件解析异常:{}", e.getMessage(), e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (CollectionUtils.isEmpty(rows)) {
|
||||||
|
log.warn("物料主数据异步导入结束 - 导入数据为空");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Long loginOrgId = null;
|
||||||
|
Long loginTopOrgId = null;
|
||||||
|
if (loginUser != null && loginUser.getUserPo() != null) {
|
||||||
|
loginOrgId = loginUser.getUserPo().getOrganizationId();
|
||||||
|
loginTopOrgId = loginUser.getUserPo().getTopOrganizationId();
|
||||||
|
}
|
||||||
|
|
||||||
|
StringBuilder errors = new StringBuilder();
|
||||||
|
Set<String> duplicateInFile = new HashSet<>();
|
||||||
|
int successCount = 0;
|
||||||
|
int totalCount = rows.size();
|
||||||
|
Map<String, Map<String, Object>> packCache = new HashMap<>();
|
||||||
|
|
||||||
|
for (int i = 0; i < rows.size(); i++) {
|
||||||
|
MaterialBaseInfoDTO row = rows.get(i);
|
||||||
|
int rowNum = i + 2;
|
||||||
|
if (row == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
if (StringUtils.isBlank(row.getMaterialCode())) {
|
||||||
|
errors.append("第").append(rowNum).append("行:物料编码不能为空;");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (StringUtils.isBlank(row.getMaterialName())) {
|
||||||
|
errors.append("第").append(rowNum).append("行:物料名称不能为空;");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (row.getNullify() == null) {
|
||||||
|
row.setNullify(2);
|
||||||
|
}
|
||||||
|
if (row.getCommon() == null) {
|
||||||
|
row.setCommon(2);
|
||||||
|
}
|
||||||
|
if (StringUtils.isBlank(row.getHsCode()) && StringUtils.isNotBlank(row.getHsCodeImport())) {
|
||||||
|
row.setHsCode(row.getHsCodeImport().trim());
|
||||||
|
}
|
||||||
|
materialBaseInfoApplicationService.normalizeImportBarCodeWhenDuplicateOfHs(row);
|
||||||
|
materialBaseInfoApplicationService.fillIdsFromExistingMasterData(row);
|
||||||
|
materialBaseInfoApplicationService.fillOrganizationFromShipperIfNeeded(row);
|
||||||
|
if (!isValidOrgId(row.getOrganizationId()) && isValidOrgId(loginOrgId)) {
|
||||||
|
row.setOrganizationId(loginOrgId);
|
||||||
|
}
|
||||||
|
if (row.getTopOrganizationId() == null && isValidOrgId(loginTopOrgId)) {
|
||||||
|
row.setTopOrganizationId(loginTopOrgId);
|
||||||
|
}
|
||||||
|
materialBaseInfoApplicationService.fillOrganizationName(row, loginUser);
|
||||||
|
|
||||||
|
String shipperCode = StringUtils.defaultString(row.getShipperCode(), "");
|
||||||
|
String duplicateKey = row.getOrganizationId() + "|" + shipperCode + "|" + row.getMaterialCode();
|
||||||
|
if (!duplicateInFile.add(duplicateKey)) {
|
||||||
|
errors.append("第").append(rowNum).append("行:文件内存在重复物料;");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
LambdaQueryWrapper<MaterialBaseInfo> wrapper = new LambdaQueryWrapper<MaterialBaseInfo>()
|
||||||
|
.eq(MaterialBaseInfo::getDelFlag, 1)
|
||||||
|
.eq(MaterialBaseInfo::getOrganizationId, row.getOrganizationId())
|
||||||
|
.eq(MaterialBaseInfo::getMaterialCode, row.getMaterialCode());
|
||||||
|
if (StringUtils.isBlank(row.getShipperCode())) {
|
||||||
|
wrapper.and(w -> w.isNull(MaterialBaseInfo::getShipperCode).or().eq(MaterialBaseInfo::getShipperCode, ""));
|
||||||
|
} else {
|
||||||
|
wrapper.eq(MaterialBaseInfo::getShipperCode, row.getShipperCode());
|
||||||
|
}
|
||||||
|
if (materialBaseInfoService.count(wrapper) > 0) {
|
||||||
|
errors.append("第").append(rowNum).append("行:物料已存在;");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
materialBaseInfoApplicationService.fillClassifyTypeAndUnit(row);
|
||||||
|
|
||||||
|
// 包装规格查询(带缓存)
|
||||||
|
String packCacheKey = row.getOrganizationId() + "|" + StringUtils.defaultString(row.getPackName());
|
||||||
|
Map<String, Object> cachedPack = packCache.get(packCacheKey);
|
||||||
|
if (cachedPack == null) {
|
||||||
|
Object result = systemServiceFeign.getPackList(null, row.getPackName(), row.getOrganizationId());
|
||||||
|
if (result == null) {
|
||||||
|
packCache.put(packCacheKey, Collections.emptyMap());
|
||||||
|
errors.append("第").append(rowNum).append("行:包装规格查询无返回;");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
Map<String, Object> resultMap = JSON.parseObject(JSONObject.toJSONString(result), new TypeReference<Map<String, Object>>() {});
|
||||||
|
List<Map<String, Object>> rowsPack = extractTableDataRows(resultMap);
|
||||||
|
if (CollectionUtils.isEmpty(rowsPack)) {
|
||||||
|
packCache.put(packCacheKey, Collections.emptyMap());
|
||||||
|
errors.append("第").append(rowNum).append("行:包装规格不存在;");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
cachedPack = rowsPack.get(0);
|
||||||
|
packCache.put(packCacheKey, cachedPack);
|
||||||
|
}
|
||||||
|
if (cachedPack.isEmpty()) {
|
||||||
|
errors.append("第").append(rowNum).append("行:包装规格不存在(缓存);");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
String packCode = cachedPack.get("packCode") == null ? "" : String.valueOf(cachedPack.get("packCode"));
|
||||||
|
row.setPackCode(packCode);
|
||||||
|
String packId = cachedPack.get("packId") == null ? "" : String.valueOf(cachedPack.get("packId"));
|
||||||
|
if (StringUtils.isBlank(packId) || !StringUtils.isNumeric(packId)) {
|
||||||
|
errors.append("第").append(rowNum).append("行:包装规格数据异常;");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
row.setPackId(Long.valueOf(packId));
|
||||||
|
String unitName = cachedPack.get("unitName") == null ? "" : String.valueOf(cachedPack.get("unitName"));
|
||||||
|
row.setUnitCode("EA");
|
||||||
|
row.setUnitName(unitName);
|
||||||
|
|
||||||
|
MaterialBaseInfoDO materialBaseInfoDO = new MaterialBaseInfoDO();
|
||||||
|
BeanUtils.copyProperties(row, materialBaseInfoDO);
|
||||||
|
materialBaseInfoDO.setMaterialGoodsRule(materialBaseInfoApplicationService.buildImportMaterialGoodsRule(row));
|
||||||
|
materialBaseInfoDO.setMaterialCommon(null);
|
||||||
|
materialBaseInfoDO.setMaterialWarehouseControl(null);
|
||||||
|
materialBaseInfoDO.setMaterialBarCodeList(materialBaseInfoApplicationService.buildImportBarCodeList(row));
|
||||||
|
// 补全创建人信息(异步线程没有 SecurityContext,用 loginUser)
|
||||||
|
if (loginUser != null) {
|
||||||
|
materialBaseInfoDO.setCreateBy(loginUser.getUserid());
|
||||||
|
materialBaseInfoDO.setCreateByName(loginUser.getUsername());
|
||||||
|
}
|
||||||
|
materialBaseInfoDO.setCreateTime(new Date());
|
||||||
|
// 调用原 ApplicationService 的 insert,走完整的插入逻辑(含商品规则、公共信息、NC编码等)
|
||||||
|
materialBaseInfoApplicationService.insert(materialBaseInfoDO);
|
||||||
|
successCount++;
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("物料主数据异步导入 - 第{}行处理异常", rowNum, e);
|
||||||
|
errors.append("第").append(rowNum).append("行:处理异常-").append(e.getMessage()).append(";");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
long costTime = System.currentTimeMillis() - startTime;
|
||||||
|
if (errors.length() > 0) {
|
||||||
|
log.warn("=== 物料主数据异步导入完成,文件:{},总数:{},成功:{},失败:{},耗时:{}ms,失败原因:{} ===",
|
||||||
|
fileName, totalCount, successCount, totalCount - successCount, costTime, errors);
|
||||||
|
} else {
|
||||||
|
log.info("=== 物料主数据异步导入完成,文件:{},总数:{},成功:{},耗时:{}ms ===",
|
||||||
|
fileName, totalCount, successCount, costTime);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
if (tmpFile.exists()) {
|
||||||
|
tmpFile.delete();
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.warn("物料主数据异步导入 - 临时文件清理失败:{}", e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====== 以下工具方法 ======
|
||||||
|
|
||||||
|
private List<Map<String, Object>> extractTableDataRows(Map<String, Object> resultMap) {
|
||||||
|
if (resultMap == null) {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
Object data = resultMap.get("data");
|
||||||
|
if (data == null) {
|
||||||
|
data = resultMap.get("rows");
|
||||||
|
}
|
||||||
|
if (data instanceof List) {
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
List<Map<String, Object>> list = (List<Map<String, Object>>) data;
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
if (data instanceof Map) {
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
Map<String, Object> dataMap = (Map<String, Object>) data;
|
||||||
|
Object innerData = dataMap.get("data");
|
||||||
|
if (innerData instanceof List) {
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
List<Map<String, Object>> list = (List<Map<String, Object>>) innerData;
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
Object rows = dataMap.get("rows");
|
||||||
|
if (rows instanceof List) {
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
List<Map<String, Object>> list = (List<Map<String, Object>>) rows;
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isValidOrgId(Long id) {
|
||||||
|
return id != null && id > 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
+65
-3
@@ -545,9 +545,71 @@ public class StockInOrderApplicationService {
|
|||||||
info.setKhdm(userNcCode);
|
info.setKhdm(userNcCode);
|
||||||
List<InMaterialDetailPO> materialDetailList = info.getMaterialDetailList();
|
List<InMaterialDetailPO> materialDetailList = info.getMaterialDetailList();
|
||||||
if (materialDetailList != null && !materialDetailList.isEmpty()) {
|
if (materialDetailList != null && !materialDetailList.isEmpty()) {
|
||||||
for (InMaterialDetailPO inMaterialDetailPO : materialDetailList) {
|
// 收集所有有效的物料基础信息ID
|
||||||
// TODO: 设置物料详情信息
|
Set<Long> materialBaseInfoIdSet = new HashSet<>();
|
||||||
inMaterialDetailPO.setKhdm(userNcCode);
|
for (InMaterialDetailPO detail : materialDetailList) {
|
||||||
|
if (detail.getMaterialBaseInfoId() != null && detail.getMaterialBaseInfoId() > 0) {
|
||||||
|
materialBaseInfoIdSet.add(detail.getMaterialBaseInfoId());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 批量查询物料基础信息,try-catch保护,防止没有ID时NPE
|
||||||
|
Map<Long, MaterialBaseInfoPO> materialBaseInfoMap = new HashMap<>();
|
||||||
|
for (Long materialBaseInfoId : materialBaseInfoIdSet) {
|
||||||
|
try {
|
||||||
|
MaterialBaseInfoPO materialBaseInfoPO = materialBaseInfoService.getInfo(materialBaseInfoId);
|
||||||
|
if (materialBaseInfoPO != null) {
|
||||||
|
materialBaseInfoMap.put(materialBaseInfoId, materialBaseInfoPO);
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.warn("获取物料基础信息失败,物料基础信息ID:{},错误:{}", materialBaseInfoId, e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 填充明细的物料字段(物料编码、抄码、条码、单位等)
|
||||||
|
Long shipperId = info.getShipperId();
|
||||||
|
for (InMaterialDetailPO detail : materialDetailList) {
|
||||||
|
detail.setKhdm(userNcCode);
|
||||||
|
Long materialBaseInfoId = detail.getMaterialBaseInfoId();
|
||||||
|
MaterialBaseInfoPO materialBaseInfoPO = null;
|
||||||
|
|
||||||
|
if (materialBaseInfoId != null && materialBaseInfoId > 0) {
|
||||||
|
materialBaseInfoPO = materialBaseInfoMap.get(materialBaseInfoId);
|
||||||
|
}
|
||||||
|
// 兜底:ID=0时用物料名称反查
|
||||||
|
if (materialBaseInfoPO == null && StringUtils.isNotBlank(detail.getMaterialName())) {
|
||||||
|
try {
|
||||||
|
MaterialBaseInfoDO queryDO = new MaterialBaseInfoDO();
|
||||||
|
queryDO.setMaterialName(detail.getMaterialName().trim());
|
||||||
|
if (shipperId != null && shipperId > 0) {
|
||||||
|
queryDO.setShipperId(shipperId);
|
||||||
|
}
|
||||||
|
List<MaterialBaseInfoPO> list = materialBaseInfoService.queryList(queryDO);
|
||||||
|
if (list != null && !list.isEmpty()) {
|
||||||
|
materialBaseInfoPO = list.get(0);
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.warn("兜底反查物料失败,物料名:{}", detail.getMaterialName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (materialBaseInfoPO != null) {
|
||||||
|
if (StringUtils.isBlank(detail.getMaterialCode())) {
|
||||||
|
detail.setMaterialCode(materialBaseInfoPO.getMaterialCode());
|
||||||
|
}
|
||||||
|
if (StringUtils.isBlank(detail.getBarCode())) {
|
||||||
|
detail.setBarCode(materialBaseInfoPO.getBarCode());
|
||||||
|
}
|
||||||
|
if (StringUtils.isBlank(detail.getUnitCode())) {
|
||||||
|
detail.setUnitCode(materialBaseInfoPO.getUnitCode());
|
||||||
|
}
|
||||||
|
if (StringUtils.isBlank(detail.getUnitName())) {
|
||||||
|
detail.setUnitName(materialBaseInfoPO.getUnitName());
|
||||||
|
}
|
||||||
|
detail.setPackId(materialBaseInfoPO.getPackId());
|
||||||
|
detail.setPackCode(materialBaseInfoPO.getPackCode());
|
||||||
|
detail.setPackName(materialBaseInfoPO.getPackName());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
info.setMaterialDetailList(materialDetailList);
|
info.setMaterialDetailList(materialDetailList);
|
||||||
}
|
}
|
||||||
|
|||||||
-3
@@ -282,9 +282,6 @@ public class StockOutOrderApplicationService {
|
|||||||
stockOutOrderPO.setMaterialQuantity(cnt);
|
stockOutOrderPO.setMaterialQuantity(cnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
BigDecimal checkSum = (mag != null && mag.getCheckQuantitySum() != null)
|
|
||||||
? mag.getCheckQuantitySum() : BigDecimal.ZERO;
|
|
||||||
stockOutOrderPO.setCheckQuantity(checkSum);
|
|
||||||
stockOutOrderPO.setReceiptOrderAccountList(
|
stockOutOrderPO.setReceiptOrderAccountList(
|
||||||
accountByOrderId.getOrDefault(stockOutOrderPO.getOutOrderId(), Collections.emptyList()));
|
accountByOrderId.getOrDefault(stockOutOrderPO.getOutOrderId(), Collections.emptyList()));
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-1
@@ -233,7 +233,9 @@ public class StockReceiptOrderApplicationService {
|
|||||||
}
|
}
|
||||||
for (ReceiptMaterialDetailPO receiptMaterialDetailPO : receiptMaterialDetailPOList) {
|
for (ReceiptMaterialDetailPO receiptMaterialDetailPO : receiptMaterialDetailPOList) {
|
||||||
MaterialBaseInfoPO materialBaseInfoPO = materialBaseInfoMap.get(receiptMaterialDetailPO.getMaterialBaseInfoId());
|
MaterialBaseInfoPO materialBaseInfoPO = materialBaseInfoMap.get(receiptMaterialDetailPO.getMaterialBaseInfoId());
|
||||||
receiptMaterialDetailPO.setCopyCode(materialBaseInfoPO.getCopyCode());
|
if (materialBaseInfoPO != null) {
|
||||||
|
receiptMaterialDetailPO.setCopyCode(materialBaseInfoPO.getCopyCode());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 4.2 批量查询包装规格信息(单位代码为EA的单位名称)
|
// 4.2 批量查询包装规格信息(单位代码为EA的单位名称)
|
||||||
|
|||||||
+6
-1
@@ -819,7 +819,12 @@ public class MaterialInventoryImpl extends ServiceImpl<MaterialInventoryMapper,
|
|||||||
materialInventory.setNetWeight(netWeight);
|
materialInventory.setNetWeight(netWeight);
|
||||||
materialInventory.setMaterialBaseInfoId(materialInventoryParamDO.getMaterialBaseInfoId());
|
materialInventory.setMaterialBaseInfoId(materialInventoryParamDO.getMaterialBaseInfoId());
|
||||||
materialInventory.setInOrderNumber(materialInventoryParamDO.getInOrderNumber());
|
materialInventory.setInOrderNumber(materialInventoryParamDO.getInOrderNumber());
|
||||||
if (materialBaseInfo != null) {
|
// 优先使用上游传入的货主信息(如来自上架单),否则再从物料基础信息兜底
|
||||||
|
if (materialInventoryParamDO.getShipperId() != null) {
|
||||||
|
materialInventory.setShipperId(materialInventoryParamDO.getShipperId());
|
||||||
|
materialInventory.setShipperName(materialInventoryParamDO.getShipperName());
|
||||||
|
materialInventory.setShipperCode(materialInventoryParamDO.getShipperCode());
|
||||||
|
} else if (materialBaseInfo != null) {
|
||||||
materialInventory.setShipperId(materialBaseInfo.getShipperId());
|
materialInventory.setShipperId(materialBaseInfo.getShipperId());
|
||||||
materialInventory.setShipperName(materialBaseInfo.getShipperName());
|
materialInventory.setShipperName(materialBaseInfo.getShipperName());
|
||||||
materialInventory.setShipperCode(materialBaseInfo.getShipperCode());
|
materialInventory.setShipperCode(materialBaseInfo.getShipperCode());
|
||||||
|
|||||||
+7
-3
@@ -106,12 +106,16 @@ public class MaterialBaseInfoApi extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 导入物料主数据
|
* 导入物料主数据(异步执行)
|
||||||
|
*
|
||||||
|
* <p>数据量大时同步导入会导致接口超时,改为异步模式:
|
||||||
|
* 接口立即返回"已提交异步处理",后台线程执行实际导入,
|
||||||
|
* 导入结果通过日志输出。</p>
|
||||||
*/
|
*/
|
||||||
@ApiOperation("导入物料主数据")
|
@ApiOperation("导入物料主数据(异步)")
|
||||||
@PostMapping("/importData")
|
@PostMapping("/importData")
|
||||||
public AjaxResult importData(@RequestParam("file") MultipartFile file) {
|
public AjaxResult importData(@RequestParam("file") MultipartFile file) {
|
||||||
return materialBaseInfoApplicationService.importData(file);
|
return materialBaseInfoApplicationService.importDataAsync(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("物料管理更新推送信息")
|
@ApiOperation("物料管理更新推送信息")
|
||||||
|
|||||||
@@ -36,6 +36,11 @@ public final class MaterialBaseInfoImportExcelUtil {
|
|||||||
HEADER_ALIASES.put("淨重(kg)", "净重 单位:千克");
|
HEADER_ALIASES.put("淨重(kg)", "净重 单位:千克");
|
||||||
HEADER_ALIASES.put("体积(m³)", "体积 单位:立方米");
|
HEADER_ALIASES.put("体积(m³)", "体积 单位:立方米");
|
||||||
HEADER_ALIASES.put("體積(m³)", "体积 单位:立方米");
|
HEADER_ALIASES.put("體積(m³)", "体积 单位:立方米");
|
||||||
|
HEADER_ALIASES.put("长", "物料大小-长 单位:米");
|
||||||
|
HEADER_ALIASES.put("宽", "物料大小-宽 单位:米");
|
||||||
|
HEADER_ALIASES.put("高", "物料大小-高 单位:米");
|
||||||
|
HEADER_ALIASES.put("公司名称", "货主名称");
|
||||||
|
HEADER_ALIASES.put("公司名稱", "货主名称");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static List<MaterialBaseInfoDTO> importRows(InputStream is) throws Exception {
|
public static List<MaterialBaseInfoDTO> importRows(InputStream is) throws Exception {
|
||||||
|
|||||||
@@ -14,18 +14,18 @@ spring:
|
|||||||
nacos:
|
nacos:
|
||||||
discovery:
|
discovery:
|
||||||
# server-addr: 127.0.0.1:8848
|
# server-addr: 127.0.0.1:8848
|
||||||
# server-addr: 10.33.0.129:6010
|
server-addr: 10.33.0.129:6010
|
||||||
# 线上测试环境配置 容器名+端口号
|
# 线上测试环境配置 容器名+端口号
|
||||||
server-addr: 10.102.192.30:6848
|
# server-addr: 10.102.192.30:6848
|
||||||
username: nacos
|
username: nacos
|
||||||
password: manhuoda@2023
|
password: manhuoda@2023
|
||||||
#线上正式环境
|
#线上正式环境
|
||||||
# server-addr: 10.102.192.105:6848
|
# server-addr: 10.102.192.105:6848
|
||||||
config:
|
config:
|
||||||
# server-addr: 127.0.0.1:8848
|
# server-addr: 127.0.0.1:8848
|
||||||
# server-addr: 10.33.0.129:6010
|
server-addr: 10.33.0.129:6010
|
||||||
# 线上测试环境配置 容器名+端口号
|
# 线上测试环境配置 容器名+端口号
|
||||||
server-addr: 10.102.192.30:6848
|
# server-addr: 10.102.192.30:6848
|
||||||
username: nacos
|
username: nacos
|
||||||
password: manhuoda@2023
|
password: manhuoda@2023
|
||||||
#线上正式环境
|
#线上正式环境
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
ALTER TABLE NGWL_TEST_SYSTEM.CONTRACT_MANAGE_DETAIL
|
||||||
|
ADD (SERVICE_ITEMS_CODE VARCHAR(100),
|
||||||
|
SERVICE_ITEMS_NAME VARCHAR(200));
|
||||||
|
|
||||||
|
COMMENT ON COLUMN NGWL_TEST_SYSTEM.CONTRACT_MANAGE_DETAIL.SERVICE_ITEMS_CODE IS '费用类别编码(服务项编码)';
|
||||||
|
COMMENT ON COLUMN NGWL_TEST_SYSTEM.CONTRACT_MANAGE_DETAIL.SERVICE_ITEMS_NAME IS '费用类别名称(服务项名称)';
|
||||||
Reference in New Issue
Block a user