Aggiunta data delle righe dei colli nella generazione dei documenti interni

This commit is contained in:
Marco Elefante 2024-05-03 11:33:12 +02:00
parent 971dcaed87
commit fb213cbdbb

View File

@ -6,6 +6,7 @@ import com.annimon.stream.Stream;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Objects; import java.util.Objects;
@ -355,6 +356,7 @@ public class DocInterniEditFormViewModel {
row.setQtaCnf(resultDTO.getQtaCnf().floatValue()); row.setQtaCnf(resultDTO.getQtaCnf().floatValue());
row.setNumCnf(resultDTO.getNumCnf().floatValue()); row.setNumCnf(resultDTO.getNumCnf().floatValue());
row.setQtaCol(resultDTO.getQtaTot().floatValue()); row.setQtaCol(resultDTO.getQtaTot().floatValue());
row.setDatetimeRow(new Date());
row.setNote(resultDTO.getNote()); row.setNote(resultDTO.getNote());
row.setDataScad(resultDTO.getDataScad()); row.setDataScad(resultDTO.getDataScad());
row.setPartitaMag(resultDTO.getPartitaMag()); row.setPartitaMag(resultDTO.getPartitaMag());