Definisce le unità di misura alternative per codice documento
Esempio
1 | '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>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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 ; } } |