Definisce le modalità dei pagamenti dei clienti.
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CODICE | Codice pagamento | Stringa | 6 | |
2 | Descrizione | Descrizione pagamento | Stringa | 60 | |
3 | Spesa | Decimale | Non gestito | ||
4 | CodiceTipoPagamentoAutomatico | Codice tipo pagamento automatico | Stringa | 5 | In fase di incasso automatico di un documneo, codice di TIPI_PAGAMENTI da utilizzare |
Esempio
'D000','Rim. Dir. Vista Fattura',0 'R030','Ric.Banc. 30 gg DF FM',0 'TR30','Tratta 30 gg DF FM',0 'CON1','Contrassegno Sconto 8',8 'BOL1','Boll.Post. 30 gg DF FM',0 'D030','Rim. Dir. 30 gg DF FM',0 'R400','Ric.Banc. 30 gg DF gg fissi',0 'RI36','Ric.Banc. IVA 30gg + Imp.60gg',0 'R069','Ric.Banc. 60-90 gg DF FM',0 'RVAR','Ric.Banc. IVA 45gg + Imp.30-90',0 'B030','Bon.Banc.30 gg DF FM',0 'R369','Ric.Banc. 30-60-90 gg DF FM',0 'R500','Ric.Banc. 30-60-90 gg mesi esc',0 'R090','Ric.Banc. 90 gg DF FM',0 'B03X','Bon.Banc.30 gg DF - 15 del mese',0 'B000','Bon.Banc. DF',0 'R031','Ric.Banc. 30 gg DF FM - Acconto V.F. 10%',0 'B369','Bon.Banc.30-60-90',0
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_PAGAMENT xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<PAGAMENT>
<CODICE />
<Descrizione />
<CodiceTipoPagamentoAutomatico />
</PAGAMENT>
</TABELLA_PAGAMENT>
public partial class PAGAMENT { [PrimaryKey, MaxLengthAttribute(6)] public string CODICE { get; set; } [MaxLengthAttribute(60)] public string Descrizione { get; set; } [MaxLengthAttribute(5)] public string CodiceTipoPagamentoAutomatico { get; set; } }