È un archivio di integrazione su MAGART.
Definisce le giacenze in sede di un articolo. Non comporta movimentazione ma è un dato di consultazione per verificare la disponibilità in sede.
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CODICE_ARTICOLO | Codice Articolo | Stringa | 25 | |
2 | Quantita | Quantità | Decimale | ||
3 | Variante1 | Variante 1 | Stringa | 20 | |
4 | Variante2 | Variante 2 | Stringa | 20 | |
5 | Lotto | Lotto | Stringa | 25 |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_GIACSEDE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<GIACSEDE>
<CODICE_ARTICOLO />
<Quantita>0</Quantita>
<Variante1 />
<Variante2 />
<Lotto />
</GIACSEDE>
</TABELLA_GIACSEDE>
public partial class GIACSEDE { public string CODICE_ARTICOLO { get; set; } public decimal Quantita { get; set; } public string Variante1 { get; set; } public string Variante2 { get; set; } public string Lotto { get; set; } }