EmpCertificationBillHRListHandlerEx.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.kingdee.eas.custom.sendmessage.handler;
  2. import com.kingdee.bos.BOSException;
  3. import com.kingdee.bos.Context;
  4. import com.kingdee.eas.common.EASBizException;
  5. import com.kingdee.eas.custom.sendmessage.utils.SendMessageUtil;
  6. import com.kingdee.shr.base.syssetting.context.SHRContext;
  7. import com.kingdee.shr.base.syssetting.exception.SHRWebException;
  8. import com.kingdee.shr.empCertification.web.handler.EmpCertificationBillHRListHandler;
  9. import org.springframework.ui.ModelMap;
  10. import javax.servlet.http.HttpServletRequest;
  11. import javax.servlet.http.HttpServletResponse;
  12. /**
  13. * @author qingwu
  14. * @date 2024/11/19
  15. * @apiNote
  16. * 员工在职证明办理列表
  17. */
  18. public class EmpCertificationBillHRListHandlerEx extends EmpCertificationBillHRListHandler {
  19. Context ctx = SHRContext.getInstance().getContext();
  20. /**
  21. * 发送消息
  22. *
  23. * @param request
  24. * @param response
  25. * @param modelMap
  26. * @throws SHRWebException
  27. */
  28. public void sendMessageAction(HttpServletRequest request, HttpServletResponse response, ModelMap modelMap) throws SHRWebException, BOSException, EASBizException {
  29. String billId = this.getBillId(request);
  30. SendMessageUtil sendMessageUtil = new SendMessageUtil();
  31. sendMessageUtil.sendMessage(ctx, billId);
  32. }
  33. }