Finish Hotfix-95
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2025-01-13 15:51:17 +01:00

View File

@@ -623,7 +623,7 @@ public class DocumentService {
" cod_aliq, " +
" cod_promo, " +
" qta_cnf, " +
" descrizione, " +
" Max(descrizione) as descrizione, " +
" perc_aliq, " +
" descrizione_estesa, " +
" cod_kit, " +
@@ -639,13 +639,11 @@ public class DocumentService {
" cod_aliq, " +
" cod_promo, " +
" qta_cnf, " +
" descrizione, " +
" perc_aliq, " +
" descrizione_estesa, " +
" cod_kit ";
ResultSetMapper rsMapperRighe = new ResultSetMapper();
List<DtbDocr> r = rsMapperRighe.mapQuerySetToList(multiDBTransactionManager.getPrimaryConnection(), query, DtbDocr.class, OperationType.INSERT);
List<DtbDocr> r = new ResultSetMapper().mapQuerySetToList(multiDBTransactionManager.getPrimaryConnection(), query, DtbDocr.class, OperationType.INSERT);
if (r != null && r.size() > 0) {
righe.addAll(r);
} else {