Definisce lo storico di vendita a fini statistici.
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | CodiceDocumento | Codice Documento | Stringa | 3 | |
| 2 | NumeroDocumento | Numero Documento | Stringa | 10 | |
| 3 | DataDocumento | Data Documento | Data | ||
| 4 | CodiceCliente | Codice Cliente | Stringa | 8 | |
| 5 | GruppoMagazzino | Gruppo Magazzino | Stringa | 20 | |
| 6 | CodiceArticolo | Codice Articolo | Stringa | 25 | |
| 7 | Quantita | Quantità venduta | Decimale | ||
| 8 | PrezzoNetto | Prezzo netto applicato | Decimale |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_STORICO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<STORICO>
<CodiceDocumento />
<NumeroDocumento />
<CodiceArticolo />
<DataDocumento>0001-01-01T00:00:00</DataDocumento>
<CodiceCliente />
<GruppoMagazzino />
<Quantita>0</Quantita>
<PrezzoNetto>0</PrezzoNetto>
<Variante1 />
<Variante2 />
</STORICO>
</TABELLA_STORICO>
public partial class STORICO
{
[MaxLengthAttribute(3)]
public string CodiceDocumento { get; set; }
[MaxLengthAttribute(10)]
public string NumeroDocumento { get; set; }
[MaxLengthAttribute(25)]
public string CodiceArticolo { get; set; }
public System.DateTime DataDocumento { get; set; }
[MaxLengthAttribute(8)]
public string CodiceCliente { get; set; }
[MaxLengthAttribute(10)]
public string GruppoMagazzino { get; set; }
public decimal Quantita { get; set; }
public decimal PrezzoNetto { get; set; }
[MaxLengthAttribute(20)]
public string Variante1 { get; set; }
[MaxLengthAttribute(20)]
public string Variante2 { get; set; }
}