Search in sources :

Example 11 with Declaration

use of com.bc.pmpheep.back.po.Declaration in project pmph by BCSquad.

the class SystemMessageService method sendWhenSubmitDeclarationForm.

/**
 * 作家教材申报表 给学校管理员发送或者人卫教材相关人员发送消息
 *
 * @author Mryang
 * @createDate 2017年11月17日 下午4:31:19
 * @param declarationId
 *            申报id
 * @throws CheckedServiceException
 * @throws IOException
 */
public void sendWhenSubmitDeclarationForm(Long declarationId) throws CheckedServiceException, IOException {
    // 获取申报表
    Declaration declaration = declarationService.getDeclarationById(declarationId);
    if (null == declaration) {
        throw new CheckedServiceException(CheckedExceptionBusiness.MATERIAL, CheckedExceptionResult.NULL_PARAM, "申报表不存在");
    }
    if (null == declaration.getOrgId()) {
        throw new CheckedServiceException(CheckedExceptionBusiness.MATERIAL, CheckedExceptionResult.NULL_PARAM, "认证的管理员为空");
    }
    Material material = materialService.getMaterialById(declaration.getMaterialId());
    if (declaration.getOrgId() == 0) {
        // 提交的人卫社
        // 项目编辑 策划编辑 主任 id
        String msgContent = "[<font color='red'>" + declaration.getRealname() + "</font>]提交了《<font color='red'>" + material.getMaterialName() + "</font>》申报表,请及时进行资料审核";
        // 存入消息主体
        Message message = new Message(msgContent);
        message = messageService.add(message);
        String msg_id = message.getId();
        // 主任id
        Long directorId = material.getDirector();
        // 项目编辑列表
        List<MaterialProjectEditorVO> materialProjectEditorList = materialProjectEditorService.listMaterialProjectEditors(material.getId());
        // 批量保存的消息集合
        List<UserMessage> userMessageList = new ArrayList<UserMessage>(materialProjectEditorList.size() + 1);
        List<String> userIds = new ArrayList<String>(materialProjectEditorList.size() + 1);
        userMessageList.add(new UserMessage(msg_id, messageTitle, new Short("0"), 0L, new Short("0"), directorId, new Short("1"), null));
        userIds.add("1_" + directorId);
        for (MaterialProjectEditorVO materialProjectEditor : materialProjectEditorList) {
            UserMessage userMessage = new UserMessage(msg_id, messageTitle, new Short("0"), 0L, new Short("0"), materialProjectEditor.getEditorId(), new Short("1"), null);
            userMessageList.add(userMessage);
            userIds.add("1_" + materialProjectEditor.getEditorId());
        }
        // 策划编辑
        // 我申报的书籍
        List<DecPosition> decPositionList = decPositionService.listDecPositions(declarationId);
        for (DecPosition decPosition : decPositionList) {
            Textbook textbook = textbookService.getTextbookById(decPosition.getTextbookId());
            if (null != textbook && null != textbook.getPlanningEditor()) {
                UserMessage userMessage = new UserMessage(msg_id, messageTitle, new Short("0"), 0L, new Short("0"), textbook.getPlanningEditor(), new Short("1"), null);
                userMessageList.add(userMessage);
                userIds.add("1_" + textbook.getPlanningEditor());
            }
        }
        // 发送消息
        userMessageService.addUserMessageBatch(userMessageList);
        // websocket推送页面消息
        WebScocketMessage webScocketMessage = new WebScocketMessage(msg_id, Const.MSG_TYPE_0, 0L, "系统", Const.SENDER_TYPE_0, Const.SEND_MSG_TYPE_0, RouteUtil.DEFAULT_USER_AVATAR, messageTitle, msgContent, DateUtil.getCurrentTime());
        myWebSocketHandler.sendWebSocketMessageToUser(userIds, webScocketMessage);
    } else {
        // 提交的机构
        String msgContent = "贵校老师[<font color='red'>" + declaration.getRealname() + "</font>]提交了《<font color='red'>" + material.getMaterialName() + "</font>》申报表,请及时进行资料审核、打印并快递申报纸质表";
        // 存入消息主体
        Message message = new Message(msgContent);
        message = messageService.add(message);
        String msg_id = message.getId();
        // 获取机构用户
        List<Long> orgIds = new ArrayList<Long>(1);
        orgIds.add(declaration.getOrgId());
        List<OrgUser> orgUserList = orgUserService.getOrgUserListByOrgIds(orgIds);
        List<UserMessage> userMessageList = new ArrayList<UserMessage>(orgUserList.size());
        List<String> userIds = new ArrayList<String>(orgUserList.size());
        for (OrgUser orgUser : orgUserList) {
            UserMessage userMessage = new UserMessage(msg_id, messageTitle, new Short("0"), 0L, new Short("0"), orgUser.getId(), new Short("3"), null);
            userMessageList.add(userMessage);
            userIds.add("3_" + orgUser.getId());
        }
        // 发送消息
        userMessageService.addUserMessageBatch(userMessageList);
        // websocket推送页面消息
        WebScocketMessage webScocketMessage = new WebScocketMessage(msg_id, Const.MSG_TYPE_0, 0L, "系统", Const.SENDER_TYPE_0, Const.SEND_MSG_TYPE_0, RouteUtil.DEFAULT_USER_AVATAR, messageTitle, msgContent, DateUtil.getCurrentTime());
        myWebSocketHandler.sendWebSocketMessageToUser(userIds, webScocketMessage);
    }
}
Also used : UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) Message(com.bc.pmpheep.general.po.Message) OrgUser(com.bc.pmpheep.back.po.OrgUser) ArrayList(java.util.ArrayList) CheckedServiceException(com.bc.pmpheep.service.exception.CheckedServiceException) Material(com.bc.pmpheep.back.po.Material) UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) MaterialProjectEditorVO(com.bc.pmpheep.back.vo.MaterialProjectEditorVO) DecPosition(com.bc.pmpheep.back.po.DecPosition) Textbook(com.bc.pmpheep.back.po.Textbook) Declaration(com.bc.pmpheep.back.po.Declaration)

Example 12 with Declaration

use of com.bc.pmpheep.back.po.Declaration in project pmph by BCSquad.

the class SystemMessageService method sendWhenConfirmFirstEditor.

/**
 * 遴选主编副主编时点击发布按钮之后向主编、副主编发送消息
 *
 * @author Mryang
 * @createDate 2017年11月17日 下午1:57:04
 * @param bookId
 *            教材书籍id
 * @throws CheckedServiceException
 * @throws IOException
 */
public void sendWhenConfirmFirstEditor(Long bookId, List<DecPositionPublished> newMessage) throws CheckedServiceException, IOException {
    // 获取教材书籍
    Textbook textbook = textbookService.getTextbookById(bookId);
    if (textbook.getIsPublished()) {
        sendWhenPubfinalResult(bookId, newMessage);
        return;
    }
    // 获取教材
    Material material = materialService.getMaterialById(textbook.getMaterialId());
    if (null == material) {
        throw new CheckedServiceException(CheckedExceptionBusiness.MATERIAL, CheckedExceptionResult.NULL_PARAM, "该书籍没有找到对应的教材");
    }
    // 获取这本书的申报遴选列表
    for (DecPositionPublished decPosition : newMessage) {
        if (null != decPosition && null != decPosition.getChosenPosition() && null != decPosition.getRank()) {
            // 筛选出主编、副主编
            Declaration declaration = declarationService.getDeclarationById(decPosition.getDeclarationId());
            // 消息内容
            String msgContent = "";
            if (decPosition.getChosenPosition() == 4 || decPosition.getChosenPosition() == 12) {
                if (decPosition.getRank() == 1) {
                    if (decPosition.getChosenPosition() == 12) {
                        msgContent = "恭喜您被选为《<font color='red'>" + material.getMaterialName() + "</font>》<font color='red'>[" + textbook.getTextbookName() + "</font>]的第一主编和数字编委,您现在可以开始遴选编委了,最终结果以遴选结果公告为准";
                    } else {
                        msgContent = "恭喜您被选为《<font color='red'>" + material.getMaterialName() + "</font>》<font color='red'>[" + textbook.getTextbookName() + "</font>]的第一主编,您现在可以开始遴选编委了,最终结果以遴选结果公告为准";
                    }
                } else {
                    if (decPosition.getChosenPosition() == 12) {
                        msgContent = "恭喜您被选为《<font color='red'>" + material.getMaterialName() + "</font>》<font color='red'>[" + textbook.getTextbookName() + "</font>]的主编与数字编委,最终结果以遴选结果公告为准";
                    } else {
                        msgContent = "恭喜您被选为《<font color='red'>" + material.getMaterialName() + "</font>》<font color='red'>[" + textbook.getTextbookName() + "</font>]的主编,最终结果以遴选结果公告为准";
                    }
                }
            }
            if (decPosition.getChosenPosition() == 2 || decPosition.getChosenPosition() == 10) {
                if (decPosition.getChosenPosition() == 10) {
                    msgContent = "恭喜您被选为《<font color='red'>" + material.getMaterialName() + "</font>》<font color='red'>[" + textbook.getTextbookName() + "</font>]的副主编和数字编委,最终结果以遴选结果公告为准";
                } else {
                    msgContent = "恭喜您被选为《<font color='red'>" + material.getMaterialName() + "</font>》<font color='red'>[" + textbook.getTextbookName() + "</font>]的副主编,最终结果以遴选结果公告为准";
                }
            }
            Message message = new Message(msgContent);
            message = messageService.add(message);
            String msg_id = message.getId();
            UserMessage userMessage = new UserMessage(msg_id, messageTitle, new Short("0"), 0L, new Short("0"), declaration.getUserId(), new Short("2"), null);
            userMessageService.addUserMessage(userMessage);
            // websocket推送页面消息
            WebScocketMessage webScocketMessage = new WebScocketMessage(msg_id, Const.MSG_TYPE_0, 0L, "系统", Const.SENDER_TYPE_0, Const.SEND_MSG_TYPE_0, RouteUtil.DEFAULT_USER_AVATAR, messageTitle, msgContent, DateUtil.getCurrentTime());
            List<String> userIds = new ArrayList<String>(1);
            userIds.add("2_" + declaration.getUserId());
            myWebSocketHandler.sendWebSocketMessageToUser(userIds, webScocketMessage);
        }
    }
}
Also used : UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) Message(com.bc.pmpheep.general.po.Message) Textbook(com.bc.pmpheep.back.po.Textbook) ArrayList(java.util.ArrayList) Material(com.bc.pmpheep.back.po.Material) CheckedServiceException(com.bc.pmpheep.service.exception.CheckedServiceException) UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) DecPositionPublished(com.bc.pmpheep.back.po.DecPositionPublished) Declaration(com.bc.pmpheep.back.po.Declaration)

Example 13 with Declaration

use of com.bc.pmpheep.back.po.Declaration in project pmph by BCSquad.

the class SystemMessageService method sendWhenDeclarationFormAudit.

/**
 * 教材申报表审核 向作家用户发送消息
 *
 * @author Mryang
 * @createDate 2017年11月17日 下午4:42:14
 * @param declarationId
 *            申报id
 * @param isPass
 *            true 通过/false 退回
 * @throws CheckedServiceException
 * @throws IOException
 */
public void sendWhenDeclarationFormAudit(Long declarationId, boolean isPass, String returnCause) throws CheckedServiceException, IOException {
    // 获取申报表
    Declaration declaration = declarationService.getDeclarationById(declarationId);
    if (null == declaration) {
        throw new CheckedServiceException(CheckedExceptionBusiness.MATERIAL, CheckedExceptionResult.NULL_PARAM, "申报表不存在");
    }
    if (null == declaration.getOrgId()) {
        throw new CheckedServiceException(CheckedExceptionBusiness.MATERIAL, CheckedExceptionResult.NULL_PARAM, "认证的管理员为空");
    }
    // 获取教材
    Material material = materialService.getMaterialById(declaration.getMaterialId());
    String msgContent = "";
    if (declaration.getOrgId() == 0) {
        // 提交的人卫社
        msgContent = "抱歉,您提交的《<font color='red'>" + material.getMaterialName() + "</font>》申报表被[<font color='red'>出版社</font>]退回,退回原因:" + returnCause + ",请您核对后重试";
        if (isPass) {
            // 通过
            msgContent = "恭喜!您提交的《<font color='red'>" + material.getMaterialName() + "</font>》申报表已通过[<font color='red'>出版社</font>]审核";
        }
    } else {
        // 提交的机构
        msgContent = "抱歉,您提交的《<font color='red'>" + material.getMaterialName() + "</font>》申报表被[<font color='red'>学校管理员</font>]退回,退回原因:" + returnCause + ",请您核对后重试";
        if (isPass) {
            // 通过
            msgContent = "恭喜!您提交的《<font color='red'>" + material.getMaterialName() + "</font>》申报表已通过[<font color='red'>学校管理员</font>]审核";
        }
    }
    // 存入消息主体
    Message message = new Message(msgContent);
    message = messageService.add(message);
    String msg_id = message.getId();
    // 发送消息
    userMessageService.addUserMessage(new UserMessage(msg_id, messageTitle, new Short("0"), 0L, new Short("0"), declaration.getUserId(), new Short("2"), null));
    // websocket推送页面消息
    WebScocketMessage webScocketMessage = new WebScocketMessage(msg_id, Const.MSG_TYPE_0, 0L, "系统", Const.SENDER_TYPE_0, Const.SEND_MSG_TYPE_0, RouteUtil.DEFAULT_USER_AVATAR, messageTitle, msgContent, DateUtil.getCurrentTime());
    List<String> userIds = new ArrayList<String>(1);
    userIds.add("2_" + declaration.getUserId());
    myWebSocketHandler.sendWebSocketMessageToUser(userIds, webScocketMessage);
}
Also used : UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) Message(com.bc.pmpheep.general.po.Message) ArrayList(java.util.ArrayList) CheckedServiceException(com.bc.pmpheep.service.exception.CheckedServiceException) Material(com.bc.pmpheep.back.po.Material) UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) Declaration(com.bc.pmpheep.back.po.Declaration)

Example 14 with Declaration

use of com.bc.pmpheep.back.po.Declaration in project pmph by BCSquad.

the class SystemMessageService method sendWhenReceiptAudit.

/**
 * 出版社收到纸质表 审核
 *
 * @author Mryang
 * @createDate 2017年11月17日 下午5:08:49
 * @param declarationId
 * @param isPass
 *            true收到资质表 / false退回资质表
 * @throws CheckedServiceException
 * @throws IOException
 */
public void sendWhenReceiptAudit(Long declarationId, boolean isPass) throws CheckedServiceException, IOException {
    Declaration declaration = declarationService.getDeclarationById(declarationId);
    if (null == declaration) {
        throw new CheckedServiceException(CheckedExceptionBusiness.MATERIAL, CheckedExceptionResult.NULL_PARAM, "申报表不存在");
    }
    if (null == declaration.getOrgId()) {
        throw new CheckedServiceException(CheckedExceptionBusiness.MATERIAL, CheckedExceptionResult.NULL_PARAM, "管理员为空");
    }
    Material material = materialService.getMaterialById(declaration.getMaterialId());
    String orgMsgContent = "抱歉,贵校老师[<font color='red'>" + declaration.getRealname() + "</font>]在《<font color='red'>" + material.getMaterialName() + "</font>》提交的申报纸质表被退回";
    String writerMsgContent = "抱歉,您在《<font color='red'>" + material.getMaterialName() + "</font>》提交的申报纸质表被退回,请您核对后重试";
    if (isPass) {
        // 收到
        orgMsgContent = "您好,人民卫生出版社已收到贵校老师[<font color='red'>" + declaration.getRealname() + "</font>]在《<font color='red'>" + material.getMaterialName() + "</font>》提交的申报纸质表";
        writerMsgContent = "您好,人民卫生出版社已收到您在《<font color='red'>" + material.getMaterialName() + "</font>》提交的申报纸质表,感谢您的参与,请耐心等待遴选结果";
    } else {
        // 取消收到
        orgMsgContent = "抱歉,贵校老师[<font color='red'>" + declaration.getRealname() + "</font>]在《<font color='red'>" + material.getMaterialName() + "</font>》提交的申报纸质表被退回";
        writerMsgContent = "抱歉,您在《<font color='red'>" + material.getMaterialName() + "</font>》提交的申报纸质表被退回,请您核对后重试";
    }
    // 存入消息主体
    Message orgUserMessage = new Message(orgMsgContent);
    orgUserMessage = messageService.add(orgUserMessage);
    String orgMsg_id = orgUserMessage.getId();
    List<Long> orgIds = new ArrayList<Long>(1);
    orgIds.add(declaration.getOrgId());
    List<OrgUser> OrgUserList = orgUserService.getOrgUserListByOrgIds(orgIds);
    List<UserMessage> userMessageList = new ArrayList<UserMessage>(OrgUserList.size());
    List<String> userIds = new ArrayList<String>(1);
    for (OrgUser orgUser : OrgUserList) {
        userMessageList.add(new UserMessage(orgMsg_id, messageTitle, new Short("0"), 0L, new Short("0"), orgUser.getId(), new Short("3"), null));
        userIds.add("3_" + orgUser.getId());
    }
    // 有学校管理员发信息
    if (null != OrgUserList && OrgUserList.size() > 0) {
        // 发送消息给管理员
        userMessageService.addUserMessageBatch(userMessageList);
        // websocket推送页面消息
        WebScocketMessage webScocketMessage = new WebScocketMessage(orgMsg_id, Const.MSG_TYPE_0, 0L, "系统", Const.SENDER_TYPE_0, Const.SEND_MSG_TYPE_0, RouteUtil.DEFAULT_USER_AVATAR, messageTitle, orgMsgContent, DateUtil.getCurrentTime());
        myWebSocketHandler.sendWebSocketMessageToUser(userIds, webScocketMessage);
    }
    // ------------------------给申报者发送消息--------------------
    // 存入消息主体
    Message writerUserMessage = new Message(writerMsgContent);
    writerUserMessage = messageService.add(writerUserMessage);
    String writerMsg_id = writerUserMessage.getId();
    // 发送消息给申报者
    userMessageService.addUserMessage(new UserMessage(writerMsg_id, messageTitle, new Short("0"), 0L, new Short("0"), declaration.getUserId(), new Short("2"), null));
    // websocket推送页面消息
    WebScocketMessage webScocketMessage = new WebScocketMessage(writerMsg_id, Const.MSG_TYPE_0, 0L, "系统", Const.SENDER_TYPE_0, Const.SEND_MSG_TYPE_0, RouteUtil.DEFAULT_USER_AVATAR, messageTitle, writerMsgContent, DateUtil.getCurrentTime());
    userIds = new ArrayList<String>(1);
    userIds.add("2_" + declaration.getUserId());
    myWebSocketHandler.sendWebSocketMessageToUser(userIds, webScocketMessage);
}
Also used : UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) Message(com.bc.pmpheep.general.po.Message) OrgUser(com.bc.pmpheep.back.po.OrgUser) ArrayList(java.util.ArrayList) CheckedServiceException(com.bc.pmpheep.service.exception.CheckedServiceException) Material(com.bc.pmpheep.back.po.Material) UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) Declaration(com.bc.pmpheep.back.po.Declaration)

Example 15 with Declaration

use of com.bc.pmpheep.back.po.Declaration in project pmph by BCSquad.

the class SystemMessageService method sendWhenPositionChooserLoss.

/**
 * 给教材已结束并且未遴选上的作家推送消息
 *
 * @param materialId
 * @param declaration
 * @throws CheckedServiceException
 * @throws IOException
 */
public void sendWhenPositionChooserLoss(Long materialId, List<Declaration> declarations) throws CheckedServiceException, IOException {
    Material material = materialService.getMaterialById(materialId);
    if (ObjectUtil.isNull(material)) {
        throw new CheckedServiceException(CheckedExceptionBusiness.MATERIAL, CheckedExceptionResult.ILLEGAL_PARAM, "教材为空");
    }
    String msg = null;
    if (material.getIsAllTextbookPublished() && declarations.size() > 0) {
        msg = "《<font color='red'>" + material.getMaterialName() + "</font>》教材遴选已结束,未选中,感谢您的支持与参与。";
    }
    // 当消息不为空时才进行下面操作
    if (StringUtil.notEmpty(msg)) {
        // 存入消息主体
        Message message = new Message(msg);
        message = messageService.add(message);
        String msg_id = message.getId();
        for (Declaration declaration : declarations) {
            // 发送消息给申报者
            userMessageService.addUserMessage(new UserMessage(msg_id, messageTitle, new Short("0"), 0L, new Short("0"), declaration.getUserId(), new Short("2"), null));
            // websocket推送页面消息
            WebScocketMessage webScocketMessage = new WebScocketMessage(msg_id, Const.MSG_TYPE_0, 0L, "系统", Const.SENDER_TYPE_0, Const.SEND_MSG_TYPE_0, RouteUtil.DEFAULT_USER_AVATAR, messageTitle, msg, DateUtil.getCurrentTime());
            List<String> userIds = new ArrayList<String>(1);
            userIds.add("2_" + declaration.getUserId());
            myWebSocketHandler.sendWebSocketMessageToUser(userIds, webScocketMessage);
        }
    }
}
Also used : UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) Message(com.bc.pmpheep.general.po.Message) ArrayList(java.util.ArrayList) Material(com.bc.pmpheep.back.po.Material) CheckedServiceException(com.bc.pmpheep.service.exception.CheckedServiceException) UserMessage(com.bc.pmpheep.back.po.UserMessage) WebScocketMessage(com.bc.pmpheep.websocket.WebScocketMessage) Declaration(com.bc.pmpheep.back.po.Declaration)

Aggregations

Declaration (com.bc.pmpheep.back.po.Declaration)19 CheckedServiceException (com.bc.pmpheep.service.exception.CheckedServiceException)11 ArrayList (java.util.ArrayList)11 Material (com.bc.pmpheep.back.po.Material)10 UserMessage (com.bc.pmpheep.back.po.UserMessage)7 Message (com.bc.pmpheep.general.po.Message)7 WebScocketMessage (com.bc.pmpheep.websocket.WebScocketMessage)7 DecPosition (com.bc.pmpheep.back.po.DecPosition)5 HashMap (java.util.HashMap)5 DecPositionPublished (com.bc.pmpheep.back.po.DecPositionPublished)4 OrgUser (com.bc.pmpheep.back.po.OrgUser)4 Textbook (com.bc.pmpheep.back.po.Textbook)4 BaseTest (com.bc.pmpheep.test.BaseTest)4 Test (org.junit.Test)4 WriterUserTrendst (com.bc.pmpheep.back.po.WriterUserTrendst)3 Gson (com.google.gson.Gson)3 Rollback (org.springframework.test.annotation.Rollback)3 PmphUser (com.bc.pmpheep.back.po.PmphUser)2 WriterUserManagerVO (com.bc.pmpheep.back.vo.WriterUserManagerVO)2 Map (java.util.Map)2