REFERENZE

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.

#COLONNADECRIZIONETIPOLENNOTE
1PtReferenzePuntamento a referenza anagrafe clienteStringa10Fa riferimento a PtReferenze in ANAGRAFE
2CodiceArticoloCodice ArticoloStringa25
3GruppoMagazzinoGruppo MagazzinoStringa10
4RepartoRepartoStringa50


<?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; }
       
    }




Documentazione Zippy Infinity