Commit bd401948 authored by hongguangwu's avatar hongguangwu

Merge remote-tracking branch 'origin/MVP1.7.8' into MVP1.7.8

parents 558959db 2043796b
......@@ -276,7 +276,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
}
if (null != preExit.getContractSubName() && null == pre.getContractSubName()) {
Map<String, String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "contract_business_type");
for (Map.Entry<String, String> entry : dicObj.entrySet()) {
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getContractSubName())) {
contractXfBefore = entry.getValue();
......@@ -286,7 +286,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
}
if (null == preExit.getContractSubName() && null != pre.getContractSubName()) {
Map<String, String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "contract_business_type");
for (Map.Entry<String, String> entry : dicObj.entrySet()) {
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getContractSubName())) {
contractXfAfter = entry.getValue();
......@@ -297,7 +297,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
if (null != preExit.getContractSubName() && null != pre.getContractSubName()
&& !preExit.getContractSubName().equals(pre.getContractSubName())) {
Map<String, String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "contract_business_type");
for (Map.Entry<String, String> entry : dicObj.entrySet()) {
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getContractSubName())) {
contractXfBefore = entry.getValue();
......@@ -425,7 +425,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
}
if (null != comparePre.getContractSubName() && null == employeeRegistrationPre.getContractSubName()) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "contract_business_type");
for (Map.Entry<String,String> entry:dicObj.entrySet()){
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(comparePre.getContractSubName())){
contractXfBefore = entry.getValue();
......@@ -435,7 +435,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
}
if (null == comparePre.getContractSubName() && null != employeeRegistrationPre.getContractSubName()) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "contract_business_type");
for (Map.Entry<String,String> entry:dicObj.entrySet()){
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(employeeRegistrationPre.getContractSubName())){
contractXfAfter = entry.getValue();
......@@ -446,7 +446,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
if (null != comparePre.getContractSubName() && null != employeeRegistrationPre.getContractSubName()
&& !comparePre.getContractSubName().equals(employeeRegistrationPre.getContractSubName())) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "contract_business_type");
for (Map.Entry<String,String> entry:dicObj.entrySet()){
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(comparePre.getContractSubName())){
contractXfBefore = entry.getValue();
......
......@@ -276,7 +276,6 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
}
// 校验字典项是否有重复标签
List<SysAutoDictItem> autoDictItems = entity.getAutoDictItems();
Set<String> repeatItems = new HashSet<>();
if (!checkDictItemsForDuplicates(autoDictItems)) {
return R.failed(itemsLabelRepeat);
}
......
......@@ -95,5 +95,6 @@
1=1
<include refid="tAutoRuleLog_where"/>
</where>
order by a.CREATE_TIME DESC
</select>
</mapper>
......@@ -170,8 +170,8 @@
a.DEPT_NAME as dept_name,
a.DEPT_NO as dept_no,
a.CONTRACT_TYPE as contract_type,
if(ifnull(CONTRACT_TYPE,-1) != -1 and ifnull(WORKING_HOURS,-1) != -1
and ifnull(POST,-1) != -1 and ifnull(ENJOIN_DATE,-1) != -1 and ifnull(TRY_PERIOD,-1) != -1,'基本信息','合同信息') as type,
if(ifnull(CONTRACT_TYPE,-1) != -1 and CONTRACT_TYPE !='' and ifnull(WORKING_HOURS,-1) != -1 and WORKING_HOURS !=''
and ifnull(POST,-1) != -1 and POST !='' and ifnull(ENJOIN_DATE,-1) != -1 and ifnull(TRY_PERIOD,-1) != -1 and TRY_PERIOD !='' ,'基本信息','合同信息') as type,
'1' as process_status,
a.ENJOIN_DATE as join_leave_date,
a.PROJECT_SOURCE as data_source,
......
......@@ -970,7 +970,10 @@ public class DoJointSocialTask {
//获取项目信息
settleDomain = selectVoMap.get(library.getDeptNo());
if (Common.isEmpty(settleDomain)) {
ServiceUtil.runTimeExceptionDiy("获取结算主体异常,请检查传参和档案服务状态!");
// 抛出异常错误,通过邮件提醒处理
log.error("获取结算主体(“+library.getDeptNo()+”)异常,请检查传参和档案服务状态!");
continue;
//ServiceUtil.runTimeExceptionDiy("获取结算主体异常,请检查传参和档案服务状态!");
}
if (CommonConstants.ZERO_STRING.equals(settleDomain.getSocialType())) {
continue;
......@@ -1264,7 +1267,10 @@ public class DoJointSocialTask {
//获取项目信息
settleDomain = selectVoMap.get(library.getDeptNo());
if (Common.isEmpty(settleDomain)) {
ServiceUtil.runTimeExceptionDiy("获取结算主体异常,请检查传参和档案服务状态!");
// 抛出异常错误,通过邮件提醒处理
log.error("获取结算主体(“+library.getDeptNo()+”)异常,请检查传参和档案服务状态!");
continue;
//ServiceUtil.runTimeExceptionDiy("获取结算主体异常,请检查传参和档案服务状态!");
}
if (CommonConstants.ZERO_STRING.equals(settleDomain.getFundType())) {
continue;
......
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