CommonCertificationBillHRListHandlerEx.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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.CommonCertificationBillHRListHandler;
  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. public class CommonCertificationBillHRListHandlerEx extends CommonCertificationBillHRListHandler {
  18. Context ctx = SHRContext.getInstance().getContext();
  19. /**
  20. * 发送消息
  21. *
  22. * @param request
  23. * @param response
  24. * @param modelMap
  25. * @throws SHRWebException
  26. */
  27. public void sendMessageAction(HttpServletRequest request, HttpServletResponse response, ModelMap modelMap) throws SHRWebException, BOSException, EASBizException {
  28. String billId = this.getBillId(request);
  29. SendMessageUtil sendMessageUtil = new SendMessageUtil();
  30. sendMessageUtil.sendMessage(ctx, billId);
  31. }
  32. }