Commit 49d0b047 by fudahua

fix:逾期状态类型

parent ef8a1e69
...@@ -42,6 +42,8 @@ public enum NoticeMessageTypeEnum { ...@@ -42,6 +42,8 @@ public enum NoticeMessageTypeEnum {
DAILY_REPORT(3031, "云日报通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "daily_report", "/pages/route/index?pageType=", "hbapp_task_daily_report_detail"), DAILY_REPORT(3031, "云日报通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "daily_report", "/pages/route/index?pageType=", "hbapp_task_daily_report_detail"),
DAILY_REPORT_TRANS(3033, "云日报通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "daily_report_trans", "/pages/route/index?pageType=", "hbapp_task_daily_report_detail"), DAILY_REPORT_TRANS(3033, "云日报通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "daily_report_trans", "/pages/route/index?pageType=", "hbapp_task_daily_report_detail"),
CASH_OUT_REFUSE(3040, "提现通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "cash_out_refuse", "/pages/route/index?pageType=", "hbapp_withdraw_list"),
CUSTOMER_MOVE(3002, "客户变动通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "customer_move", "/pages/route/index?pageType=", "hbapp_customer_list"), CUSTOMER_MOVE(3002, "客户变动通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "customer_move", "/pages/route/index?pageType=", "hbapp_customer_list"),
......
...@@ -63,8 +63,13 @@ public class NoticeMessageUtil { ...@@ -63,8 +63,13 @@ public class NoticeMessageUtil {
/** /**
* 发送消息 * 发送消息 对象里面的字段 解析
* * enterpriseId 企业id
* clerkId 执行人导购
* messageType 消息类型 NoticeMessageTypeEnum
* optTargetId 操作对象
* fieldMap 解析模板的字段
* extendField 拓展字段给前端使用 没有可以为null
* @param list * @param list
*/ */
public static void sendNoticeMessageBatch(List<NoticeMessageQDTO> list) { public static void sendNoticeMessageBatch(List<NoticeMessageQDTO> list) {
......
...@@ -53,7 +53,7 @@ public class NotifyController extends WebBaseController { ...@@ -53,7 +53,7 @@ public class NotifyController extends WebBaseController {
public HaobanResponse pendingList(@RequestBody @Valid PendingListQO qo) { public HaobanResponse pendingList(@RequestBody @Valid PendingListQO qo) {
PendingListQDTO pendingListQDTO = EntityUtil.changeEntityByOrika(PendingListQDTO.class, qo); PendingListQDTO pendingListQDTO = EntityUtil.changeEntityByOrika(PendingListQDTO.class, qo);
pendingListQDTO.setFinishFlag(0); pendingListQDTO.setFinishFlag(0);
pendingListQDTO.setOverdueFlag(-1); pendingListQDTO.setOverdueFlag(0);
if (qo.getFilterStatus() == 1) { if (qo.getFilterStatus() == 1) {
pendingListQDTO.setOverdueFlag(1); pendingListQDTO.setOverdueFlag(1);
} }
...@@ -97,7 +97,7 @@ public class NotifyController extends WebBaseController { ...@@ -97,7 +97,7 @@ public class NotifyController extends WebBaseController {
{ {
PairValVO vo = new PairValVO(); PairValVO vo = new PairValVO();
vo.setKey("0"); vo.setKey("0");
vo.setName("未完成"); vo.setName("未逾期");
filter.add(vo); filter.add(vo);
} }
{ {
......
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