|
@@ -95,7 +95,7 @@ public class ProjectPushListServiceImpl extends ServiceImpl<ProjectPushListMappe
|
|
|
String remark = null;
|
|
|
if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"1")) remark = "(组批之后)";//组批之后
|
|
|
else if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"0")) remark = "(组批之前)";//组批之前
|
|
|
-
|
|
|
+ if (remark == null) remark = "";
|
|
|
//组推送对象
|
|
|
ProjectPushList push = ProjectPushListConvert.INSTANCE.toProjectPushList(
|
|
|
cost.getTaskno(),cost.getTaskname(),set.getId(), vo.getUsername(), set.getContent()+remark,sysOrgCodes);
|
|
@@ -128,7 +128,7 @@ public class ProjectPushListServiceImpl extends ServiceImpl<ProjectPushListMappe
|
|
|
String remark = null;
|
|
|
if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"1")) remark = "(组批之后)";//组批之后
|
|
|
else if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"0")) remark = "(组批之前)";//组批之前
|
|
|
-
|
|
|
+ if (remark == null) remark = "";
|
|
|
//组推送对象
|
|
|
ProjectPushList push = ProjectPushListConvert.INSTANCE.toProjectPushList(
|
|
|
cost.getTaskno(),cost.getTaskname(),set.getId(), vo.getUsername(), set.getContent()+remark,sysOrgCodes);
|
|
@@ -159,7 +159,7 @@ public class ProjectPushListServiceImpl extends ServiceImpl<ProjectPushListMappe
|
|
|
String remark = null;
|
|
|
if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"1")) remark = "(组批之后)";//组批之后
|
|
|
else if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"0")) remark = "(组批之前)";//组批之前
|
|
|
-
|
|
|
+ if (remark == null) remark = "";
|
|
|
//组推送对象
|
|
|
ProjectPushList push = ProjectPushListConvert.INSTANCE.toProjectPushList(
|
|
|
cost.getTaskno(),cost.getTaskname(),set.getId(), vo.getUsername(), set.getContent()+remark,sysOrgCodes);
|
|
@@ -199,7 +199,7 @@ public class ProjectPushListServiceImpl extends ServiceImpl<ProjectPushListMappe
|
|
|
String remark = null;
|
|
|
if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"1")) remark = "(组批之后)";//组批之后
|
|
|
else if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"0")) remark = "(组批之前)";//组批之前
|
|
|
-
|
|
|
+ if (remark == null) remark = "";
|
|
|
ProjectPushList push = ProjectPushListConvert.INSTANCE.toProjectPushList(
|
|
|
cost.getTaskno(),cost.getTaskname(),"", username, "请及时处理合同额"+remark,orgcode);
|
|
|
pushList.add(push);
|
|
@@ -235,7 +235,7 @@ public class ProjectPushListServiceImpl extends ServiceImpl<ProjectPushListMappe
|
|
|
String remark = null;
|
|
|
if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"1")) remark = "(组批之后)";//组批之后
|
|
|
else if(cost.getPccode()!=null && Objects.equals(cost.getStatus(),"0")) remark = "(组批之前)";//组批之前
|
|
|
-
|
|
|
+ if (remark == null) remark = "";
|
|
|
ProjectPushList push = ProjectPushListConvert.INSTANCE.toProjectPushList(
|
|
|
cost.getTaskno(),cost.getTaskname(),"", username, "请及时处理已收款"+remark,orgcode);
|
|
|
pushList.add(push);
|