Consente di definire gli articoli che sono in black list e pertanto non vendibili.
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CODICE_ARTICOLO | Codice Articolo | Stringa | 25 |
Esempio
'HDIDE20' 'HDIDE40'
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_BLACKLIST xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<BLACKLIST>
<CODICE_ARTICOLO />
<CodiceArticoloSostitutivo />
</BLACKLIST>
</TABELLA_BLACKLIST>
public partial class BLACKLIST { [MaxLengthAttribute(25)] public string CODICE_ARTICOLO { get; set; } [MaxLengthAttribute(25)] public string CodiceArticoloSostitutivo { get; set; } }