Contiene le schede di easyCRM da compilare per cliente.
In fase di emissione nuovo documento di vendita, se al cliente sono associate delle schede da compilare viene visualizzata la lista marcando quelle obbligatorie.
Se una scheda è obbligatorio non è possibile emettere il documento fino a che non è stata correttamente compilata
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CodiceCliente | Codice Cliente | Stringa | 8 | |
2 | CodiceDocumento | Codice Documento | Stringa | 10 | |
3 | Obbligatorio | Obbligatorio | Intero | SI | NO | |
4 | Sequenza | Sequenza | Intero |
Esempio
'C0001400','SE',0,1
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_EASYCRM xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<EASYCRM>
<CodiceCliente/>
<CodiceDocumento/>
<Obbligatorio>false</Obbligatorio>
<Sequenza>0</Sequenza>
</EASYCRM>
</TABELLA_EASYCRM >
public partial class EASYCRM { [Indexed(Name = "IX_PK_EASYCRM", Order = 1, Unique = true), NotNull, MaxLengthAttribute(8)] public string CodiceCliente { get; set; } [Indexed(Name = "IX_PK_EASYCRM", Order = 2, Unique = true), NotNull, MaxLengthAttribute(10)] public string CodiceDocumento { get; set; } public bool Obbligatorio { get; set; } public int Sequenza { get; set; } }