|
|
@@ -228,6 +228,7 @@ public class OrganizationServiceImpl extends BaseMybatisDao<DepartmentMapper> im
|
|
|
dep.setApproval(in.getApproval());
|
|
|
dep.setApprovalAid(in.getApprovalAid());
|
|
|
dep.setTechAdminId(in.getTechAdminId());
|
|
|
+ dep.setOperationGuaranteeId(in.getOperationGuaranteeId());
|
|
|
//财务与复审切换的时候要切换所有未审核的财务
|
|
|
boolean updateFinance=false;
|
|
|
boolean updateRetrialFinance=false;
|
|
|
@@ -294,6 +295,9 @@ public class OrganizationServiceImpl extends BaseMybatisDao<DepartmentMapper> im
|
|
|
if (in.getCashierExamine()==1){
|
|
|
dep.setCashierExamine(in.getCashierExamine());
|
|
|
}
|
|
|
+ if (in.getTechAdminId()==null){
|
|
|
+ departmentMapper.updateNull(in);
|
|
|
+ }
|
|
|
return departmentMapper.updateByPrimaryKeySelective(dep);
|
|
|
}
|
|
|
|