Definisce gli articoli a contratto che possono essere venduti a determinati clienti.
Se esiste un solo riferimento per cliente il sistema permetterà la vendita dei soli prodotti inclusi in lista.
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | PtReferenze | Puntamento a referenza anagrafe cliente | Stringa | 10 | Fa riferimento a PtReferenze in ANAGRAFE |
2 | CodiceArticolo | Codice Articolo | Stringa | 25 | |
3 | GruppoMagazzino | Gruppo Magazzino | Stringa | 10 | |
4 | Reparto | Reparto | Stringa | 50 |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_REFERENZE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<REFERENZE>
<ptREFERENZE />
<CodiceArticolo />
<Variante1 />
<Variante2 />
<GruppoMagazzino />
<Reparto/>
</REFERENZE>
</TABELLA_REFERENZE>
public partial class REFERENZE { [Indexed(Name = "IX_PK_REFERENZE", Order = 1, Unique = true), MaxLengthAttribute(10)] public string ptREFERENZE {{ get; set; } [Indexed(Name = "IX_PK_REFERENZE", Order = 2, Unique = true), MaxLengthAttribute(25)] public string CodiceArticolo { get; set; } [Indexed(Name = "IX_PK_REFERENZE", Order = 3, Unique = true), MaxLengthAttribute(20)] public string Variante1 { get; set; } [Indexed(Name = "IX_PK_REFERENZE", Order = 4, Unique = true), MaxLengthAttribute(20)] public string Variante2 { get; set; } [Indexed(Name = "IX_PK_REFERENZE", Order = 5, Unique = true), MaxLengthAttribute(10)] public string GruppoMagazzino { get; set; } [MaxLengthAttribute(50)] public string Reparto { get; set; } }