rev:出库点根据工单出库点来确认

This commit is contained in:
2026-01-12 09:30:01 +08:00
parent 0c1619b6b7
commit 9f21f36944
8 changed files with 56 additions and 2 deletions

View File

@@ -110,4 +110,9 @@ public class PdmBomCallMaterial implements Serializable {
*/
private String confirm_time;
/**
* 出库点位
*/
private String point_code;
}

View File

@@ -94,11 +94,13 @@
mb.material_name,
mb.material_spec,
mst.bill_code,
bom.point_code,
late.storagevehicle_code
FROM
st_ivt_iostorinvdtl dtl
LEFT JOIN md_me_materialbase mb ON mb.material_id = dtl.material_id
LEFT JOIN ST_IVT_IOStorInv mst ON mst.iostorinv_id = dtl.iostorinv_id
LEFT JOIN pdm_bom_callmaterial bom ON bom.bom_code = dtl.source_bill_code
LEFT JOIN md_pb_groupplate late ON mb.material_id = late.material_id
AND dtl.pcsn = late.pcsn AND late.status = '1' AND dtl.plan_qty = late.qty
where

View File

@@ -34,4 +34,9 @@ public class IOStorInvDtlDto extends IOStorInvDtl {
* 载具编号
*/
private String storagevehicle_code;
/**
* 出库点位
*/
private String point_code;
}