修改查询配件接口,增加仓管可以查看待审核
This commit is contained in:
parent
cac8ac030f
commit
5625589976
@ -25,4 +25,7 @@ public class DlTicketWaresReqVO extends DlTicketWares {
|
|||||||
|
|
||||||
/** 查看可以退料的数据时为tru */
|
/** 查看可以退料的数据时为tru */
|
||||||
private Boolean isBack;
|
private Boolean isBack;
|
||||||
|
|
||||||
|
/** 查看待审核的数据时为true */
|
||||||
|
private Boolean isToBeReviewed;
|
||||||
}
|
}
|
||||||
|
@ -63,6 +63,9 @@
|
|||||||
<if test="map.userRole != null">
|
<if test="map.userRole != null">
|
||||||
and (
|
and (
|
||||||
<choose>
|
<choose>
|
||||||
|
<when test="map.userRole == 5 and map.isToBeReviewed">
|
||||||
|
dtw.status = '01'
|
||||||
|
</when>
|
||||||
<when test="map.userRole == 5 and map.isBack == null">
|
<when test="map.userRole == 5 and map.isBack == null">
|
||||||
dtw.status not in ('01', '05', '03')
|
dtw.status not in ('01', '05', '03')
|
||||||
</when>
|
</when>
|
||||||
|
Loading…
Reference in New Issue
Block a user