Skip to content

Commit

Permalink
Incassi - Dettaglio: corretta visualizzazione "Tipo pendenza"
Browse files Browse the repository at this point in the history
  • Loading branch information
atatarelli committed Mar 15, 2022
1 parent a22fbfa commit f0a4d0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class NewStandardCollapseViewComponent implements OnInit, AfterViewInit {
const pendenza = vocePendenza.pendenza;
this._elenco.push({ label: Voce.ENTE_CREDITORE, value: `${pendenza.dominio.ragioneSociale} (${pendenza.dominio.idDominio})`, type: 'string' });
this._elenco.push({ label: Voce.DEBITORE, value: `${pendenza.soggettoPagatore.anagrafica} (${pendenza.soggettoPagatore.identificativo})`, type: 'string' });
this._elenco.push({ label: Voce.TIPI_PENDENZA, value: `${pendenza.causale}`, type: 'string' });
this._elenco.push({ label: Voce.TIPO_PENDENZA, value: `${pendenza.tipoPendenza.idTipoPendenza} - ${pendenza.tipoPendenza.descrizione}`, type: 'string' });
if (vocePendenza.contabilita && vocePendenza.contabilita.quote) {
this._elenco.push({ label: Voce.QUOTE, value: vocePendenza.contabilita.quote, type: 'quote' });
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export class Voce {
public static TEMPLATE_RISPOSTA: string = 'Template risposta';
public static TEMPLATE_SCHEMA: string = 'Template schema';
public static TERZI: string = 'Pagabile da terzi';
public static TIPI_PENDENZA: string = 'Tipi pendenza';
public static TIPO_PENDENZA: string = 'Tipo pendenza';
public static TIPO: string = 'Tipo';
public static TIPO_ALLEGATO: string = 'Tipo allegato';
public static TIPO_AUTH: string = 'Tipo autenticazione';
Expand Down

0 comments on commit f0a4d0c

Please sign in to comment.