Definisce le unità di misura alternative per codice documento
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CodiceDocumento | Codice Documento | Stringa | 3 | |
2 | CodiceArticolo | Codice Articolo | Stringa | 25 | |
3 | UnitaMisura | Unità di misura alternativa | Stringa | 3 | |
4 | Fattore | Fattore di conversione | Decimale |
Esempio
'BO','0001','CT',4
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_UMULTEXDO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<UMULTEXDO>
<CodiceDocumento />
<CodiceArticolo/>
<UnitaMisura/>
<Fattore/>
</UMULTEXDO>
</TABELLA_UMULTEXDO>
public partial class UMULTEXDO { [PrimaryKey, MaxLengthAttribute(3)] public string CodiceDocumento { get; set; } [PrimaryKey, MaxLengthAttribute(25)] public string CodiceArticolo { get; set; } [MaxLengthAttribute(3)] public string UnitaMisura { get; set; } public decimal Fattore { get; set; } }