Commit 8d03f0f5 authored by huyuchen's avatar huyuchen

huych-入职登记提交

parent d96623bc
...@@ -249,6 +249,20 @@ public class EmployeeRegistrationController { ...@@ -249,6 +249,20 @@ public class EmployeeRegistrationController {
return new R<>(employeeRegistrationService.getHrConfirmEmployeeRegistrationPage(page, employeeRegistration)); return new R<>(employeeRegistrationService.getHrConfirmEmployeeRegistrationPage(page, employeeRegistration));
} }
/**
* 入职待确认列表查询身份证
*
* @param employeeRegistration 入离职登记表
* @return
*/
@Operation(description = "入职待确认列表简单分页查询")
@GetMapping("/hrConfirmIdcardList")
public R<List<String>> getHrConfirmIdcardList(EmployeeRegistrationSearchVo employeeRegistration) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, employeeRegistration);
return R.ok(employeeRegistrationService.getHrConfirmIdcardList(employeeRegistration));
}
/** /**
* 入职待确认表 批量导出 * 入职待确认表 批量导出
* *
......
...@@ -27,6 +27,8 @@ public interface EmployeeRegistrationMapper extends BaseMapper<EmployeeRegistrat ...@@ -27,6 +27,8 @@ public interface EmployeeRegistrationMapper extends BaseMapper<EmployeeRegistrat
*/ */
IPage<EmployeeRegistration> getEmployeeRegistrationPage(Page<EmployeeRegistration> page, @Param("employeeRegistration") EmployeeRegistrationSearchVo employeeRegistration); IPage<EmployeeRegistration> getEmployeeRegistrationPage(Page<EmployeeRegistration> page, @Param("employeeRegistration") EmployeeRegistrationSearchVo employeeRegistration);
List<String> getHrConfirmIdcardList(@Param("employeeRegistration") EmployeeRegistrationSearchVo employeeRegistration);
List<EmployeeRegistration> getEmployeeRegistrationList(@Param("employeeRegistration") EmployeeRegistrationSearchVo employeeRegistration); List<EmployeeRegistration> getEmployeeRegistrationList(@Param("employeeRegistration") EmployeeRegistrationSearchVo employeeRegistration);
long selectExportCount(@Param("employeeRegistration") EmployeeRegistrationSearchVo employeeRegistration); long selectExportCount(@Param("employeeRegistration") EmployeeRegistrationSearchVo employeeRegistration);
......
...@@ -111,6 +111,13 @@ public interface EmployeeRegistrationService extends IService<EmployeeRegistrati ...@@ -111,6 +111,13 @@ public interface EmployeeRegistrationService extends IService<EmployeeRegistrati
*/ */
void hrConfirmExport(HttpServletResponse response, EmployeeRegistrationSearchVo searchVo); void hrConfirmExport(HttpServletResponse response, EmployeeRegistrationSearchVo searchVo);
/**
* 入职待确认身份证查询
* @param searchVo 入离职登记
* @return
*/
List<String> getHrConfirmIdcardList(EmployeeRegistrationSearchVo searchVo);
/** /**
* 入职待确认表确认接收 * 入职待确认表确认接收
* @param preVo 入离职登记 * @param preVo 入离职登记
......
...@@ -146,6 +146,17 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr ...@@ -146,6 +146,17 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
return baseMapper.getEmployeeRegistrationPage(page, employeeRegistration); return baseMapper.getEmployeeRegistrationPage(page, employeeRegistration);
} }
@Override
public List<String> getHrConfirmIdcardList(EmployeeRegistrationSearchVo searchVo) {
//权限和条件赋值
initSearchVo(searchVo);
if (Common.isEmpty(searchVo.getStatusList())) {
searchVo.setStatusList(CommonConstants.processPreStatus);
}
searchVo.setTypeList(CommonConstants.processPreStatus);
return baseMapper.getHrConfirmIdcardList(searchVo);
}
/** /**
* 入离职登记表批量导出 * 入离职登记表批量导出
* *
......
...@@ -244,6 +244,17 @@ ...@@ -244,6 +244,17 @@
order by a.create_time desc order by a.create_time desc
</select> </select>
<!--employeeRegistration简单分页查询-->
<select id="getHrConfirmIdcardList" resultType="java.lang.String">
SELECT
a.emp_idcard
FROM employee_registration a
<where>
1=1
<include refid="employeeRegistration_where"/>
</where>
</select>
<!--employeeRegistration简单分页查询--> <!--employeeRegistration简单分页查询-->
<select id="getEmployeeRegistrationList" resultMap="employeeRegistrationMap"> <select id="getEmployeeRegistrationList" resultMap="employeeRegistrationMap">
SELECT SELECT
......
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