RIASSEGNASCONTI

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
#COLONNADECRIZIONETIPOLENNOTE
1CLASSEClasse di raggruppamentoStringa10Riferimento con la classe su MAGART
2TipoStringa2Tipologie possibili: R,Q,QU,F
3FinoADecimale
4ScontoSconto da applicareDecimale


<?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; }

    }

Documentazione Zippy Infinity