È una tabella di integrazione su ANAGRAFE.
Definisce i valori di marginalità minima da conseguire per cliente.
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | CodiceArticolo | Codice Articolo | Stringa | 25 | |
| 2 | Prezzo | Prezzo offerta | Decimale | ||
| 3 | DataInizio | Data inizio validità offerta | Data | ||
| 4 | DataFine | Data fine validità offerta | Data | ||
| 5 | Note | Note | Stringa | 50 |
Esempio
'ALIM',123,'12/27/2000','12/27/2010','Solo 10 Pezzi' 'CAVO1',456,'12/27/2000','12/27/2010','' 'CPUIN1',789,'12/27/2000','12/27/2010',''
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_OFFERTE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<OFFERTE>
<CodiceArticolo />
<DataInizio>0001-01-01T00:00:00</DataInizio>
<DataFine>0001-01-01T00:00:00</DataFine>
<Variante1 />
<Variante2 />
<Prezzo>0</Prezzo>
<Note />
</OFFERTE>
</TABELLA_OFFERTE>
public partial class OFFERTE
{
[Indexed(Name = "IX_PK_OFFERTE", Order = 1, Unique = true), MaxLengthAttribute(25)]
public string CodiceArticolo { get; set; }
[Indexed(Name = "IX_PK_OFFERTE", Order = 2, Unique = true)]
public System.DateTime DataInizio { get; set; }
[Indexed(Name = "IX_PK_OFFERTE", Order = 3, Unique = true)]
public System.DateTime DataFine { get; set; }
[Indexed(Name = "IX_PK_OFFERTE", Order = 4, Unique = true),MaxLengthAttribute(20)]
public string Variante1 { get; set; }
[Indexed(Name = "IX_PK_OFFERTE", Order = 5, Unique = true),MaxLengthAttribute(20)]
public string Variante2 { get; set; }
public decimal Prezzo { get; set; }
[MaxLengthAttribute(50)]
public string Note { get; set; }
}