Commit 687570ee authored by huyuchen's avatar huyuchen

Merge remote-tracking branch 'origin/develop' into develop

parents fdc9c6b8 6707e587
...@@ -144,9 +144,9 @@ public class TEmployeeProject extends BaseEntity { ...@@ -144,9 +144,9 @@ public class TEmployeeProject extends BaseEntity {
private Integer isLeaveEmployee; private Integer isLeaveEmployee;
/** /**
* 已产生未结算费用 0:划转 1:不划转 * 已产生未结算费用 0:不划转 1:划转
*/ */
@Schema(description ="已产生未结算费用(0:划转 1:不划转)") @Schema(description ="已产生未结算费用(0:不划转 1:划转)")
@TableField(exist = false) @TableField(exist = false)
private String unsettleDeal; private String unsettleDeal;
......
...@@ -227,7 +227,7 @@ public class TEmpChangeInfoServiceImpl extends ServiceImpl<TEmpChangeInfoMapper, ...@@ -227,7 +227,7 @@ public class TEmpChangeInfoServiceImpl extends ServiceImpl<TEmpChangeInfoMapper,
updateTEmployeePro.setUnitName(tCustomerInfo.getCustomerName()); updateTEmployeePro.setUnitName(tCustomerInfo.getCustomerName());
} }
updateTEmployeePro.setChangeStartMonth(excel.getChangeStartMonth()); updateTEmployeePro.setChangeStartMonth(excel.getChangeStartMonth());
updateTEmployeePro.setUnsettleDeal(CommonConstants.ONE_STRING); updateTEmployeePro.setUnsettleDeal(CommonConstants.IS_NO_CHANGE);
updateList.add(updateTEmployeePro); updateList.add(updateTEmployeePro);
// 记录变更日志 // 记录变更日志
tEmployeeLogService.saveModificationRecord(CommonConstants.dingleDigitIntArray[1], "", tEmployeeProjectOld.getId(), tEmployeeProjectOld, updateTEmployeePro); tEmployeeLogService.saveModificationRecord(CommonConstants.dingleDigitIntArray[1], "", tEmployeeProjectOld.getId(), tEmployeeProjectOld, updateTEmployeePro);
......
...@@ -392,7 +392,7 @@ public interface CommonConstants { ...@@ -392,7 +392,7 @@ public interface CommonConstants {
// 是否 // 是否
String IS_CHANGE = "划转"; String IS_CHANGE = "划转";
String IS_NO_CHANGE = "划转"; String IS_NO_CHANGE = "划转";
// 年 // 年
String YEAR = "年"; String YEAR = "年";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment