Definisce le quantità in arrivo in sede. È un dato di consultazione per l’agente per verificare le disponibilità future con la data di consegna in sede.
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | CodiceArticolo | Codice Articolo | Stringa | 25 | |
| 2 | Tipo | Tipo | Stringa | 2 | Non gestito |
| 3 | DataConsegna | Data Consegna | Data | ||
| 4 | Quantita | Quantità | Decimale | ||
| 5 | Variante1 | Variante 1 | Stringa | 20 | |
| 6 | Variante2 | Variante 2 | Stringa | 20 | |
| 7 | Lotto | Lotto | Stringa | 50 | Non gestito |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_DISPONIBILE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<DISPONIBILE>
<CodiceArticolo />
<Variante1 />
<Variante2 />
<Lotto />
<Tipo />
<DataConsegna>0001-01-01T00:00:00</DataConsegna>
<Quantita>0</Quantita>
</DISPONIBILE>
</TABELLA_DISPONIBILE>
public partial class DISPONIBILE
{
[Indexed(Name = "IX_PK_DISPONIBILE", Order = 1, Unique = true), MaxLengthAttribute(25)]
public string CodiceArticolo { get; set; }
[Indexed(Name = "IX_PK_DISPONIBILE", Order = 2, Unique = true), MaxLengthAttribute(20)]
public string Variante1 { get; set; }
[Indexed(Name = "IX_PK_DISPONIBILE", Order = 3, Unique = true), MaxLengthAttribute(20)]
public string Variante2 { get; set; }
[Indexed(Name = "IX_PK_DISPONIBILE", Order = 4, Unique = true), MaxLengthAttribute(50)]
public string Lotto { get; set; }
[MaxLengthAttribute(2)]
public string Tipo { get; set; }
public System.DateTime DataConsegna { get; set; }
public decimal Quantita { get; set; }
}