Table of Contents

Interface IVatPosition

Namespace
RetailForce.Fiscalisation.Model.Document
Assembly
RetailForce.Fiscalisation.Model.dll

Interface for all positions having vat.

public interface IVatPosition

Properties

AccountingIdentifier

An additional identifier for accounting purposes (accounting interface).

string AccountingIdentifier { get; set; }

Property Value

string

GrossValue

The gross value of the booking.

decimal GrossValue { get; set; }

Property Value

decimal

NetValue

The net value of the booking. If there is no Vat, or vat with 0 percent must be equal GrossValue;

decimal NetValue { get; set; }

Property Value

decimal

PositionNumber

The number of the position in the position sequence.

int PositionNumber { get; set; }

Property Value

int

TaxValue

The vat value of the booking.

decimal TaxValue { get; set; }

Property Value

decimal

VatIdentification

The value added tax for this position.

int VatIdentification { get; set; }

Property Value

int

VatPercent

The percentage of the vat

decimal VatPercent { get; set; }

Property Value

decimal

VatPercent2

The percentage 2 of the vat, optional

decimal? VatPercent2 { get; set; }

Property Value

decimal?