Definisce i range da raggiungere per quantità, referenze e fatturato per la riassegnazione di ulteriori sconti.
Le tipologie gestite sono:
- R = referenze
- Q = quantità
- QU = quantità ulteriore
- F = fatturato
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | CLASSE | Classe di raggruppamento | Stringa | 10 | Riferimento con la classe su MAGART |
| 2 | Tipo | Stringa | 2 | Tipologie possibili: R,Q,QU,F | |
| 3 | FinoA | Decimale | |||
| 4 | Sconto | Sconto da applicare | Decimale |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_RIASSEGNASCONTI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<RIASSEGNASCONTI>
<CLASSE />
<Tipo />
<FinoA>0</FinoA>
<Sconto>0</Sconto>
</RIASSEGNASCONTI>
</TABELLA_RIASSEGNASCONTI>
public partial class RIASSEGNASCONTI
{
[Indexed(Name = "IX_PK_RIASSEGNASCONTI", Order = 1, Unique = true), MaxLengthAttribute(10)]
public string CLASSE { get; set; }
[Indexed(Name = "IX_PK_RIASSEGNASCONTI", Order = 2, Unique = true), MaxLengthAttribute(2)]
public string Tipo { get; set; }
[Indexed(Name = "IX_PK_RIASSEGNASCONTI", Order = 3, Unique = true)]
public decimal FinoA { get; set; }
public decimal Sconto { get; set; }
}