Mews.Fiscalizations.Hungary 5.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Mews.Fiscalizations.Hungary --version 5.0.1
NuGet\Install-Package Mews.Fiscalizations.Hungary -Version 5.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Mews.Fiscalizations.Hungary" Version="5.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mews.Fiscalizations.Hungary --version 5.0.1
#r "nuget: Mews.Fiscalizations.Hungary, 5.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Mews.Fiscalizations.Hungary as a Cake Addin
#addin nuget:?package=Mews.Fiscalizations.Hungary&version=5.0.1

// Install Mews.Fiscalizations.Hungary as a Cake Tool
#tool nuget:?package=Mews.Fiscalizations.Hungary&version=5.0.1

📃 Description

This library uses the NAV Online Invoice System to report e-invoices, please check their Documentation.

<b>Useful links:</b> API documentation Test environment Production environment

⚙️ Installation

The library can be installed through NuGet packages or the command line as mentioned below:

Install-Package Mews.Fiscalizations.Hungary

🎯 Features

  • Functional approach via FuncSharp.
  • No Hungarian abbreviations.
  • Early data validation.
  • Asynchronous I/O.
  • All endpoints are covered with tests.
  • Intuitive immutable DTOs.
  • Pipelines that run on both Windows and Linux operating systems.
  • Cross platform (uses .NET Standard).

📦 NuGet

We have published the library as Mews.Fiscalizations.Hungary.

👀 Code Examples

Listed below are some of the common examples. If you want to see more code examples, please check the Tests.

Creating NAV client There are 3 required properties that need to be provided when creating the NAV client

  1. Technical user: technical user credentials can be obtained from the NAV website dashboard
  2. Software identification: Contains information regarding the software performing data reporting
  3. NAV Environment: (Test/Production)
var technicalUser = new TechnicalUser(
    login: Login,
    password: Password,
    signingKey: SigningKey,
    taxId: TaxPayerId,
    encryptionKey: EncryptionKey
);
var softwareIdentification = new SoftwareIdentification(
    id: "123456789123456789",
    name: "Test",
    type: SoftwareType.LocalSoftware,
    mainVersion: "1.0",
    developerName: "Test",
    developerContact: "test@test.com"
);
var navClient = new NavClient(technicalUser, softwareIdentification, NavEnvironment.Test);

Obtaining the Exchange token which is required for each request

var exchangeToken = await client.GetExchangeTokenAsync();

Creating the supplier info

var supplierInfo = new SupplierInfo(
    taxpayerId: supplierTaxpayerId,
    vatCode: VatCode.Create("2").Success.Get() // check the documentation for more information about each VatCode.,
    name: Name.Create("supplier name").Success.Get(),
    address: supplierAddress
);

Creating invoice items

var itemAmount = new Amount(net: new AmountValue(1694.92m), gross: new AmountValue(2000), tax: new AmountValue(305.08m));
var unitAmount = new ItemAmounts(itemAmount, itemAmount, 0.18m);
var items = new[]
{
    new InvoiceItem(
        consumptionDate: DateTime.UtcNow.Date,
        totalAmounts: new ItemAmounts(itemAmount, itemAmount, 0.18m),
        description: Description.Create("Item 1 description").Success.Get(),
        measurementUnit: MeasurementUnit.Night,
        quantity: 1,
        unitAmounts: unitAmount,
        exchangeRate: ExchangeRate.Create(1).Success.Get()
    )
};

Creating an invoice

var invoice = new Invoice(
    number: invoiceNumber ?? InvoiceNumber.Create($"INVOICE-{Guid.NewGuid()}").Success.Get(),
    issueDate: nowUtc,
    supplierInfo: supplierInfo,
    receiver: receiver,
    items: Sequence.FromPreordered(items, startIndex: 1).Get(),
    paymentDate: nowUtc,
    currencyCode: CurrencyCode.Create("EUR").Success.Get(),
    paymentMethod: PaymentMethod.Card
);

Reporting invoices

return await client.SendInvoicesAsync(
    token: exchangeToken.SuccessResult,
    invoices: Sequence.FromPreordered(new[] { invoice }, startIndex: 1).Get()
);

In case of rebating/modifying/changing an invoice It is possible to report the modified invoice through SendModificationDocumentsAsync API.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.0.0 258 1/29/2024
12.0.0 550 8/27/2023
11.0.2 620 8/2/2023
11.0.1 563 7/26/2023
11.0.0 574 7/24/2023
10.0.3 854 10/21/2022
10.0.2 847 10/17/2022
10.0.1 821 9/13/2022
10.0.0 802 9/6/2022
9.0.0 921 9/6/2022
8.0.0 844 8/30/2022
7.0.0 849 8/29/2022
6.0.2 853 7/4/2022
6.0.1 908 4/14/2022
6.0.0 860 11/8/2021
5.0.1 795 11/5/2021
5.0.0 777 7/21/2021
4.0.4 801 7/13/2021
4.0.3 794 7/8/2021
4.0.2 825 6/7/2021
4.0.1 825 6/7/2021
4.0.0 899 6/1/2021
3.0.1 1,223 5/28/2021
3.0.0 1,464 5/24/2021