Passata commessa ai servizi in recupero materiali

This commit is contained in:
2025-11-13 15:26:28 +01:00
parent 1c029242ac
commit adc76fe82c
2 changed files with 13 additions and 0 deletions

View File

@@ -17,6 +17,9 @@ public class RecuperaMaterialiRequestDTO {
@SerializedName("partitaMag") @SerializedName("partitaMag")
private String partitaMag; private String partitaMag;
@SerializedName("codJcom")
private String codJcom;
@SerializedName("numCnf") @SerializedName("numCnf")
private BigDecimal numCnf; private BigDecimal numCnf;
@@ -72,6 +75,15 @@ public class RecuperaMaterialiRequestDTO {
return this; return this;
} }
public String getCodJcom() {
return codJcom;
}
public RecuperaMaterialiRequestDTO setCodJcom(String codJcom) {
this.codJcom = codJcom;
return this;
}
public BigDecimal getNumCnf() { public BigDecimal getNumCnf() {
return numCnf; return numCnf;
} }

View File

@@ -180,6 +180,7 @@ public class ProdRecuperoMaterialeViewModel {
RecuperaMaterialiRequestDTO request = new RecuperaMaterialiRequestDTO() RecuperaMaterialiRequestDTO request = new RecuperaMaterialiRequestDTO()
.setCodMart(item.getCodMart()) .setCodMart(item.getCodMart())
.setPartitaMag(item.getPartitaMag()) .setPartitaMag(item.getPartitaMag())
.setCodJcom(item.getCodJcom())
.setMovementScarico(movementScaricoKey) .setMovementScarico(movementScaricoKey)
.setQtaTot(pickedQuantityDTO.getQtaTot()) .setQtaTot(pickedQuantityDTO.getQtaTot())
.setNumCnf(pickedQuantityDTO.getNumCnf()) .setNumCnf(pickedQuantityDTO.getNumCnf())