add:工序任务统计/生产进度统计分析

This commit is contained in:
zhangzhiqiang
2023-10-13 17:30:55 +08:00
parent 6fe96e4cac
commit cd30e4b748
7 changed files with 785 additions and 433 deletions

View File

@@ -66,6 +66,9 @@
<if test="query.sale_id != null and query.sale_id != ''">
and ShiftOrder.sale_id like '%${query.sale_id}%'
</if>
<if test="query.material_code != null and query.material_code != ''">
and material.material_code = #{query.material_code}
</if>
<if test="query.material != null and query.material != ''">
and (
material.material_code like '%${query.material}%' or

View File

@@ -20,6 +20,7 @@ public class WorkorderQuery extends BaseQuery<PdmProduceWorkorder> {
private String workorder_code;
private String device_code;
private String material;
private String material_code;
private String order_status;
private String plan_start_time;
private String plan_end_time;