È un archivio di integrazione su MAGAZZINO.
Se il carico fiscale viene effettuato dal gestionale è possibile rimandare le integrazioni di giacenze invece di rimandare tutte le giacenze mentre l’agente emette i documenti di vendita.
Rimandando tutto MAGAZZINO i progressivi di vendita verrebbero riazzerati come tutte le giacenze non presenti nel file MAGAZZINO
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CODICE_ARTICOLO | Codice Articolo | Stringa | 25 | |
2 | Quantita | Quantità | Decimale | ||
3 | Lotto | Lotto | Stringa | 25 | |
4 | Variante1 | Variante 1 | Stringa | 20 | |
5 | Variante2 | Variante 2 | Stringa | 20 |
Esempio
'0001',10 '0002',20 '0003',2.5,'LOTTO_AA' 'XXXX',2,'LOTTO1'
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_INTEGRAZIONE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<INTEGRAZIONE>
<CODICE_ARTICOLO />
<Lotto />
<Quantita>0</Quantita>
<Variante1 />
<Variante2 />
</INTEGRAZIONE>
</TABELLA_INTEGRAZIONE>
public partial class INTEGRAZIONE { public string CODICE_ARTICOLO { get; set; } public decimal Quantita { get; set; } public string Lotto { get; set; } public string Variante1 { get; set; } public string Variante2 { get; set; } }