消息中心,已撤回数据无法根据搜索框单独查询
This commit is contained in:
parent
c1fa0e484d
commit
72d7e97069
|
|
@ -35,6 +35,8 @@ public class SubEntranceBean {
|
|||
private String processId;
|
||||
private String fileId;
|
||||
|
||||
private String distInfo;
|
||||
|
||||
//工器具
|
||||
private String equipmentName;
|
||||
private String number;
|
||||
|
|
|
|||
|
|
@ -204,6 +204,7 @@ public class NewconsServiceImpl implements NewconsService {
|
|||
bean.setUuid(UUID.randomUUID().toString().replaceAll("-", ""));
|
||||
bean.setNameId(UserUtil.getLoginUser().getId().toString());
|
||||
bean.setMessage("【提示信息】 " + name + "撤回入场材料成功");
|
||||
bean.setDistInfo("5");
|
||||
dao.insertAps(bean);
|
||||
dao.insertMessageTabeles(bean);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,8 +33,13 @@
|
|||
</if>
|
||||
</if>
|
||||
<if test="auditResult !=null and auditResult !=''">
|
||||
<if test="auditResult != 5 and auditResult != '5'">
|
||||
and ap.audit_result like concat ('%',#{auditResult},'%')
|
||||
</if>
|
||||
<if test="auditResult == 5 || auditResult == '5'">
|
||||
and mt.dist_info = '5'
|
||||
</if>
|
||||
</if>
|
||||
<if test="isPart == 1 || isPart == '1'">
|
||||
AND mt.audit_id IN (${auditId})
|
||||
</if>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<option value="0">未通过</option>
|
||||
<option value="1">通过</option>
|
||||
<option value="2">待审核</option>
|
||||
<option value="3">已撤回</option>
|
||||
<option value="5">已撤回</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue