Commit 48e0fb6b authored by huyuchen's avatar huyuchen

huych-入离职登记提交

parent 6929ec25
...@@ -25,8 +25,16 @@ public interface EmployeeRegistrationPreMapper extends BaseMapper<EmployeeRegist ...@@ -25,8 +25,16 @@ public interface EmployeeRegistrationPreMapper extends BaseMapper<EmployeeRegist
* @return * @return
*/ */
IPage<EmployeeRegistrationPre> getEmployeeRegistrationPrePage(Page<EmployeeRegistrationPre> page, @Param("employeeRegistrationPre") EmployeeRegistrationPre employeeRegistrationPre); IPage<EmployeeRegistrationPre> getEmployeeRegistrationPrePage(Page<EmployeeRegistrationPre> page, @Param("employeeRegistrationPre") EmployeeRegistrationPre employeeRegistrationPre);
/**
* 入职待建档表导出数量查询
* @param searchVo 导出查询vo
* @return
*/
long selectExportCount(@Param("EmployeeRegistrationPre") EmployeeRegistrationPreSearchVo searchVo); long selectExportCount(@Param("EmployeeRegistrationPre") EmployeeRegistrationPreSearchVo searchVo);
/**
* 入职待建档表导出列表查询
* @param searchVo 导出查询vo
* @return
*/
List<EmployeeRegistrationPreExportVo> selectExportList(@Param("EmployeeRegistrationPre") EmployeeRegistrationPreSearchVo searchVo); List<EmployeeRegistrationPreExportVo> selectExportList(@Param("EmployeeRegistrationPre") EmployeeRegistrationPreSearchVo searchVo);
} }
...@@ -59,8 +59,9 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -59,8 +59,9 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
public IPage<EmployeeRegistrationPre> getEmployeeRegistrationPrePage(Page<EmployeeRegistrationPre> page, EmployeeRegistrationPreSearchVo employeeRegistrationPre){ public IPage<EmployeeRegistrationPre> getEmployeeRegistrationPrePage(Page<EmployeeRegistrationPre> page, EmployeeRegistrationPreSearchVo employeeRegistrationPre){
//权限赋值 //权限赋值
initSearchVo(employeeRegistrationPre); initSearchVo(employeeRegistrationPre);
if (Common.isEmpty(employeeRegistrationPre.getStatusList())) { if (Common.isEmpty(employeeRegistrationPre.getStatusList())
employeeRegistrationPre.setStatusList(CommonConstants.processPreArchivesStatus); && CommonConstants.ONE_STRING.equals(employeeRegistrationPre.getType())) {
employeeRegistrationPre.setStatusList(CommonConstants.processPreStatus);
} }
return baseMapper.getEmployeeRegistrationPrePage(page,employeeRegistrationPre); return baseMapper.getEmployeeRegistrationPrePage(page,employeeRegistrationPre);
} }
......
...@@ -121,7 +121,9 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr ...@@ -121,7 +121,9 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
public IPage<EmployeeRegistration> getHrConfirmEmployeeRegistrationPage(Page<EmployeeRegistration> page, EmployeeRegistrationSearchVo employeeRegistration) { public IPage<EmployeeRegistration> getHrConfirmEmployeeRegistrationPage(Page<EmployeeRegistration> page, EmployeeRegistrationSearchVo employeeRegistration) {
//权限和条件赋值 //权限和条件赋值
initSearchVo(employeeRegistration); initSearchVo(employeeRegistration);
employeeRegistration.setStatusList(CommonConstants.processPreStatus); if (CommonConstants.ONE_STRING.equals(employeeRegistration.getType())) {
employeeRegistration.setStatusList(CommonConstants.processPreStatus);
}
employeeRegistration.setTypeList(CommonConstants.processPreStatus); employeeRegistration.setTypeList(CommonConstants.processPreStatus);
return baseMapper.getEmployeeRegistrationPage(page, employeeRegistration); return baseMapper.getEmployeeRegistrationPage(page, employeeRegistration);
} }
......
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