opt:点位管理关联回温工单表,显示工单号和工单状态

This commit is contained in:
zds
2024-09-18 17:52:45 +08:00
parent fa3518a3be
commit 8bde5f6967
4 changed files with 45 additions and 3 deletions

View File

@@ -27,6 +27,7 @@
two.status
FROM
pdm_bd_workorder_two two
where two.status not in ('3','4')
GROUP BY
two.palletSN,
two.moname,
@@ -58,6 +59,9 @@
<if test="query.lock_type == true">
and (p.ing_task_code IS NOT NULL and p.ing_task_code != '')
</if>
<if test="query.status != null">
and workorder_two.status = #{query.status}
</if>
ORDER BY p.region_code ASC, p.point_code ASC
</select>
</mapper>

View File

@@ -57,4 +57,6 @@ public class SchBasePointDto implements Serializable {
private BigDecimal material_weight;
private String instorage_time;
private String pcsn;
private String moname;
private String status;
}

View File

@@ -24,4 +24,6 @@ public class SchBasePointQuery implements Serializable {
private Boolean is_used;
private Boolean lock_type;
private Integer status;
}