EET stands for Elektronická Evidence Tržeb, which is Czech version of Fiscal Printers. It's an online API provided by the Ministry of Finance in a form of a SOAP Web Service.
- No Czech abbreviations.
- Early data validation.
- Intuitive immutable DTOs.
- SOAP communication (including WS-Security signing).
- PKP and BKP security code computation.
- Support for parallel async requests.
- Logging support
- 8: As the communication is done fully via HTTPS, we postponed the implementation of response signature verification. It's a potential security risk that will be addressed in upcoming releases.
We tend to use immutable DTOs wherever possible, especially to ensure data validity. We want the library to throw an error as soon as possible, i.e. when constructing corresponding data structures. That is why we even introduce wrappers for simple datatypes. Various usages are demonstrated in our test cases.
var certificate = new Certificate(
password: "certificatePassword",
data: certificateContentsByteArray
);
var record = new RevenueRecord(
identification: new Identification(
taxPayerIdentifier: new TaxIdentifier("CZ1234567890"),
registryIdentifier: new RegistryIdentifier("01"),
premisesIdentifier: new PremisesIdentifier(1),
certificate: certificate
),
revenue: new Revenue(
gross: new CurrencyValue(1234.00m)
),
billNumber: new BillNumber("2016-321")
);
var securityCode = record.SecurityCode; // BKP
var signature = record.Signature; // PKP
var client = new EetClient(certificate);
var response = await client.SendRevenueAsync(record);
if (response.IsSuccess)
{
var fiscalCode = response.Success.FiscalCode;
}
We have published the library as Mews.Eet.
Alternatively, the NuGet package can be generated by running the following command:
src\Mews.Eet> nuget pack .\Mews.Eet.csproj -IncludeReferencedProjects
Test are not currently running on Travis CI, as their network infrastructure is blocking HTTPS traffic directed into Europe, where the EET servers are located.
Otherwise, a xUnit test suite is a part of the library, it contains end-to-end tests that communicates with Playground EET servers to verify the lib is really working against the current EET version.
Development: @jirihelmich Code review: @siroky, @onashackem
- Mews Systems - Property Management Solution for the 21st century.
- Hlídač EET - Watchdog of the EET API endpoint and related services.
- Keszh, Neszh - Hart Internal ERP System
- Ankerdata EasiPOS - POS system
- sySOft - POS system
We would like to hear your story and know who users of the lib are. Please, thank us for providing the library by sharing with us, who you are and letting us add you into this list.
The time to implement this was kindly provided by Mews Systems.
There is no need to donate the project, but thanks for considering it! Instead, if you like the project, star it here on GitHub :-)! Thanks!
If you still insist on donating, we accept gummy bears at Mews Systems s.r.o., Náměstí IP Pavlova 5, Vinohrady 120 00 Prague. This project was, of course, powered by a huge pile of gummy bears ;-)
- eet-client by @todvora: Java, MIT
- SwiftEET by @charlieMonroe: Swift, GPL-3.0
- Komodosoft For publishing the post about signing a SOAP message without using WCF.
- @tomasdeml: PR#3