aggiunta la colonna SGR/Prodotto e cambiata label in Contratto/Deposito

This commit is contained in:
Gianmarco Mucciariello 2025-06-24 12:37:20 +02:00
parent b3de866d14
commit 62a6f238f0
3 changed files with 6 additions and 3 deletions

View File

@ -76,6 +76,7 @@ namespace PDFGenerator.BusinessLayer.DataSection
dataSottoscrizione = FormatNum.FormatData(item.Field<string>("dataSottoscrizione")),
ContrattoDossier = item.Field<string>("ContrattoDossier"),
Descrizione = item.Field<string>("Descrizione"),
SgrProdotto = item.Field<string>("SgrProdotto"),
Controvalore = UtilityBusinessLayer.FormatDecimal(Convert.ToString(item.Field<decimal>("Controvalore")),2),
SommaProdottiEsclusi = UtilityBusinessLayer.FormatDecimal(Convert.ToString(item.Field<decimal>("SommaProdottiEsclusi")),2),
PatrimonioFideuram = UtilityBusinessLayer.FormatDecimal(Convert.ToString(item.Field<decimal>("PatrimonioFideuram")),2),
@ -100,6 +101,7 @@ namespace PDFGenerator.BusinessLayer.DataSection
public string dataSottoscrizione { get; set; }
public string ContrattoDossier { get; set; }
public string Descrizione { get; set; }
public string SgrProdotto { get; set; }
public string Controvalore { get; set; }
public string SommaProdottiEsclusi { get; set; }
public string PatrimonioFideuram { get; set; }

View File

@ -27,7 +27,7 @@ namespace PDFGenerator.BusinessLayer.DataSection
get
{
return _datiSezione;
}
}
set
{
_datiSezione = value;

View File

@ -119,8 +119,9 @@ namespace PDFGenerator.Presentation.Section
tabellaDettaglio.Colonne.Add(new Colonna("DataSottoscrizione", "Data sott.", 50, TipoAllineamento.SINISTRA, false, 7, false));
tabellaDettaglio.Colonne.Add(new Colonna("<IMAGE>", " ", 1, TipoAllineamento.DESTRA, false, 7, false, TipoColonna.IMMAGINE));
tabellaDettaglio.Colonne.Add(new Colonna("ContrattoDossier", "Contratto/Dossier ", 120, TipoAllineamento.SINISTRA, false, 7, false, TipoColonna.IMMAGINE));
tabellaDettaglio.Colonne.Add(new Colonna("Descrizione", "Descrizione", 257, TipoAllineamento.SINISTRA, false, 7, false));
tabellaDettaglio.Colonne.Add(new Colonna("ContrattoDossier", "Contratto/Deposito ", 120, TipoAllineamento.SINISTRA, false, 7, false, TipoColonna.IMMAGINE));
tabellaDettaglio.Colonne.Add(new Colonna("Descrizione", "Descrizione", 157, TipoAllineamento.SINISTRA, false, 7, false));
tabellaDettaglio.Colonne.Add(new Colonna("SgrProdotto", "SGR/Prodotto", 100, TipoAllineamento.SINISTRA, false, 7, false));
tabellaDettaglio.Colonne.Add(new Colonna("Controvalore", "Controvalore (€)*", 90, TipoAllineamento.DESTRA, false, 7, false));
tabellaDettaglio.DrawMonitoraggio(datitab, document, "", true, ref notaSezioneStampata);