Browse Source

2025-10-10

领料申请管理的材料明细新增
master
fengyuan_yang 3 months ago
parent
commit
5dcdbee888
  1. 27
      src/main/java/com/gaotao/modules/orderIssure/vo/SOIssueNotifyOrderMaterialList.java
  2. 20
      src/main/resources/mapper/orderIssure/IssureNotifyMapper.xml

27
src/main/java/com/gaotao/modules/orderIssure/vo/SOIssueNotifyOrderMaterialList.java

@ -45,6 +45,33 @@ public class SOIssueNotifyOrderMaterialList {
private String issueMethod;
private String outboundWarehouseId;
private String warehouseId;
private Double componentScrap;
private Double firstInspectionQty;
private Double standardDosage;
public Double getComponentScrap() {
return componentScrap;
}
public void setComponentScrap(Double componentScrap) {
this.componentScrap = componentScrap;
}
public Double getFirstInspectionQty() {
return firstInspectionQty;
}
public void setFirstInspectionQty(Double firstInspectionQty) {
this.firstInspectionQty = firstInspectionQty;
}
public Double getStandardDosage() {
return standardDosage;
}
public void setStandardDosage(Double standardDosage) {
this.standardDosage = standardDosage;
}
public String getWarehouseId() {
return warehouseId;

20
src/main/resources/mapper/orderIssure/IssureNotifyMapper.xml

@ -283,11 +283,23 @@ RecordVersion,OutWorkOrderFlag,ProjectID,OrderType,AuthRuleID,bu)
</select>
<select id="searchNotifyOrderList" resultType="SOIssueNotifyOrderListData">
select a.NotifyNo,a.Site,a.ItemNo,a.FGPartNo,a.SOOrderNo,a.OpsItemNo,a.SeqNo,
a.IssureQty,a.OutWorkOrderFlag ,b.OperationDesc itemDesc,a.locationNo,a.needDate,
dbo.Get_PartDesc(a.site,a.FGPartNo) partDesc, a.resourceId
select
a.NotifyNo,
a.Site,
a.ItemNo,
a.FGPartNo,
a.SOOrderNo,
a.OpsItemNo,
a.SeqNo,
a.IssureQty,
a.OutWorkOrderFlag,
b.OperationDesc itemDesc,
a.locationNo,
a.needDate,
dbo.Get_PartDesc(a.site,a.FGPartNo) partDesc,
a.resourceId
from SOIssueNotifyOrderList a
left join SORouting b on a.site=b.site and a.SOOrderNo=b.OrderNo and a.OpsItemNo=b.ItemNo
left join SORouting b on a.site=b.site and a.SOOrderNo=b.OrderNo and a.OpsItemNo=b.ItemNo
where a.site=#{site} and a.NotifyNo=#{notifyNo}
order by a.ItemNo
</select>

Loading…
Cancel
Save