Browse Source

层数

master
han\hanst 1 month ago
parent
commit
dc78a7b2b1
  1. 1
      src/main/java/com/xujie/sys/modules/longchuang/data/ProductionPlanOrderQueryData.java
  2. 4
      src/main/resources/mapper/longchuang/ProductionPlanMapper.xml

1
src/main/java/com/xujie/sys/modules/longchuang/data/ProductionPlanOrderQueryData.java

@ -19,4 +19,5 @@ public class ProductionPlanOrderQueryData extends QueryPage {
private String deliveryEndDate;
private String planStartDate;
private String planEndDate;
private Integer floorCount;
}

4
src/main/resources/mapper/longchuang/ProductionPlanMapper.xml

@ -44,6 +44,9 @@
<if test="query.color != null and query.color != ''">
and a.color like '%' + #{query.color} + '%'
</if>
<if test="query.floorCount != null and query.floorCount != ''">
and a.floor_count = #{query.floorCount}
</if>
<if test="query.status != null and query.status != ''">
and a.status = #{query.status}
</if>
@ -92,6 +95,7 @@
and s.order_type = a.order_type
and s.assignee_user_id = #{userId}
)
and a.status != '已完成'
<if test="query.orderType != null and query.orderType != ''">
and a.order_type = #{query.orderType}
</if>

Loading…
Cancel
Save