Definisce gli articoli frequenti acquistati dal cliente.
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | ID | Non gestito | |||
2 | CODICE_CLIENTE | Codice Cliente | Stringa | 8 | |
3 | CODICE_ARTICOLO | Codice Articolo | Stringa | 25 | |
4 | Data | Data ultima vendita | Data | ||
5 | Prezzo | Prezzo ultima vendita | Decimale | ||
6 | VARIANTE1 | Variante 1 | Stringa | 20 | |
7 | VARIANTE2 | Variante 2 | Stringa | 20 | |
8 | QuantitaVenduto | Ultima quantità venduta | Decimale | ||
9 | QuantitaSostituito | Ultima quantità sostituita | Decimale | ||
10 | QuantitaSconti | Ultimo sconto applicato | Stringa | 20 | |
11 | Note | Note | Stringa |
Esempio
1,'C0000100','CASE1','01/05/2004',123 2,'C0000100','CASE2','01/06/2004',345 3,'C0000100','CASE3','01/06/2004',345 4,'C0000100','CAVO1','03/05/2004',678 5,'C0000101','CASE1','01/05/2004',980
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_FREQUENTI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<FREQUENTI>
<CODICE_CLIENTE />
<CODICE_ARTICOLO />
<VARIANTE1 />
<VARIANTE2 />
<Data>0001-01-01T00:00:00</Data>
<Prezzo>0</Prezzo>
<QuantitaDaProporre>0</QuantitaDaProporre>
<QuantitaVenduto>0</QuantitaVenduto>
<QuantitaSostituito>0</QuantitaSostituito>
<QuantitaSconti />
<CodiceGruppo />
<Note />
</FREQUENTI>
</TABELLA_FREQUENTI>
public partial class FREQUENTI { [MaxLengthAttribute(8)] public string CODICE_CLIENTE { get; set; } [MaxLengthAttribute(25)] public string CODICE_ARTICOLO { get; set; } [MaxLengthAttribute(20)] public string VARIANTE1 { get; set; } [MaxLengthAttribute(20)] public string VARIANTE2 { get; set; } public System.DateTime Data { get; set; } public decimal Prezzo { get; set; } public decimal QuantitaDaProporre { get; set; } public decimal QuantitaVenduto { get; set; } public decimal QuantitaSostituito { get; set; } [MaxLengthAttribute(20] public string QuantitaSconti { get; set; } [MaxLengthAttribute(20)] public string CodiceGruppo { get; set; } public string Note { get; set; } }