Passata commessa ai servizi in recupero materiali
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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())
|
||||||
|
|||||||
Reference in New Issue
Block a user