Definisce i progressivi di vendita.
L’archivio viene movimentato anche da Zippy in ogni emissione di documento. Pertanto l’invio di tale archivio dal gestionale comporta l’azzeramento del contenuto precedente.
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | CODICE_ARTICOLO | Codice Articolo | Stringa | 25 | |
| 2 | Carico | giacenza di carico iniziale | Decimale | 50 | |
| 3 | Vendita | giacenza di vendita | Decimale | ||
| 4 | Omaggio | giacenza di omaggio | Decimale | ||
| 5 | Reso | giacenza di reso | Decimale | ||
| 6 | RettificaPositiva | giacenza di rettifica positiva | Decimale | ||
| 7 | RettificaNegativa | giacenza di rettifica negativa | Decimale | ||
| 8 | Ordinato | Ordinato | Decimale | ||
| 9 | LOTTO | Lotto | Stringa | 25 | |
| 10 | LOTTO_NON_VENDIBILE | Intero | Non gestito | ||
| 11 | Variante1 | Variante 1 | Stringa | 20 | |
| 12 | Variante2 | Variante 2 | Stringa | 20 |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_MAGAZZINO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<MAGAZZINO>
<CODICE_ARTICOLO />
<LOTTO />
<VARIANTE1 />
<VARIANTE2 />
<LOTTO_NON_VENDIBILE>false</LOTTO_NON_VENDIBILE>
<Carico>0</Carico>
<Vendita>0</Vendita>
<Omaggio>0</Omaggio>
<Reso>0</Reso>
<RettificaPositiva>0</RettificaPositiva>
<RettificaNegativa>0</RettificaNegativa>
<Ordinato>0</Ordinato>
<CaricoBox>0</CaricoBox>
<ScaricoBox>0</ScaricoBox>
<GiacenzaSede>0</GiacenzaSede>
</MAGAZZINO>
</TABELLA_MAGAZZINO>
public partial class MAGAZZINO
{
[Indexed(Name = "IX_PK_MAGAZZINO", Order = 1, Unique = true), MaxLengthAttribute(25)]
public string CODICE_ARTICOLO { get; set; }
[Indexed(Name = "IX_PK_MAGAZZINO", Order = 2, Unique = true), MaxLengthAttribute(255)]
public string LOTTO { get; set; }
[Indexed(Name = "IX_PK_MAGAZZINO", Order = 3, Unique = true), MaxLengthAttribute(20)]
public string VARIANTE1 { get; set; }
[Indexed(Name = "IX_PK_MAGAZZINO", Order = 4, Unique = true), MaxLengthAttribute(20)]
public string VARIANTE2 { get; set; }
[Indexed(Name = "IX_PK_MAGART", Order = 1, Unique = true)]
public bool LOTTO_NON_VENDIBILE { get; set; }
public decimal Carico { get; set; }
public decimal Vendita { get; set; }
public decimal Omaggio { get; set; }
public decimal Reso { get; set; }
public decimal RettificaPositiva { get; set; }
public decimal RettificaNegativa { get; set; }
public decimal Ordinato { get; set; }
public decimal CaricoBox { get; set; }
public decimal ScaricoBox { get; set; }
public decimal GiacenzaSede { get; set; }
}