Skip to content

Commit

Permalink
Corretto ordinamento dei risultati nella sezione riconciliazioni.
Browse files Browse the repository at this point in the history
  • Loading branch information
pintorig committed Jul 26, 2021
1 parent 25f5ae8 commit ce52641
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ public ListaRiscossioniDTO(Authentication user) {
this.addSortField("stato", VistaPagamento.model().STATO);
this.addSortField("iuv", VistaPagamento.model().IUV);
this.addDefaultSort(VistaPagamento.model().DATA_PAGAMENTO,SortOrder.DESC);
// ordinamento per chiave logica crescente
this.addDefaultSort(VistaPagamento.model().COD_DOMINIO,SortOrder.ASC);
this.addDefaultSort(VistaPagamento.model().IUV,SortOrder.ASC);
this.addDefaultSort(VistaPagamento.model().IUR,SortOrder.ASC);
this.addDefaultSort(VistaPagamento.model().INDICE_DATI,SortOrder.ASC);
}

private Date dataRiscossioneDa;
Expand Down

0 comments on commit ce52641

Please sign in to comment.