客户信息变更

This commit is contained in:
lg
2025-10-23 15:04:42 +08:00
parent a4cc5c14f3
commit f2d4ff4237
2 changed files with 2 additions and 3 deletions

View File

@ -239,7 +239,6 @@ public class XzdPurchaseContractInformationVo implements Serializable {
* 其他收入合同项目名称 * 其他收入合同项目名称
*/ */
@ExcelProperty(value = "其他收入合同项目名称") @ExcelProperty(value = "其他收入合同项目名称")
@Translation(type = TransConstant.DEPT_ID_TO_NAME, mapper = "otherIncomeContractProject")
private String otherIncomeContractProjectName; private String otherIncomeContractProjectName;
/** /**

View File

@ -134,7 +134,7 @@ public class XzdCorrespondentListImp implements IXzdCorrespondentList {
xzdCustomertypeInfoService.saveBatch(collect); xzdCustomertypeInfoService.saveBatch(collect);
for (XzdCustomertypeInfo customertypeInfo : collect) { for (XzdCustomertypeInfo customertypeInfo : collect) {
if (customertypeInfo.getPrimaryClass() == "1"){ if (customertypeInfo.getPrimaryClass().equals("1")){
XzdCustomertype xzdCustomertype = iXzdCustomertypeService.getBaseMapper().selectById(customertypeInfo.getCustomertypeId()); XzdCustomertype xzdCustomertype = iXzdCustomertypeService.getBaseMapper().selectById(customertypeInfo.getCustomertypeId());
if (xzdCustomertype != null){ if (xzdCustomertype != null){
customertype = xzdCustomertype.getCustomerType(); customertype = xzdCustomertype.getCustomerType();
@ -353,7 +353,7 @@ public class XzdCorrespondentListImp implements IXzdCorrespondentList {
}).collect(Collectors.toList()); }).collect(Collectors.toList());
xzdCustomertypeInfoService.saveBatch(collect); xzdCustomertypeInfoService.saveBatch(collect);
for (XzdCustomertypeInfo customertypeInfo : collect) { for (XzdCustomertypeInfo customertypeInfo : collect) {
if (customertypeInfo.getPrimaryClass() == "1"){ if (customertypeInfo.getPrimaryClass().equals("1")){
XzdCustomertype xzdCustomertype = iXzdCustomertypeService.getBaseMapper().selectById(customertypeInfo.getCustomertypeId()); XzdCustomertype xzdCustomertype = iXzdCustomertypeService.getBaseMapper().selectById(customertypeInfo.getCustomertypeId());
if (xzdCustomertype != null){ if (xzdCustomertype != null){
customertype = xzdCustomertype.getCustomerType(); customertype = xzdCustomertype.getCustomerType();