9 Commits

Author SHA1 Message Date
e89675c319 5.0.0
Some checks failed
Default (tags) / security (push) Failing after 22s
Default (tags) / test (push) Failing after 14m55s
Default (tags) / release (push) Has been cancelled
Default (tags) / metadata (push) Has been cancelled
2025-05-24 16:33:58 +00:00
a93ea090ce BREAKING CHANGE(core): Rebrand XInvoice to EInvoice: update package name, class names, imports, and documentation 2025-05-24 16:33:58 +00:00
805adc6d5c 4.3.0
Some checks failed
Default (tags) / security (push) Failing after 24s
Default (tags) / test (push) Failing after 11s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-05-24 15:38:52 +00:00
6e0352f60e feat(readme.plan): Add detailed EInvoice Improvement Plan outlining project rebranding, performance optimizations, enhanced error handling, comprehensive test suite, format conversion, and future enterprise features. 2025-05-24 15:38:52 +00:00
716966b229 4.2.2
Some checks failed
Default (tags) / security (push) Failing after 20s
Default (tags) / test (push) Failing after 11s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-04-04 13:34:31 +00:00
17e2b2d6dd fix(documentation): Improve readme documentation for better clarity on PDF handling, XML validation and error reporting 2025-04-04 13:34:30 +00:00
df836502ce 4.2.1
Some checks failed
Default (tags) / security (push) Failing after 12s
Default (tags) / test (push) Failing after 10s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-04-04 13:31:17 +00:00
6ac00d900d fix(release): just release 2025-04-04 13:31:17 +00:00
f0c4619d6d cleanup 2025-04-04 13:30:38 +00:00
75 changed files with 3737 additions and 2955 deletions

3
.gitignore vendored
View File

@ -17,4 +17,5 @@ node_modules/
dist/
dist_*/
# custom
# custom
test/output

243
MIGRATION.md Normal file
View File

@ -0,0 +1,243 @@
# Migration Guide: XInvoice to EInvoice (v4.x to v5.x)
This guide helps you migrate from `@fin.cx/xinvoice` v4.x to `@fin.cx/einvoice` v5.x.
## Overview
Version 5.0.0 introduces a complete rebranding from XInvoice to EInvoice. The name change better reflects the library's purpose as a comprehensive electronic invoice (e-invoice) processing solution that supports multiple international standards.
## Breaking Changes
### 1. Package Name Change
**Old:**
```json
"dependencies": {
"@fin.cx/xinvoice": "^4.3.0"
}
```
**New:**
```json
"dependencies": {
"@fin.cx/einvoice": "^5.0.0"
}
```
### 2. Import Changes
**Old:**
```typescript
import { XInvoice } from '@fin.cx/xinvoice';
import type { XInvoiceOptions } from '@fin.cx/xinvoice';
```
**New:**
```typescript
import { EInvoice } from '@fin.cx/einvoice';
import type { EInvoiceOptions } from '@fin.cx/einvoice';
```
### 3. Class Name Changes
**Old:**
```typescript
const invoice = new XInvoice();
const invoiceFromXml = await XInvoice.fromXml(xmlString);
const invoiceFromPdf = await XInvoice.fromPdf(pdfBuffer);
```
**New:**
```typescript
const invoice = new EInvoice();
const invoiceFromXml = await EInvoice.fromXml(xmlString);
const invoiceFromPdf = await EInvoice.fromPdf(pdfBuffer);
```
### 4. Type/Interface Changes
**Old:**
```typescript
const options: XInvoiceOptions = {
validateOnLoad: true,
validationLevel: ValidationLevel.BUSINESS
};
```
**New:**
```typescript
const options: EInvoiceOptions = {
validateOnLoad: true,
validationLevel: ValidationLevel.BUSINESS
};
```
## New Features in v5.x
### Enhanced Error Handling
Version 5.0.0 introduces specialized error classes for better error handling:
```typescript
import {
EInvoiceError,
EInvoiceParsingError,
EInvoiceValidationError,
EInvoicePDFError,
EInvoiceFormatError
} from '@fin.cx/einvoice';
try {
const invoice = await EInvoice.fromXml(xmlString);
} catch (error) {
if (error instanceof EInvoiceParsingError) {
console.error('Parsing failed:', error.getLocationMessage());
console.error('Suggestions:', error.getDetailedMessage());
} else if (error instanceof EInvoiceValidationError) {
console.error('Validation report:', error.getValidationReport());
} else if (error instanceof EInvoicePDFError) {
console.error('PDF operation failed:', error.message);
console.error('Recovery suggestions:', error.getRecoverySuggestions());
}
}
```
### Error Recovery
The new version includes error recovery capabilities:
```typescript
import { ErrorRecovery } from '@fin.cx/einvoice';
// Attempt to recover from XML parsing errors
const recovery = await ErrorRecovery.attemptXMLRecovery(xmlString, parsingError);
if (recovery.success && recovery.cleanedXml) {
const invoice = await EInvoice.fromXml(recovery.cleanedXml);
}
```
## Step-by-Step Migration
### 1. Update your package.json
```bash
# Remove old package
pnpm remove @fin.cx/xinvoice
# Install new package
pnpm add @fin.cx/einvoice
```
### 2. Update imports using find and replace
Find all occurrences of:
- `@fin.cx/xinvoice``@fin.cx/einvoice`
- `XInvoice``EInvoice`
- `XInvoiceOptions``EInvoiceOptions`
### 3. Update your code
Example migration:
**Before:**
```typescript
import { XInvoice, ValidationLevel } from '@fin.cx/xinvoice';
async function processInvoice(xmlData: string) {
try {
const xinvoice = await XInvoice.fromXml(xmlData);
const validation = await xinvoice.validate(ValidationLevel.BUSINESS);
if (!validation.valid) {
throw new Error('Validation failed');
}
return xinvoice;
} catch (error) {
console.error('Error:', error);
throw error;
}
}
```
**After:**
```typescript
import { EInvoice, ValidationLevel, EInvoiceValidationError } from '@fin.cx/einvoice';
async function processInvoice(xmlData: string) {
try {
const einvoice = await EInvoice.fromXml(xmlData);
const validation = await einvoice.validate(ValidationLevel.BUSINESS);
if (!validation.valid) {
throw new EInvoiceValidationError(
'Invoice validation failed',
validation.errors
);
}
return einvoice;
} catch (error) {
if (error instanceof EInvoiceValidationError) {
console.error('Validation Report:', error.getValidationReport());
}
throw error;
}
}
```
### 4. Update your tests
Update test imports and class names:
**Before:**
```typescript
import { XInvoice } from '@fin.cx/xinvoice';
import { expect } from '@push.rocks/tapbundle';
test('should create invoice', async () => {
const invoice = new XInvoice();
expect(invoice).toBeInstanceOf(XInvoice);
});
```
**After:**
```typescript
import { EInvoice } from '@fin.cx/einvoice';
import { expect } from '@push.rocks/tapbundle';
test('should create invoice', async () => {
const invoice = new EInvoice();
expect(invoice).toBeInstanceOf(EInvoice);
});
```
## Compatibility
### Unchanged APIs
The following APIs remain unchanged:
- All method signatures on the main class
- All validation levels and invoice formats
- All export formats
- The structure of validation results
- PDF handling capabilities
### Deprecated Features
None. This is a pure rebranding release with enhanced error handling.
## Need Help?
If you encounter any issues during migration:
1. Check the [changelog](./changelog.md) for detailed changes
2. Review the updated [documentation](./readme.md)
3. Report issues at [GitHub Issues](https://github.com/fin-cx/einvoice/issues)
## Why the Name Change?
- **EInvoice** (electronic invoice) is more universally recognized
- Better represents support for multiple international standards
- Aligns with industry terminology (e-invoicing, e-invoice)
- More intuitive for new users discovering the library

View File

@ -1,5 +1,54 @@
# Changelog
## 2025-05-24 - 5.0.0 - BREAKING CHANGE(core)
Rebrand XInvoice to EInvoice: update package name, class names, imports, and documentation
- Renamed package from '@fin.cx/xinvoice' to '@fin.cx/einvoice' in package.json, repository URLs, and readme
- Renamed main class from XInvoice to EInvoice and updated type interfaces (XInvoiceOptions to EInvoiceOptions)
- Updated all import paths and references throughout the codebase including tests, factories, and plugins
- Added a detailed migration guide in MIGRATION.md and updated changelog with breaking changes
- Improved error handling by introducing specialized error classes and recovery utilities
- Ensured all tests and validation suites now reference EInvoice instead of XInvoice
## [5.0.0] - Unreleased
### BREAKING CHANGES
- Renamed package from `@fin.cx/xinvoice` to `@fin.cx/einvoice`
- Renamed main class from `XInvoice` to `EInvoice`
- Renamed `XInvoiceOptions` interface to `EInvoiceOptions`
- Renamed main file from `classes.xinvoice.ts` to `einvoice.ts`
- Updated all exports and imports to use new naming
### Migration Guide
To migrate from v4.x to v5.x:
1. Update package dependency: `@fin.cx/xinvoice``@fin.cx/einvoice`
2. Update imports: `import { XInvoice } from '@fin.cx/xinvoice'``import { EInvoice } from '@fin.cx/einvoice'`
3. Update class usage: `new XInvoice()``new EInvoice()`
4. Update type references: `XInvoiceOptions``EInvoiceOptions`
## 2025-05-24 - 4.3.0 - feat(readme.plan)
Add detailed EInvoice Improvement Plan outlining project rebranding, performance optimizations, enhanced error handling, comprehensive test suite, format conversion, and future enterprise features.
- Introduce rebranding from XInvoice to EInvoice with migration guide and updated documentation.
- Outline architectural improvements and modularization for domain-driven design.
- Detail enhanced error handling with specialized error classes and recovery mechanisms.
- Propose performance optimizations including streaming parsing and caching strategies.
- Set up comprehensive testing including format detection, validation, PDF operations, and conversion.
- Expand format support to include FatturaPA and additional international formats.
- Plan for advanced features such as AI/ML integration, enterprise batch processing, and global standards compliance.
## 2025-04-04 - 4.2.2 - fix(documentation)
Improve readme documentation for better clarity on PDF handling, XML validation and error reporting
- Clarify that PDF extraction now includes multiple fallback strategies and robust error handling
- Update usage examples to include payment options, detailed invoice item specifications and proper PDF embedding procedures
- Enhance description of invoice format detection and validation with detailed error reporting
- Improve overall readme clarity by updating instructions and code snippet examples
## 2025-04-04 - 4.2.1 - fix(release)
No changes detected in project files; project remains in sync.
## 2025-04-04 - 4.2.0 - feat(UBL Encoder & Test Suite)
Implement UBLEncoder and update corpus summary generation; adjust PDF timestamps in test outputs

View File

@ -1,8 +1,8 @@
{
"name": "@fin.cx/xinvoice",
"version": "4.2.0",
"name": "@fin.cx/einvoice",
"version": "5.0.0",
"private": false,
"description": "A TypeScript module for creating, manipulating, and embedding XML data within PDF files specifically tailored for xinvoice packages.",
"description": "A TypeScript module for creating, manipulating, and embedding XML data within PDF files specifically tailored for electronic invoice (einvoice) packages.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
@ -33,12 +33,12 @@
},
"repository": {
"type": "git",
"url": "git+https://gitea.nevermind.cloud/fin.cx/xinvoice.git"
"url": "git+https://gitea.nevermind.cloud/fin.cx/einvoice.git"
},
"bugs": {
"url": "https://gitea.nevermind.cloud/fin.cx/xinvoice/issues"
"url": "https://gitea.nevermind.cloud/fin.cx/einvoice/issues"
},
"homepage": "https://gitea.nevermind.cloud/fin.cx/xinvoice#readme",
"homepage": "https://gitea.nevermind.cloud/fin.cx/einvoice#readme",
"browserslist": [
"last 1 chrome versions"
],
@ -55,7 +55,7 @@
"readme.md"
],
"keywords": [
"xinvoice",
"einvoice",
"XML embedding",
"PDF manipulation",
"invoice processing",

221
readme.md
View File

@ -1,67 +1,122 @@
# @fin.cx/xinvoice
# @fin.cx/einvoice
A comprehensive TypeScript library for creating, manipulating, and embedding XML invoice data within PDF files, supporting multiple European electronic invoice standards including ZUGFeRD (v1 & v2), Factur-X, XRechnung, UBL, and FatturaPA.
## Features
- **Multi-format support**: Process invoices in ZUGFeRD (v1 & v2), Factur-X, XRechnung, UBL, and FatturaPA
- **PDF handling**: Extract XML from PDF/A-3 invoices and embed XML into PDFs
- **Validation**: Validate invoices against format-specific rules
- **PDF handling**: Extract XML from PDF/A-3 invoices and embed XML into PDFs with robust error handling
- **Validation**: Validate invoices against format-specific rules with detailed error reporting
- **Conversion**: Convert between different invoice formats
- **TypeScript**: Fully typed API with TypeScript definitions
- **Modular architecture**: Extensible design with specialized components
- **Robust error handling**: Detailed error information and graceful fallbacks
## Install
To install `@fin.cx/xinvoice`, you'll need a package manager. We recommend using pnpm:
To install `@fin.cx/einvoice`, you'll need a package manager. We recommend using pnpm:
```shell
# Using pnpm (recommended)
pnpm add @fin.cx/xinvoice
pnpm add @fin.cx/einvoice
# Using npm
npm install @fin.cx/xinvoice
npm install @fin.cx/einvoice
# Using yarn
yarn add @fin.cx/xinvoice
yarn add @fin.cx/einvoice
```
## Usage
The `@fin.cx/xinvoice` module streamlines the management of electronic invoices, handling the creation, manipulation, and embedding of structured invoice data in PDF files. Below are examples of common use cases.
The `@fin.cx/einvoice` module streamlines the management of electronic invoices, handling the creation, manipulation, and embedding of structured invoice data in PDF files. Below are examples of common use cases.
### Basic Usage
```typescript
import { XInvoice } from '@fin.cx/xinvoice';
import { EInvoice } from '@fin.cx/einvoice';
import { promises as fs } from 'fs';
// Create a new invoice
const invoice = new XInvoice();
const invoice = new EInvoice();
invoice.id = 'INV-2023-001';
invoice.from = {
name: 'Supplier Company',
// Add more details...
type: 'company',
address: {
streetName: 'Main Street',
houseNumber: '123',
city: 'Berlin',
postalCode: '10115',
country: 'Germany',
countryCode: 'DE'
},
registrationDetails: {
vatId: 'DE123456789',
registrationId: 'HRB 123456'
}
};
invoice.to = {
name: 'Customer Company',
// Add more details...
type: 'company',
address: {
streetName: 'Customer Street',
houseNumber: '456',
city: 'Paris',
postalCode: '75001',
country: 'France',
countryCode: 'FR'
},
registrationDetails: {
vatId: 'FR87654321',
registrationId: 'RCS 654321'
}
};
// Add more invoice details...
// Add payment options
invoice.paymentOptions = {
info: 'Please transfer to our bank account',
sepaConnection: {
iban: 'DE89370400440532013000',
bic: 'COBADEFFXXX'
}
};
// Add invoice items
invoice.items = [
{
position: 1,
name: 'Product A',
articleNumber: 'PROD-001',
unitQuantity: 2,
unitNetPrice: 100,
vatPercentage: 19,
unitType: 'EA'
},
{
position: 2,
name: 'Service B',
articleNumber: 'SERV-001',
unitQuantity: 1,
unitNetPrice: 200,
vatPercentage: 19,
unitType: 'EA'
}
];
// Export to XML
const xml = await invoice.exportXml('zugferd');
// Load from XML
const loadedInvoice = await XInvoice.fromXml(xml);
const loadedInvoice = await EInvoice.fromXml(xml);
// Load from PDF
const pdfBuffer = await fs.readFile('invoice.pdf');
const invoiceFromPdf = await XInvoice.fromPdf(pdfBuffer);
const invoiceFromPdf = await EInvoice.fromPdf(pdfBuffer);
// Export to PDF
const pdfWithXml = await invoice.exportPdf(pdfBuffer);
await fs.writeFile('invoice-with-xml.pdf', pdfWithXml);
// Export to PDF with embedded XML
const pdfWithXml = await invoice.exportPdf('facturx');
await fs.writeFile('invoice-with-xml.pdf', pdfWithXml.buffer);
```
### Working with Different Invoice Formats
@ -69,15 +124,20 @@ await fs.writeFile('invoice-with-xml.pdf', pdfWithXml);
```typescript
// Load a ZUGFeRD invoice
const zugferdXml = await fs.readFile('zugferd-invoice.xml', 'utf8');
const zugferdInvoice = await XInvoice.fromXml(zugferdXml);
const zugferdInvoice = await EInvoice.fromXml(zugferdXml);
// Load a Factur-X invoice
const facturxXml = await fs.readFile('facturx-invoice.xml', 'utf8');
const facturxInvoice = await XInvoice.fromXml(facturxXml);
const facturxInvoice = await EInvoice.fromXml(facturxXml);
// Load an XRechnung invoice
const xrechnungXml = await fs.readFile('xrechnung-invoice.xml', 'utf8');
const xrechnungInvoice = await XInvoice.fromXml(xrechnungXml);
const xrechnungInvoice = await EInvoice.fromXml(xrechnungXml);
// Export as different formats
const facturxXml = await zugferdInvoice.exportXml('facturx');
const ublXml = await facturxInvoice.exportXml('ubl');
const xrechnungXml = await zugferdInvoice.exportXml('xrechnung');
```
### PDF Handling
@ -85,12 +145,21 @@ const xrechnungInvoice = await XInvoice.fromXml(xrechnungXml);
```typescript
// Extract XML from PDF
const pdfBuffer = await fs.readFile('invoice.pdf');
const invoice = await XInvoice.fromPdf(pdfBuffer);
const invoice = await EInvoice.fromPdf(pdfBuffer);
// Check the detected format
console.log(`Detected format: ${invoice.getFormat()}`);
// Embed XML into PDF
const existingPdf = await fs.readFile('document.pdf');
const pdfWithInvoice = await invoice.exportPdf(existingPdf);
await fs.writeFile('invoice-with-xml.pdf', pdfWithInvoice);
invoice.pdf = {
name: 'invoice.pdf',
id: 'invoice-1234',
metadata: { textExtraction: '' },
buffer: await fs.readFile('document.pdf')
};
const pdfWithInvoice = await invoice.exportPdf('facturx');
await fs.writeFile('invoice-with-xml.pdf', pdfWithInvoice.buffer);
```
### Validating Invoices
@ -103,26 +172,32 @@ if (validationResult.valid) {
} else {
console.log('Validation errors:', validationResult.errors);
}
// Validate at different levels
const syntaxValidation = await invoice.validate(ValidationLevel.SYNTAX);
const semanticValidation = await invoice.validate(ValidationLevel.SEMANTIC);
const businessValidation = await invoice.validate(ValidationLevel.BUSINESS);
```
## Architecture
XInvoice uses a modular architecture with specialized components:
EInvoice uses a modular architecture with specialized components:
### Core Components
- **XInvoice**: The main class that provides a high-level API for working with invoices
- **EInvoice**: The main class that provides a high-level API for working with invoices
- **Decoders**: Convert format-specific XML to a common invoice model
- **Encoders**: Convert the common invoice model to format-specific XML
- **Validators**: Validate invoices against format-specific rules
- **FormatDetector**: Automatically detects invoice formats
### PDF Processing
- **PDF Extractors**: Extract XML from PDF files using multiple strategies:
- **PDFExtractor**: Extract XML from PDF files using multiple strategies:
- Standard Extraction: Extracts XML from standard PDF/A-3 embedded files
- Associated Files Extraction: Extracts XML from associated files (AF entry)
- Text-based Extraction: Extracts XML by searching for patterns in the PDF text
- **PDF Embedders**: Embed XML into PDF files
- **PDFEmbedder**: Embed XML into PDF files with robust error handling
This modular approach ensures maximum compatibility with different PDF implementations and invoice formats.
@ -144,18 +219,22 @@ This modular approach ensures maximum compatibility with different PDF implement
```typescript
// Using specific encoders
import { ZUGFeRDEncoder, FacturXEncoder } from '@fin.cx/xinvoice';
import { ZUGFeRDEncoder, FacturXEncoder, UBLEncoder } from '@fin.cx/einvoice';
// Create ZUGFeRD XML
const zugferdEncoder = new ZUGFeRDEncoder();
const zugferdXml = await zugferdEncoder.createXml(invoiceData);
const zugferdXml = await zugferdEncoder.encode(invoiceData);
// Create Factur-X XML
const facturxEncoder = new FacturXEncoder();
const facturxXml = await facturxEncoder.createXml(invoiceData);
const facturxXml = await facturxEncoder.encode(invoiceData);
// Create UBL XML
const ublEncoder = new UBLEncoder();
const ublXml = await ublEncoder.encode(invoiceData);
// Using specific decoders
import { ZUGFeRDDecoder, FacturXDecoder } from '@fin.cx/xinvoice';
import { ZUGFeRDDecoder, FacturXDecoder } from '@fin.cx/einvoice';
// Decode ZUGFeRD XML
const zugferdDecoder = new ZUGFeRDDecoder(zugferdXml);
@ -166,21 +245,59 @@ const facturxDecoder = new FacturXDecoder(facturxXml);
const facturxData = await facturxDecoder.decode();
```
### Circular Encoding and Decoding
### Working with PDF Extraction and Embedding
```typescript
// Start with invoice data
const invoiceData = { /* your structured invoice data */ };
import { PDFExtractor, PDFEmbedder } from '@fin.cx/einvoice';
// Create XML
const encoder = new FacturXEncoder();
const xml = await encoder.createXml(invoiceData);
// Extract XML from PDF
const extractor = new PDFExtractor();
const extractResult = await extractor.extractXml(pdfBuffer);
// Decode XML back to structured data
const decoder = new FacturXDecoder(xml);
const extractedData = await decoder.decode();
if (extractResult.success) {
console.log('Extracted XML:', extractResult.xml);
console.log('Detected format:', extractResult.format);
console.log('Extraction method used:', extractResult.extractorUsed);
} else {
console.error('Extraction failed:', extractResult.error?.message);
}
// Now extractedData contains the same information as your original invoiceData
// Embed XML into PDF
const embedder = new PDFEmbedder();
const embedResult = await embedder.createPdfWithXml(
pdfBuffer,
xmlContent,
'factur-x.xml',
'Factur-X XML Invoice',
'invoice.pdf',
'invoice-123456'
);
if (embedResult.success && embedResult.pdf) {
await fs.writeFile('output.pdf', embedResult.pdf.buffer);
} else {
console.error('Embedding failed:', embedResult.error?.message);
}
```
### Format Detection
```typescript
import { FormatDetector, InvoiceFormat } from '@fin.cx/einvoice';
// Detect format from XML
const format = FormatDetector.detectFormat(xmlString);
// Check format
if (format === InvoiceFormat.ZUGFERD) {
console.log('This is a ZUGFeRD invoice');
} else if (format === InvoiceFormat.FACTURX) {
console.log('This is a Factur-X invoice');
} else if (format === InvoiceFormat.XRECHNUNG) {
console.log('This is an XRechnung invoice');
} else if (format === InvoiceFormat.UBL) {
console.log('This is a UBL invoice');
}
```
## Development
@ -202,7 +319,7 @@ pnpm run build
pnpm test
# Run specific test
pnpm test test/test.xinvoice.ts
pnpm test test/test.einvoice.ts
```
The library includes comprehensive test suites that verify:
@ -212,13 +329,14 @@ The library includes comprehensive test suites that verify:
- Special character handling
- Different invoice types (invoices, credit notes)
- PDF extraction and embedding
- Error handling and recovery
## Key Features
1. **PDF Integration**
- Embed XML invoices in PDF documents
- Extract XML from existing PDF invoices using multiple strategies
- Handle different XML attachment methods
- Embed XML invoices in PDF documents with detailed error reporting
- Extract XML from existing PDF invoices using multiple fallback strategies
- Handle different XML attachment methods and encodings
2. **Encoding & Decoding**
- Create standards-compliant XML from structured data
@ -236,7 +354,12 @@ The library includes comprehensive test suites that verify:
- Detailed error reporting
- Support for different validation levels
By embracing `@fin.cx/xinvoice`, you simplify the handling of electronic invoice documents, fostering seamless integration across different financial processes, thus empowering practitioners with robust, flexible tools for VAT invoices in ZUGFeRD/Factur-X compliance or equivalent digital formats.
5. **Error Handling**
- Robust error recovery mechanisms
- Detailed error information
- Type-safe error reporting
By embracing `@fin.cx/einvoice`, you simplify the handling of electronic invoice documents, fostering seamless integration across different financial processes, thus empowering practitioners with robust, flexible tools for VAT invoices in ZUGFeRD/Factur-X compliance or equivalent digital formats.
## License and Legal Information
@ -255,4 +378,4 @@ Registered at District court Bremen HRB 35230 HB, Germany
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.

415
readme.plan.md Normal file
View File

@ -0,0 +1,415 @@
# EInvoice Improvement Plan
Command: Reread /home/philkunz/.claude/CLAUDE.md
## Vision
Transform @fin.cx/einvoice into the definitive, production-ready solution for handling all electronic invoice formats globally, with unmatched accuracy, performance, and reliability.
## Phase 0: Project Rebranding
### 0.1 Rename from XInvoice to EInvoice
- [x] Update package name from @fin.cx/xinvoice to @fin.cx/einvoice
- [x] Rename main class from XInvoice to EInvoice
- [x] Update all error classes (XInvoice* to EInvoice*)
- [x] Update all imports and references
- [x] Update documentation and examples
- [x] Create migration guide for existing users
- [ ] Set up package alias for backward compatibility
- [x] Update repository name and URLs
**Rationale**: "EInvoice" (electronic invoice) is more inclusive and universally understood than "XInvoice", better representing our goal to support all electronic invoice formats globally.
### 0.2 Architectural Improvements During Rebranding
- [x] Rename classes.xinvoice.ts to einvoice.ts
- [ ] Split EInvoice class into smaller, focused components
- [ ] Create clean separation between data model and operations
- [ ] Implement proper domain-driven design structure
## Phase 1: Core Infrastructure Improvements (Foundation)
### 1.1 Enhanced Error Handling System
- [x] Create specialized error classes for each operation type
- `EInvoiceParsingError` for XML parsing failures
- `EInvoiceValidationError` for validation failures
- `EInvoicePDFError` for PDF operations
- `EInvoiceFormatError` for format-specific issues
- [x] Implement error recovery mechanisms
- Partial data extraction on parser failures
- Fallback strategies for corrupted data
- Detailed error context with actionable solutions
- [ ] Add error telemetry and logging infrastructure
### 1.2 Performance Optimization
- [ ] Implement streaming XML parsing for large files (>10MB)
- Use SAX parser for memory efficiency
- Progressive validation during parsing
- [ ] Add caching layer for frequent operations
- Format detection cache
- Validation schema cache
- Compiled XPath expression cache
- [ ] Optimize PDF operations
- Streaming PDF processing for large documents
- Parallel extraction strategies
- Memory-mapped file access for huge PDFs
### 1.3 Type Safety Enhancements
- [ ] Create comprehensive type definitions for all invoice formats
- [ ] Add strict validation types with branded types
- [ ] Implement type guards for runtime safety
- [ ] Create format-specific interfaces extending TInvoice
## Phase 2: Comprehensive Test Suite Implementation
**Rationale**: A robust test suite is fundamental to ensuring reliability and maintainability. By leveraging the extensive corpus of 646+ test files across multiple formats, we can build confidence in our implementation and catch regressions early. This phase is positioned early in the roadmap because comprehensive testing underpins all subsequent development.
### 2.1 Test Infrastructure Overhaul
- [x] Reorganize test structure for better maintainability
- Group tests by feature (format detection, validation, conversion, PDF operations)
- Create test utilities for common operations
- Implement test data factories for generating test invoices
- [x] Set up automated test categorization
- Unit tests for individual components
- Integration tests for format workflows
- End-to-end tests for complete invoice processing
- Performance benchmarks
- Compliance tests against official standards
### 2.2 Format Detection Test Suite
- [x] Create exhaustive format detection tests using corpus assets
- Test all 28 CII samples from XML-Rechnung
- Test all 28 UBL samples from XML-Rechnung
- Test 24 ZUGFeRD v1 PDFs (both valid and invalid)
- Test 97 ZUGFeRD v2/Factur-X PDFs
- Test PEPPOL large invoice samples
- Test 15 FatturaPA samples
- Test edge cases: malformed files, empty files, wrong extensions
- [x] Add format confidence scoring tests
- [x] Test format detection performance with large files
- [ ] Test streaming detection for huge documents
### 2.3 Validation Test Suite
- [x] Implement EN16931 compliance testing
- Run all 207 UBL Invoice validation tests
- Run all 71 UBL CreditNote validation tests
- Test all Business Rules (BR-*) from test/assets/eInvoicing-EN16931
- Test all Codelist validations (BR-CL-*)
- Test calculation rules (BR-CO-*)
- [x] Create format-specific validation suites
- XRechnung validation using validator-configuration scenarios
- ZUGFeRD profile validation (BASIC, COMFORT, EXTENDED)
- FatturaPA schema validation
- PEPPOL BIS validation
- [x] Test validation error reporting
- Ensure clear, actionable error messages
- Test error location tracking (line numbers, XPath)
- Verify suggested fixes for common errors
### 2.4 PDF Operations Test Suite
- [x] PDF extraction testing
- Test XML extraction from all ZUGFeRD v1 samples (24 files)
- Test extraction from ZUGFeRD v2/Factur-X samples (97 files)
- Test handling of PDFs without embedded XML
- Test corrupted PDF handling
- Test large PDF performance (using PEPPOL large samples)
- [x] PDF embedding testing
- Test embedding into existing PDFs
- Test creating new PDF/A-3 compliant files
- Test multiple attachment handling
- Test metadata preservation
- [x] PDF signature testing
- Test signature validation on signed PDFs
- Test signature preservation during embedding
### 2.5 Cross-Format Conversion Testing
- [x] Create conversion matrix tests
- CII to UBL conversion using XML-Rechnung pairs
- UBL to CII conversion validation
- ZUGFeRD to XRechnung conversion
- Test data loss detection during conversion
- Verify mandatory field mapping
- [x] Test conversion edge cases
- Missing optional fields
- Format-specific extensions
- Character encoding issues
- Number format variations
- [x] Performance testing for batch conversions
### 2.6 Error Handling and Recovery Testing
- [x] Parser error recovery testing
- Test with corpus/other/eicar.*.xml virus test files
- Test with truncated XML files
- Test with invalid character encodings
- Test with mixed format files
- [x] Implement chaos testing
- Random byte corruption
- Memory pressure scenarios
- Concurrent access testing
- Network failure simulation for remote schemas
### 2.7 Performance Benchmark Suite
- [ ] Create performance baselines
- Measure parsing speed for each format
- Track memory usage patterns
- Monitor CPU utilization
- Test with corpus large files (PEPPOL samples)
- [ ] Implement regression testing
- Automated performance tracking per commit
- Alert on performance degradation >10%
- Generate performance reports
- [ ] Load testing
- Parallel processing of 1000+ invoices
- Memory leak detection over long runs
- Resource cleanup verification
### 2.8 Compliance and Certification Testing
- [ ] Official test suite integration
- Automate EN16931 official test execution
- XRechnung certification test suite
- PEPPOL validation test suite
- FatturaPA compliance tests
- [ ] Create compliance reports
- Generate format support matrix
- Document known limitations
- Track standards compliance percentage
- [ ] Regression testing against standards updates
### 2.9 Test Data Management
- [ ] Organize test corpus
- Index all test files with metadata
- Create test file catalog with descriptions
- Tag files by features they test
- Version control test file changes
- [ ] Synthetic test data generation
- Invoice generator for edge cases
- Fuzz testing data creation
- Performance testing datasets
- Internationalization test data (all languages/scripts)
### 2.10 Test Reporting and Analytics
- [ ] Implement comprehensive test reporting
- Coverage reports by format
- Feature coverage mapping
- Test execution time tracking
- Failure pattern analysis
- [ ] Create test dashboard
- Real-time test status
- Historical trend analysis
- Format support coverage
- Performance metrics visualization
## Phase 3: Format Support Expansion
### 3.1 Complete Missing Implementations
- [ ] Implement FatturaPA (Italian format)
- Create FatturaPADecoder
- Create FatturaPAEncoder
- Create FatturaPAValidator
- Add comprehensive test suite
- [ ] Add support for additional formats:
- [ ] PEPPOL BIS 3.0 (Pan-European)
- [ ] e-Invoice (India GST)
- [ ] CFDI (Mexico)
- [ ] Fatura-e (Brazil)
- [ ] e-Fatura (Turkey)
- [ ] Swiss QR-bill integration
### 3.2 Enhanced Format Conversion
- [ ] Implement intelligent field mapping between formats
- [ ] Add conversion quality scoring
- [ ] Create conversion loss reports
- [ ] Support partial conversions with warnings
- [ ] Add format-specific extension preservation
## Phase 4: Advanced Validation System
### 4.1 Comprehensive Business Rule Engine
- [ ] Implement rule engine for complex validations
- Cross-field validations
- Country-specific business rules
- Industry-specific validations
- Tax calculation verification
- [ ] Add configurable validation profiles
- [ ] Support custom validation rules via plugins
- [ ] Real-time validation with incremental updates
### 4.2 Smart Validation Features
- [ ] Auto-correction suggestions for common errors
- [ ] Machine learning-based anomaly detection
- [ ] Historical validation pattern analysis
- [ ] Compliance checking against latest regulations
- [ ] Multi-language validation messages
## Phase 5: PDF Processing Excellence
### 5.1 Advanced PDF Features
- [ ] Support for digitally signed PDFs
- Signature validation
- Certificate chain verification
- Timestamp validation
- [ ] Handle encrypted PDFs
- [ ] Support PDF/A-1, PDF/A-2, PDF/A-3 standards
- [ ] Add PDF repair capabilities for corrupted files
- [ ] Implement OCR fallback for scanned invoices
### 5.2 Enhanced Embedding
- [ ] Support multiple XML attachments
- [ ] Add invoice visualization layer
- [ ] Embed human-readable HTML representation
- [ ] Support for additional metadata standards
- [ ] Compression optimization for smaller file sizes
## Phase 6: Enterprise Features
### 6.1 Batch Processing
- [ ] CLI tool for bulk operations
- Parallel processing with worker threads
- Progress tracking and resumable operations
- Detailed batch reports
- [ ] API for streaming operations
- [ ] Queue-based processing system
- [ ] Webhook notifications for async operations
### 6.2 Integration Capabilities
- [ ] REST API server mode
- [ ] GraphQL API support
- [ ] Message queue integrations (RabbitMQ, Kafka)
- [ ] Database storage adapters
- PostgreSQL with JSONB
- MongoDB
- ElasticSearch for search
- [ ] Cloud storage integrations (S3, Azure Blob, GCS)
### 6.3 Security Features
- [ ] Field-level encryption support
- [ ] GDPR compliance tools
- Data anonymization
- Right to be forgotten
- Audit trails
- [ ] Role-based access control for API mode
- [ ] Rate limiting and DDoS protection
## Phase 7: Developer Experience
### 7.1 Documentation Excellence
- [ ] Interactive API documentation
- [ ] Video tutorials for common use cases
- [ ] Migration guides from other libraries
- [ ] Best practices guide
- [ ] Performance tuning guide
- [ ] Troubleshooting decision tree
### 7.2 Development Tools
- [ ] Invoice format playground/sandbox
- [ ] Visual invoice builder
- [ ] Format comparison tool
- [ ] Validation rule designer
- [ ] Test data generator
- [ ] VS Code extension for e-invoice files
### 7.3 Testing Infrastructure Enhancement
- [ ] Integrate with comprehensive test suite from Phase 2
- [ ] Create testing best practices documentation
- [ ] Develop testing plugins for IDEs
- [ ] Build test case contribution portal
- [ ] Establish testing certification program
## Phase 8: Advanced Features
### 8.1 AI/ML Integration
- [ ] Automatic data extraction from unstructured invoices
- [ ] Invoice fraud detection
- [ ] Duplicate invoice detection
- [ ] Automatic categorization and tagging
- [ ] Predictive validation
### 8.2 Analytics and Reporting
- [ ] Invoice analytics dashboard
- [ ] Compliance reporting
- [ ] Format usage statistics
- [ ] Error pattern analysis
- [ ] Performance metrics tracking
### 8.3 Ecosystem Development
- [ ] Plugin system for custom formats
- [ ] Marketplace for validation rules
- [ ] Community contribution portal
- [ ] Certification program for implementations
- [ ] Reference implementation status
## Phase 9: Global Standards Leadership
### 9.1 Standards Participation
- [ ] Contribute to invoice format standards
- [ ] Maintain compatibility matrix
- [ ] Provide feedback to standards bodies
- [ ] Host interoperability testing events
### 9.2 Compliance Automation
- [ ] Automatic updates for regulation changes
- [ ] Compliance certification generation
- [ ] Audit trail generation
- [ ] Regulatory reporting tools
## Implementation Priority
1. **Pre-Sprint (Week 1)**
- Complete rebranding from XInvoice to EInvoice
- Update all documentation and examples
- Create migration guide
2. **Immediate (Sprint 1-2)**
- Enhanced error handling (Phase 1)
- Comprehensive test suite setup (Phase 2)
- Test infrastructure using existing corpus
3. **Short-term (Sprint 3-4)**
- Complete test implementation (Phase 2)
- FatturaPA implementation (Phase 3)
- Additional format support (PEPPOL, e-Invoice India)
4. **Medium-term (Sprint 5-6)**
- Advanced validation engine (Phase 4)
- PDF signature support (Phase 5)
- Performance optimization
5. **Long-term (Sprint 7-10)**
- Enterprise features (Phase 6)
- Developer experience (Phase 7)
- AI/ML features (Phase 8)
6. **Vision (Sprint 11-12+)**
- Global standards participation (Phase 9)
- Full ecosystem development
- Market leadership position
## Success Metrics
- **Test Coverage**: 95%+ code coverage, 100% critical path coverage
- **Test Suite**: 1000+ automated tests across all formats
- **Accuracy**: 99.99% format detection accuracy (validated by test corpus)
- **Performance**: <100ms processing for average invoice
- **Coverage**: Support for 20+ invoice formats
- **Reliability**: 99.9% uptime for API mode
- **Compliance**: Pass 100% of official validation test suites
- **Quality**: Zero critical bugs in production
- **Adoption**: 10,000+ active users
- **Standards**: Certified by major standards bodies
## Technical Debt Reduction
- [ ] Refactor redundant code in format implementations
- [ ] Standardize error messages across all formats
- [ ] Improve test coverage to 95%+
- [ ] Update all dependencies to latest versions
- [ ] Implement consistent logging throughout
- [ ] Add performance benchmarks to CI/CD
## Community Building
- [ ] Create Discord/Slack community
- [ ] Monthly office hours
- [ ] Contribution guidelines
- [ ] Bug bounty program
- [ ] Annual conference/meetup
This plan positions @fin.cx/einvoice as the definitive solution for electronic invoice processing, with enterprise-grade features, global format support, and a thriving ecosystem.

View File

@ -1,45 +0,0 @@
{
"cii": {
"success": 3,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_1_Teilrechnung.cii.xml",
"success": true,
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_2_Teilrechnung.cii.xml",
"success": true,
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_AbweichenderZahlungsempf.cii.xml",
"success": true,
"error": null
}
]
},
"ubl": {
"success": 3,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_1_Teilrechnung.ubl.xml",
"success": true,
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_2_Teilrechnung.ubl.xml",
"success": true,
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_AbweichenderZahlungsempf.ubl.xml",
"success": true,
"error": null
}
]
},
"totalSuccessRate": 1
}

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>180.70</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">20.50</ram:TaxTotalAmount><ram:GrandTotalAmount>201.20</ram:GrandTotalAmount><ram:DuePayableAmount>201.20</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Kunstrasen grün 3m breit</ram:Name><ram:SellerAssignedID>KR3M</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>3.33</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="MTK">3</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>10.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Schweinesteak</ram:Name><ram:SellerAssignedID>SFK5</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="KGM">1</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>5.50</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>3</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Mineralwasser Medium
12 x 1,0l PET
</ram:Name><ram:SellerAssignedID>GTRWA5</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.49</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>109.80</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>4</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Pfand</ram:Name><ram:SellerAssignedID>PFA5</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>2.77</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="C62">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>55.40</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,161 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471102</cbc:ID>
<cbc:IssueDate>2018-06-05</cbc:IssueDate>
<cbc:DueDate>2018-07-05</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="MTK">3</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">9.9999</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Kunstrasen grün 3m breit</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>KR3M</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">3.3333</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>2</cbc:ID>
<cbc:InvoicedQuantity unitCode="KGM">1</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">5.5</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Schweinesteak</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>SFK5</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>3</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">109.80000000000001</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Mineralwasser Medium
12 x 1,0l PET
</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>GTRWA5</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.49</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>4</cbc:ID>
<cbc:InvoicedQuantity unitCode="C62">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">55.4</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Pfand</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>PFA5</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">2.77</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471113</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>22.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">1.54</ram:TaxTotalAmount><ram:GrandTotalAmount>23.54</ram:GrandTotalAmount><ram:DuePayableAmount>23.54</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Schweinesteak</ram:Name><ram:SellerAssignedID>SFK5</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="KGM">4</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>22.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,93 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471113</cbc:ID>
<cbc:IssueDate>2018-06-13</cbc:IssueDate>
<cbc:DueDate>2018-07-13</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="KGM">4</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">22</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Schweinesteak</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>SFK5</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>473.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">56.87</ram:TaxTotalAmount><ram:GrandTotalAmount>529.87</ram:GrandTotalAmount><ram:DuePayableAmount>529.87</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Trennblätter A4</ram:Name><ram:SellerAssignedID>TB100A4</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>9.90</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>198.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Joghurt Banane</ram:Name><ram:SellerAssignedID>ARNR2</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">50</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>275.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,115 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471102</cbc:ID>
<cbc:IssueDate>2018-03-05</cbc:IssueDate>
<cbc:DueDate>2018-04-04</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">198</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Trennblätter A4</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>TB100A4</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">9.9</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>2</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">50</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">275</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Joghurt Banane</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>ARNR2</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,11 +0,0 @@
{
"test.zugferd-corpus.ts": {
"error": "No results file found"
},
"test.xml-rechnung-corpus.ts": {
"error": "No results file found"
},
"test.circular-corpus.ts": {
"error": "No results file found"
}
}

View File

@ -1,7 +0,0 @@
# XInvoice Corpus Testing Summary
Generated on: 2025-04-04T13:27:15.672Z
## Note
This is a placeholder summary. The actual tests are run individually.

Binary file not shown.

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>INV-2023-001</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Supplier Company</ram:Name><ram:PostalTradeAddress><ram:LineOne>Supplier Street</ram:LineOne><ram:LineTwo>123</ram:LineTwo><ram:PostcodeCode>12345</ram:PostcodeCode><ram:CityName>Supplier City</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Customer Company</ram:Name><ram:PostalTradeAddress><ram:LineOne>Customer Street</ram:LineOne><ram:LineTwo>456</ram:LineTwo><ram:PostcodeCode>54321</ram:PostcodeCode><ram:CityName>Customer City</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>0.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">0.00</ram:TaxTotalAmount><ram:GrandTotalAmount>0.00</ram:GrandTotalAmount><ram:DuePayableAmount>0.00</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>INV-2023-001</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">20230101</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Supplier Company</ram:Name><ram:PostalTradeAddress><ram:LineOne>Supplier Street</ram:LineOne><ram:LineTwo>123</ram:LineTwo><ram:PostcodeCode>12345</ram:PostcodeCode><ram:CityName>Supplier City</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">HRB12345</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Customer Company</ram:Name><ram:PostalTradeAddress><ram:LineOne>Customer Street</ram:LineOne><ram:LineTwo>456</ram:LineTwo><ram:PostcodeCode>54321</ram:PostcodeCode><ram:CityName>Customer City</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE987654321</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">HRB54321</ram:ID></ram:SpecifiedTaxRegistration></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">20230131</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>600.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">114.00</ram:TaxTotalAmount><ram:GrandTotalAmount>714.00</ram:GrandTotalAmount><ram:DuePayableAmount>714.00</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Product A</ram:Name><ram:SellerAssignedID>PROD-A</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>100.00</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="EA">2</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>200.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Service B</ram:Name><ram:SellerAssignedID>SERV-B</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>80.00</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="HUR">5</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>400.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>INV-2023-001</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">20230101</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Supplier Company</ram:Name><ram:PostalTradeAddress><ram:LineOne>Supplier Street</ram:LineOne><ram:LineTwo>123</ram:LineTwo><ram:PostcodeCode>12345</ram:PostcodeCode><ram:CityName>Supplier City</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">HRB12345</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Customer Company</ram:Name><ram:PostalTradeAddress><ram:LineOne>Customer Street</ram:LineOne><ram:LineTwo>456</ram:LineTwo><ram:PostcodeCode>54321</ram:PostcodeCode><ram:CityName>Customer City</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE987654321</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">HRB54321</ram:ID></ram:SpecifiedTaxRegistration></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">20230131</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>600.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">114.00</ram:TaxTotalAmount><ram:GrandTotalAmount>714.00</ram:GrandTotalAmount><ram:DuePayableAmount>714.00</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Product A</ram:Name><ram:SellerAssignedID>PROD-A</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>100.00</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="EA">2</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>200.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Service B</ram:Name><ram:SellerAssignedID>SERV-B</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>80.00</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="HUR">5</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>400.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>180.70</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">20.50</ram:TaxTotalAmount><ram:GrandTotalAmount>201.20</ram:GrandTotalAmount><ram:DuePayableAmount>201.20</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Kunstrasen grün 3m breit</ram:Name><ram:SellerAssignedID>KR3M</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>3.33</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="MTK">3</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>10.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Schweinesteak</ram:Name><ram:SellerAssignedID>SFK5</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="KGM">1</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>5.50</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>3</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Mineralwasser Medium
12 x 1,0l PET
</ram:Name><ram:SellerAssignedID>GTRWA5</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.49</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>109.80</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>4</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Pfand</ram:Name><ram:SellerAssignedID>PFA5</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>2.77</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="C62">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>55.40</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,161 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471102</cbc:ID>
<cbc:IssueDate>2018-06-05</cbc:IssueDate>
<cbc:DueDate>2018-07-05</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="MTK">3</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">9.9999</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Kunstrasen grün 3m breit</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>KR3M</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">3.3333</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>2</cbc:ID>
<cbc:InvoicedQuantity unitCode="KGM">1</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">5.5</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Schweinesteak</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>SFK5</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>3</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">109.80000000000001</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Mineralwasser Medium
12 x 1,0l PET
</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>GTRWA5</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.49</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>4</cbc:ID>
<cbc:InvoicedQuantity unitCode="C62">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">55.4</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Pfand</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>PFA5</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">2.77</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471113</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>22.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">1.54</ram:TaxTotalAmount><ram:GrandTotalAmount>23.54</ram:GrandTotalAmount><ram:DuePayableAmount>23.54</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Schweinesteak</ram:Name><ram:SellerAssignedID>SFK5</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="KGM">4</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>22.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,93 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471113</cbc:ID>
<cbc:IssueDate>2018-06-13</cbc:IssueDate>
<cbc:DueDate>2018-07-13</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="KGM">4</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">22</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Schweinesteak</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>SFK5</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>473.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">56.87</ram:TaxTotalAmount><ram:GrandTotalAmount>529.87</ram:GrandTotalAmount><ram:DuePayableAmount>529.87</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Trennblätter A4</ram:Name><ram:SellerAssignedID>TB100A4</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>9.90</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>198.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Joghurt Banane</ram:Name><ram:SellerAssignedID>ARNR2</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">50</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>275.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,115 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471102</cbc:ID>
<cbc:IssueDate>2018-03-05</cbc:IssueDate>
<cbc:DueDate>2018-04-04</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">198</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Trennblätter A4</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>TB100A4</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">9.9</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>2</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">50</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">275</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Joghurt Banane</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>ARNR2</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Grundbesitz GmbH &amp; Co.</ram:Name><ram:PostalTradeAddress><ram:LineOne>Musterstraße 42</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>75645</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE136695976</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Beispielmieter GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Verwaltung Straße 40</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>12345</ram:PostcodeCode><ram:CityName>Musterstadt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>15387.08</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">2923.55</ram:TaxTotalAmount><ram:GrandTotalAmount>18310.63</ram:GrandTotalAmount><ram:DuePayableAmount>18310.63</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Abrechnungskreis 1</ram:Name></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>15387.08</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="C62">1</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>15387.08</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,90 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471102</cbc:ID>
<cbc:IssueDate>2018-03-05</cbc:IssueDate>
<cbc:DueDate>2018-04-04</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Grundbesitz GmbH & Co.</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Musterstraße 42</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>75645</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Beispielmieter GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Verwaltung Straße 40</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Musterstadt</cbc:CityName>
<cbc:PostalZone>12345</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="C62">1</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">15387.08</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Abrechnungskreis 1</cbc:Name>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">15387.08</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>473.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">56.87</ram:TaxTotalAmount><ram:GrandTotalAmount>529.87</ram:GrandTotalAmount><ram:DuePayableAmount>529.87</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Trennblätter A4</ram:Name><ram:SellerAssignedID>TB100A4</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>9.90</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>198.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Joghurt Banane</ram:Name><ram:SellerAssignedID>ARNR2</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">50</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>275.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,115 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471102</cbc:ID>
<cbc:IssueDate>2018-03-05</cbc:IssueDate>
<cbc:DueDate>2018-04-04</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">198</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Trennblätter A4</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>TB100A4</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">9.9</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>2</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">50</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">275</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Joghurt Banane</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>ARNR2</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,26 +0,0 @@
{
"peppol": {
"success": 2,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/PEPPOL/Valid/Qvalia/Large_Invoice_sample1.xml",
"success": true,
"format": "xrechnung",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/PEPPOL/Valid/Qvalia/Large_Invoice_sample2.xml",
"success": true,
"format": "xrechnung",
"error": null
}
]
},
"fatturapa": {
"success": 0,
"fail": 0,
"details": []
},
"totalSuccessRate": 1
}

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>473.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">56.87</ram:TaxTotalAmount><ram:GrandTotalAmount>529.87</ram:GrandTotalAmount><ram:DuePayableAmount>529.87</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Trennblätter A4</ram:Name><ram:SellerAssignedID>TB100A4</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>9.90</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>198.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Joghurt Banane</ram:Name><ram:SellerAssignedID>ARNR2</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">50</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>275.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,115 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471102</cbc:ID>
<cbc:IssueDate>2018-03-05</cbc:IssueDate>
<cbc:DueDate>2018-04-04</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">198</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Trennblätter A4</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>TB100A4</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">9.9</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>2</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">50</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">275</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Joghurt Banane</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>ARNR2</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100"
xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100"
xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext>
<ram:GuidelineSpecifiedDocumentContextParameter>
<ram:ID>urn:cen.eu:en16931:2017</ram:ID>
</ram:GuidelineSpecifiedDocumentContextParameter>
</rsm:ExchangedDocumentContext>
<rsm:ExchangedDocument>
<ram:ID>INV-2023-001</ram:ID>
<ram:TypeCode>380</ram:TypeCode>
<ram:IssueDateTime>
<udt:DateTimeString format="102">20230101</udt:DateTimeString>
</ram:IssueDateTime>
</rsm:ExchangedDocument>
<rsm:SupplyChainTradeTransaction>
<ram:ApplicableHeaderTradeAgreement>
<ram:SellerTradeParty>
<ram:Name>Supplier Company</ram:Name>
<ram:PostalTradeAddress>
<ram:LineOne>Supplier Street</ram:LineOne>
<ram:LineTwo>123</ram:LineTwo>
<ram:PostcodeCode>12345</ram:PostcodeCode>
<ram:CityName>Supplier City</ram:CityName>
<ram:CountryID>DE</ram:CountryID>
</ram:PostalTradeAddress>
<ram:SpecifiedTaxRegistration>
<ram:ID schemeID="VA">DE123456789</ram:ID>
</ram:SpecifiedTaxRegistration>
</ram:SellerTradeParty>
<ram:BuyerTradeParty>
<ram:Name>Customer Company</ram:Name>
<ram:PostalTradeAddress>
<ram:LineOne>Customer Street</ram:LineOne>
<ram:LineTwo>456</ram:LineTwo>
<ram:PostcodeCode>54321</ram:PostcodeCode>
<ram:CityName>Customer City</ram:CityName>
<ram:CountryID>DE</ram:CountryID>
</ram:PostalTradeAddress>
</ram:BuyerTradeParty>
</ram:ApplicableHeaderTradeAgreement>
<ram:ApplicableHeaderTradeDelivery/>
<ram:ApplicableHeaderTradeSettlement>
<ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode>
<ram:SpecifiedTradeSettlementHeaderMonetarySummation>
<ram:LineTotalAmount>200.00</ram:LineTotalAmount>
<ram:TaxTotalAmount currencyID="EUR">38.00</ram:TaxTotalAmount>
<ram:GrandTotalAmount>238.00</ram:GrandTotalAmount>
<ram:DuePayableAmount>238.00</ram:DuePayableAmount>
</ram:SpecifiedTradeSettlementHeaderMonetarySummation>
</ram:ApplicableHeaderTradeSettlement>
</rsm:SupplyChainTradeTransaction>
</rsm:CrossIndustryInvoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>473.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">56.87</ram:TaxTotalAmount><ram:GrandTotalAmount>529.87</ram:GrandTotalAmount><ram:DuePayableAmount>529.87</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Trennblätter A4</ram:Name><ram:SellerAssignedID>TB100A4</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>9.90</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>198.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Joghurt Banane</ram:Name><ram:SellerAssignedID>ARNR2</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">50</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>275.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,115 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xoev-de:kosit:standard:xrechnung_2.0</cbc:CustomizationID>
<cbc:ID>471102</cbc:ID>
<cbc:IssueDate>2018-03-05</cbc:IssueDate>
<cbc:DueDate>2018-04-04</cbc:DueDate>
<cbc:InvoiceTypeCode>380</cbc:InvoiceTypeCode>
<cbc:DocumentCurrencyCode>EUR</cbc:DocumentCurrencyCode>
<cac:AccountingSupplierParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Lieferant GmbH</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Lieferantenstraße 20</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>München</cbc:CityName>
<cbc:PostalZone>80333</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
<cac:PartyTaxScheme>
<cbc:CompanyID>201/113/40209</cbc:CompanyID>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:PartyTaxScheme>
</cac:Party>
</cac:AccountingSupplierParty>
<cac:AccountingCustomerParty>
<cac:Party>
<cac:PartyName>
<cbc:Name>Kunden AG Mitte</cbc:Name>
</cac:PartyName>
<cac:PostalAddress>
<cbc:StreetName>Kundenstraße 15</cbc:StreetName>
<cbc:BuildingNumber>0</cbc:BuildingNumber>
<cbc:CityName>Frankfurt</cbc:CityName>
<cbc:PostalZone>69876</cbc:PostalZone>
<cac:Country>
<cbc:IdentificationCode>DE</cbc:IdentificationCode>
</cac:Country>
</cac:PostalAddress>
</cac:Party>
</cac:AccountingCustomerParty>
<cac:PaymentTerms>
<cbc:Note>Due in 30 days</cbc:Note>
</cac:PaymentTerms>
<cac:TaxTotal>
<cbc:TaxAmount currencyID="EUR">0.00</cbc:TaxAmount>
</cac:TaxTotal>
<cac:LegalMonetaryTotal>
<cbc:LineExtensionAmount currencyID="EUR">0.00</cbc:LineExtensionAmount>
<cbc:TaxExclusiveAmount currencyID="EUR">0.00</cbc:TaxExclusiveAmount>
<cbc:TaxInclusiveAmount currencyID="EUR">0.00</cbc:TaxInclusiveAmount>
<cbc:PayableAmount currencyID="EUR">0.00</cbc:PayableAmount>
</cac:LegalMonetaryTotal>
<cac:InvoiceLine>
<cbc:ID>1</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">20</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">198</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Trennblätter A4</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>TB100A4</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>19</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">9.9</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
<cac:InvoiceLine>
<cbc:ID>2</cbc:ID>
<cbc:InvoicedQuantity unitCode="H87">50</cbc:InvoicedQuantity>
<cbc:LineExtensionAmount currencyID="EUR">275</cbc:LineExtensionAmount>
<cac:Item>
<cbc:Name>Joghurt Banane</cbc:Name>
<cac:SellersItemIdentification>
<cbc:ID>ARNR2</cbc:ID>
</cac:SellersItemIdentification>
<cac:ClassifiedTaxCategory>
<cbc:ID>S</cbc:ID>
<cbc:Percent>7</cbc:Percent>
<cac:TaxScheme>
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:ClassifiedTaxCategory>
</cac:Item>
<cac:Price>
<cbc:PriceAmount currencyID="EUR">5.5</cbc:PriceAmount>
</cac:Price>
</cac:InvoiceLine>
</Invoice>

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
<rsm:ExchangedDocumentContext><ram:GuidelineSpecifiedDocumentContextParameter><ram:ID>urn:cen.eu:en16931:2017</ram:ID></ram:GuidelineSpecifiedDocumentContextParameter></rsm:ExchangedDocumentContext><rsm:ExchangedDocument><ram:TypeCode>380</ram:TypeCode><ram:ID>471102</ram:ID><ram:IssueDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:IssueDateTime></rsm:ExchangedDocument><rsm:SupplyChainTradeTransaction><ram:ApplicableHeaderTradeAgreement><ram:SellerTradeParty><ram:Name>Lieferant GmbH</ram:Name><ram:PostalTradeAddress><ram:LineOne>Lieferantenstraße 20</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>80333</ram:PostcodeCode><ram:CityName>München</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress><ram:SpecifiedTaxRegistration><ram:ID schemeID="VA">DE123456789</ram:ID></ram:SpecifiedTaxRegistration><ram:SpecifiedTaxRegistration><ram:ID schemeID="FC">201/113/40209</ram:ID></ram:SpecifiedTaxRegistration></ram:SellerTradeParty><ram:BuyerTradeParty><ram:Name>Kunden AG Mitte</ram:Name><ram:PostalTradeAddress><ram:LineOne>Kundenstraße 15</ram:LineOne><ram:LineTwo>0</ram:LineTwo><ram:PostcodeCode>69876</ram:PostcodeCode><ram:CityName>Frankfurt</ram:CityName><ram:CountryID>DE</ram:CountryID></ram:PostalTradeAddress></ram:BuyerTradeParty></ram:ApplicableHeaderTradeAgreement><ram:ApplicableHeaderTradeDelivery/><ram:ApplicableHeaderTradeSettlement><ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode><ram:SpecifiedTradePaymentTerms><ram:DueDateDateTime><udt:DateTimeString format="102">NaNNaNNaN</udt:DateTimeString></ram:DueDateDateTime></ram:SpecifiedTradePaymentTerms><ram:SpecifiedTradeSettlementHeaderMonetarySummation><ram:LineTotalAmount>473.00</ram:LineTotalAmount><ram:TaxTotalAmount currencyID="EUR">56.87</ram:TaxTotalAmount><ram:GrandTotalAmount>529.87</ram:GrandTotalAmount><ram:DuePayableAmount>529.87</ram:DuePayableAmount></ram:SpecifiedTradeSettlementHeaderMonetarySummation></ram:ApplicableHeaderTradeSettlement><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>1</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Trennblätter A4</ram:Name><ram:SellerAssignedID>TB100A4</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>9.90</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">20</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>19</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>198.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem><ram:IncludedSupplyChainTradeLineItem><ram:AssociatedDocumentLineDocument><ram:LineID>2</ram:LineID></ram:AssociatedDocumentLineDocument><ram:SpecifiedTradeProduct><ram:Name>Joghurt Banane</ram:Name><ram:SellerAssignedID>ARNR2</ram:SellerAssignedID></ram:SpecifiedTradeProduct><ram:SpecifiedLineTradeAgreement><ram:NetPriceProductTradePrice><ram:ChargeAmount>5.50</ram:ChargeAmount></ram:NetPriceProductTradePrice></ram:SpecifiedLineTradeAgreement><ram:SpecifiedLineTradeDelivery><ram:BilledQuantity unitCode="H87">50</ram:BilledQuantity></ram:SpecifiedLineTradeDelivery><ram:SpecifiedLineTradeSettlement><ram:ApplicableTradeTax><ram:TypeCode>VAT</ram:TypeCode><ram:CategoryCode>S</ram:CategoryCode><ram:RateApplicablePercent>7</ram:RateApplicablePercent></ram:ApplicableTradeTax><ram:SpecifiedLineTradeSettlementMonetarySummation><ram:LineTotalAmount>275.00</ram:LineTotalAmount></ram:SpecifiedLineTradeSettlementMonetarySummation></ram:SpecifiedLineTradeSettlement></ram:IncludedSupplyChainTradeLineItem></rsm:SupplyChainTradeTransaction></rsm:CrossIndustryInvoice>

View File

@ -1,192 +0,0 @@
{
"zugferdV2Correct": {
"success": 5,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Avoir_FR_type381_BASIC.pdf",
"success": true,
"valid": true,
"errors": [],
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_DOM_BASICWL.pdf",
"success": true,
"valid": true,
"errors": [],
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_DOM_MINIMUM.pdf",
"success": true,
"valid": true,
"errors": [],
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_FR_BASICWL.pdf",
"success": true,
"valid": true,
"errors": [],
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_FR_MINIMUM.pdf",
"success": true,
"valid": true,
"errors": [],
"error": null
}
]
},
"zugferdV2Fail": {
"success": 0,
"fail": 5,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type380_BASIC.pdf",
"success": false,
"valid": true,
"errors": [],
"error": "Validation result (true) doesn't match expectation (false)"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type380_EN16931.pdf",
"success": false,
"valid": true,
"errors": [],
"error": "Validation result (true) doesn't match expectation (false)"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type380_MINIMUM.pdf",
"success": false,
"valid": true,
"errors": [],
"error": "Validation result (true) doesn't match expectation (false)"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type381_BASICWL.pdf",
"success": false,
"valid": true,
"errors": [],
"error": "Validation result (true) doesn't match expectation (false)"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type381_EN16931.pdf",
"success": false,
"valid": true,
"errors": [],
"error": "Validation result (true) doesn't match expectation (false)"
}
]
},
"cii": {
"success": 5,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_1_Teilrechnung.cii.xml",
"success": true,
"valid": true,
"errors": [],
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_2_Teilrechnung.cii.xml",
"success": true,
"valid": true,
"errors": [],
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_AbweichenderZahlungsempf.cii.xml",
"success": true,
"valid": true,
"errors": [],
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Betriebskostenabrechnung.cii.xml",
"success": true,
"valid": true,
"errors": [],
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Einfach.cii.xml",
"success": true,
"valid": true,
"errors": [],
"error": null
}
]
},
"ubl": {
"success": 0,
"fail": 5,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_1_Teilrechnung.ubl.xml",
"success": false,
"valid": false,
"errors": [
{
"code": "VAL-ERROR",
"message": "Validation error: XRechnung validator not yet implemented"
}
],
"error": "Validation result (false) doesn't match expectation (true)"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_2_Teilrechnung.ubl.xml",
"success": false,
"valid": false,
"errors": [
{
"code": "VAL-ERROR",
"message": "Validation error: XRechnung validator not yet implemented"
}
],
"error": "Validation result (false) doesn't match expectation (true)"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_AbweichenderZahlungsempf.ubl.xml",
"success": false,
"valid": false,
"errors": [
{
"code": "VAL-ERROR",
"message": "Validation error: XRechnung validator not yet implemented"
}
],
"error": "Validation result (false) doesn't match expectation (true)"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Betriebskostenabrechnung.ubl.xml",
"success": false,
"valid": false,
"errors": [
{
"code": "VAL-ERROR",
"message": "Validation error: XRechnung validator not yet implemented"
}
],
"error": "Validation result (false) doesn't match expectation (true)"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Einfach.ubl.xml",
"success": false,
"valid": false,
"errors": [
{
"code": "VAL-ERROR",
"message": "Validation error: XRechnung validator not yet implemented"
}
],
"error": "Validation result (false) doesn't match expectation (true)"
}
]
},
"totalCorrectSuccessRate": 0.6666666666666666
}

View File

@ -1,350 +0,0 @@
{
"cii": {
"success": 23,
"fail": 4,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_1_Teilrechnung.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_2_Teilrechnung.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_AbweichenderZahlungsempf.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Betriebskostenabrechnung.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Einfach.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Einfach_DueDate.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Einfach_negativePaymentDue.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Elektron.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_ElektronischeAdresse.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Gutschrift.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Haftpflichtversicherung_Versicherungssteuer.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Innergemeinschaftliche_Lieferungen.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Kraftfahrversicherung_Bruttopreise.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Miete.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_OEPNV.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Physiotherapeut.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Rabatte.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_RechnungsUebertragung.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Rechnungskorrektur.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Reisekostenabrechnung.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_SEPA_Prenotification.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/EN16931_Sachversicherung_berechneter_Steuersatz.cii.xml",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/XRECHNUNG_Betriebskostenabrechnung.cii.xml",
"success": false,
"format": "xrechnung",
"error": "Wrong format detected: xrechnung, expected: cii"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/XRECHNUNG_Einfach.cii.xml",
"success": false,
"format": "xrechnung",
"error": "Wrong format detected: xrechnung, expected: cii"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/XRECHNUNG_Elektron.cii.xml",
"success": false,
"format": "xrechnung",
"error": "Wrong format detected: xrechnung, expected: cii"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/XRECHNUNG_Reisekostenabrechnung.cii.xml",
"success": false,
"format": "xrechnung",
"error": "Wrong format detected: xrechnung, expected: cii"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/CII/not_validating_full_invoice_based_onTest_EeISI_300_CENfullmodel.cii.xml",
"success": true,
"format": "facturx",
"error": null
}
]
},
"ubl": {
"success": 28,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_1_Teilrechnung.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_2_Teilrechnung.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_AbweichenderZahlungsempf.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Betriebskostenabrechnung.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Einfach.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Einfach_DueDate.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Einfach_negativePaymentDue.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Elektron.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_ElektronischeAdresse.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Gutschrift.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Haftpflichtversicherung_Versicherungssteuer.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Innergemeinschaftliche_Lieferungen.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Kraftfahrversicherung_Bruttopreise.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Miete.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_OEPNV.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Physiotherapeut.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Rabatte.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_RechnungsUebertragung.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Rechnungskorrektur.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Reisekostenabrechnung.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_SEPA_Prenotification.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/EN16931_Sachversicherung_berechneter_Steuersatz.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/XRECHNUNG_Betriebskostenabrechnung.ubl.xml",
"success": true,
"format": "xrechnung",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/XRECHNUNG_Einfach.ubl.xml",
"success": true,
"format": "xrechnung",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/XRECHNUNG_Elektron.ubl.xml",
"success": true,
"format": "xrechnung",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/XRECHNUNG_Reisekostenabrechnung.ubl.xml",
"success": true,
"format": "xrechnung",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/not_validating_full_invoice_based_onTest_EeISI_300_CENfullmodel.ubl.xml",
"success": true,
"format": "ubl",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/XML-Rechnung/UBL/ubl-tc434-creditnote1.xml",
"success": true,
"format": "ubl",
"error": null
}
]
},
"fx": {
"success": 0,
"fail": 0,
"details": []
},
"totalSuccessRate": 0.9272727272727272
}

View File

@ -1,753 +0,0 @@
{
"zugferdV1Correct": {
"success": 21,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/4s4u/additional-data-sample-1.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_BASIC_Einfach.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_BASIC_Rechnungskorrektur.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_COMFORT_Einfach.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_COMFORT_Haftpflichtversicherung_Versicherungssteuer.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_COMFORT_Kraftfahrversicherung_Bruttopreise.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_COMFORT_Rabatte.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_COMFORT_Rechnungskorrektur.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_COMFORT_SEPA_Prenotification.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_COMFORT_Sachversicherung_berechneter_Steuersatz.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_EXTENDED_Kostenrechnung.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_EXTENDED_Rechnungskorrektur.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Intarsys/ZUGFeRD_1p0_EXTENDED_Warenrechnung.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Konik/acme_invoice-42_ZUGFeRD.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Mustangproject/MustangGnuaccountingBeispielRE-20140519_499.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Mustangproject/MustangGnuaccountingBeispielRE-20140522_501.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Mustangproject/MustangGnuaccountingBeispielRE-20140703_502.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Mustangproject/MustangGnuaccountingBeispielRE-20150613_503.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Mustangproject/MustangGnuaccountingBeispielRE-20151008_504.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Mustangproject/MustangGnuaccountingBeispielRE-20151008_504new.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/correct/Mustangproject/MustangGnuaccountingBeispielRE-20170509_505.pdf",
"success": true,
"format": "zugferd",
"error": null
}
]
},
"zugferdV1Fail": {
"success": 3,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/fail/Mustangproject/fail1.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/fail/Mustangproject/fail2.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv1/fail/Mustangproject/fail3.pdf",
"success": true,
"format": "zugferd",
"error": null
}
]
},
"zugferdV2Correct": {
"success": 74,
"fail": 4,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Avoir_FR_type381_BASIC.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_DOM_BASICWL.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_DOM_MINIMUM.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_FR_BASICWL.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_FR_MINIMUM.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_UE_BASICWL.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/FNFE-factur-x-examples/Facture_UE_MINIMUM.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/Mustangproject/MustangGnuaccountingBeispielRE-20190610_507.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/Mustangproject/MustangGnuaccountingBeispielRE-20201121_508.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/Mustangproject/MustangGnuaccountingBeispielRE-20201121_508_withBOM.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/PHP_@gpFacturX/sample_inofficial_20190125_atgp_factur-x_v_1_0.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/BASIC/zugferd_2p0_BASIC_Einfach.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/BASIC/zugferd_2p0_BASIC_Rechnungskorrektur.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/BASIC/zugferd_2p0_BASIC_Taxifahrt.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_1_Teilrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_2_Teilrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_AbweichenderZahlungsempf.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Betriebskostenabrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Einfach.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Elektron.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_ElektronischeAdresse.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Gutschrift.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Haftpflichtversicherung_Versicherungssteuer.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Innergemeinschaftliche_Lieferungen.pdf",
"success": false,
"format": "xrechnung",
"error": "Wrong format detected: xrechnung"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Kraftfahrversicherung_Bruttopreise.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Miete.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_OEPNV.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Physiotherapeut.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Rabatte.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_RechnungsUebertragung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Rechnungskorrektur.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Reisekostenabrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_SEPA_Prenotification.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EN16931/zugferd_2p0_EN16931_Sachversicherung_berechneter_Steuersatz.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EXTENDED/zugferd_2p0_EXTENDED_Fremdwaehrung.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EXTENDED/zugferd_2p0_EXTENDED_InnergemeinschLieferungMehrereBestellungen.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EXTENDED/zugferd_2p0_EXTENDED_Kostenrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EXTENDED/zugferd_2p0_EXTENDED_Rechnungskorrektur.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/EXTENDED/zugferd_2p0_EXTENDED_Warenrechnung.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/intarsys/MINIMUM/zugferd_2p0_MINIMUM.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/BASIC/zugferd_2p1_BASIC_Einfach.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/BASIC/zugferd_2p1_BASIC_Rechnungskorrektur.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/BASIC/zugferd_2p1_BASIC_Taxifahrt.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/BASIC WL/zugferd_2p1_BASIC-WL_Buchungshilfe.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/BASIC WL/zugferd_2p1_BASIC-WL_Einfach.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_1_Teilrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_2_Teilrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_AbweichenderZahlungsempf.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Betriebskostenabrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Betriebskostenabrechnung_XRechnung_embedded.pdf",
"success": false,
"format": "xrechnung",
"error": "Wrong format detected: xrechnung"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Einfach.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Einfach_DueDate.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Einfach_negativePaymentDue.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Elektron.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Elektron_XRechnung.pdf",
"success": false,
"format": "xrechnung",
"error": "Wrong format detected: xrechnung"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Elektron_embedded.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_ElektronischeAdresse.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Gutschrift.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Haftpflichtversicherung_Versicherungssteuer.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Innergemeinschaftliche_Lieferungen.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Kraftfahrversicherung_Bruttopreise.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Miete.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_OEPNV.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Physiotherapeut.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Rabatte.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_RechnungsUebertragung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Rechnungskorrektur.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Reisekostenabrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Reisekostenabrechnung_XRechnung_embedded.pdf",
"success": false,
"format": "xrechnung",
"error": "Wrong format detected: xrechnung"
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_SEPA_Prenotification.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EN16931/zugferd_2p1_EN16931_Sachversicherung_berechneter_Steuersatz.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EXTENDED/zugferd_2p1_EXTENDED_Fremdwaehrung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EXTENDED/zugferd_2p1_EXTENDED_InnergemeinschLieferungMehrereBestellungen.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EXTENDED/zugferd_2p1_EXTENDED_Kostenrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EXTENDED/zugferd_2p1_EXTENDED_Rechnungskorrektur.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/EXTENDED/zugferd_2p1_EXTENDED_Warenrechnung.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/MINIMUM/zugferd_2p1_MINIMUM_Buchungshilfe.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/correct/symtrax/Beispiele/MINIMUM/zugferd_2p1_MINIMUM_Rechnung.pdf",
"success": true,
"format": "facturx",
"error": null
}
]
},
"zugferdV2Fail": {
"success": 19,
"fail": 0,
"details": [
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type380_BASIC.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type380_EN16931.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type380_MINIMUM.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type381_BASICWL.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type381_EN16931.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Avoir_FR_type381_MINIMUM.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Facture_DOM_BASIC.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Facture_DOM_EN16931.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Facture_FR_BASIC.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Facture_FR_EN16931.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Facture_UE_BASIC.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/FNFE-factur-x-examples/Facture_UE_EN16931.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/MustangRE-20171118_506_ZUGFeRD1and2.pdf",
"success": true,
"format": "zugferd",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/Mustangproject/MustangGnuaccountingBeispielRE-20171118_506.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/Mustangproject/MustangGnuaccountingBeispielRE-20190610_507a.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/Mustangproject/MustangGnuaccountingBeispielRE-20190610_507b.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/ZUGFeRD_2.0_fully_compliant_complete.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/ZUGFeRD_2_fully_compliant_complete.pdf",
"success": true,
"format": "facturx",
"error": null
},
{
"file": "/mnt/data/lossless/fin.cx/xinvoice/test/assets/corpus/ZUGFeRDv2/fail/python-factur-x/python-factur-x.pdf",
"success": true,
"format": "facturx",
"error": null
}
]
},
"totalCorrectSuccessRate": 0.9595959595959596
}

370
test/test-utils.ts Normal file
View File

@ -0,0 +1,370 @@
import * as path from 'path';
import { promises as fs } from 'fs';
import { EInvoice } from '../ts/einvoice.js';
import type { TInvoice } from '../ts/interfaces/common.js';
import { InvoiceFormat } from '../ts/interfaces/common.js';
import { business, finance } from '../ts/plugins.js';
/**
* Test utilities for EInvoice testing
*/
/**
* Test file categories based on the corpus
*/
export const TestFileCategories = {
CII_XMLRECHNUNG: 'test/assets/corpus/XML-Rechnung/CII',
UBL_XMLRECHNUNG: 'test/assets/corpus/XML-Rechnung/UBL',
ZUGFERD_V1_CORRECT: 'test/assets/corpus/ZUGFeRDv1/correct',
ZUGFERD_V1_FAIL: 'test/assets/corpus/ZUGFeRDv1/fail',
ZUGFERD_V2_CORRECT: 'test/assets/corpus/ZUGFeRDv2/correct',
ZUGFERD_V2_FAIL: 'test/assets/corpus/ZUGFeRDv2/fail',
PEPPOL: 'test/assets/corpus/PEPPOL/Valid/Qvalia',
FATTURAPA: 'test/assets/corpus/fatturaPA',
EN16931_UBL_INVOICE: 'test/assets/eInvoicing-EN16931/test/Invoice-unit-UBL',
EN16931_UBL_CREDITNOTE: 'test/assets/eInvoicing-EN16931/test/CreditNote-unit-UBL',
EN16931_EXAMPLES_CII: 'test/assets/eInvoicing-EN16931/cii/examples',
EN16931_EXAMPLES_UBL: 'test/assets/eInvoicing-EN16931/ubl/examples',
EN16931_EXAMPLES_EDIFACT: 'test/assets/eInvoicing-EN16931/edifact/examples'
} as const;
/**
* Test data factory for creating test invoices
*/
export class TestInvoiceFactory {
/**
* Creates a minimal valid test invoice
*/
static createMinimalInvoice(): Partial<TInvoice> {
return {
id: 'TEST-' + Date.now(),
invoiceId: 'INV-TEST-001',
invoiceType: 'debitnote',
type: 'invoice',
date: Date.now(),
status: 'draft',
subject: 'Test Invoice',
from: {
name: 'Test Seller Company',
type: 'company',
description: 'Test seller',
address: {
streetName: 'Test Street',
houseNumber: '1',
city: 'Test City',
country: 'Germany',
postalCode: '12345'
},
status: 'active',
foundedDate: { year: 2020, month: 1, day: 1 },
registrationDetails: {
vatId: 'DE123456789',
registrationId: 'HRB 12345',
registrationName: 'Test Registry'
}
},
to: {
name: 'Test Buyer Company',
type: 'company',
description: 'Test buyer',
address: {
streetName: 'Buyer Street',
houseNumber: '2',
city: 'Buyer City',
country: 'France',
postalCode: '75001'
},
status: 'active',
foundedDate: { year: 2019, month: 6, day: 15 },
registrationDetails: {
vatId: 'FR987654321',
registrationId: 'RCS 98765',
registrationName: 'French Registry'
}
},
items: [{
position: 1,
name: 'Test Product',
articleNumber: 'TEST-001',
unitType: 'EA',
unitQuantity: 1,
unitNetPrice: 100,
vatPercentage: 19
}],
currency: 'EUR',
language: 'en',
objectActions: [],
versionInfo: {
type: 'draft',
version: '1.0.0'
}
};
}
/**
* Creates a complex test invoice with multiple items and features
*/
static createComplexInvoice(): Partial<TInvoice> {
const baseInvoice = this.createMinimalInvoice();
return {
...baseInvoice,
items: [
{
position: 1,
name: 'Professional Service',
articleNumber: 'SERV-001',
unitType: 'HUR',
unitQuantity: 8,
unitNetPrice: 150,
vatPercentage: 19,
// description: 'Consulting services'
},
{
position: 2,
name: 'Software License',
articleNumber: 'SOFT-001',
unitType: 'EA',
unitQuantity: 5,
unitNetPrice: 200,
vatPercentage: 19,
// description: 'Annual software license'
},
{
position: 3,
name: 'Training',
articleNumber: 'TRAIN-001',
unitType: 'DAY',
unitQuantity: 2,
unitNetPrice: 800,
vatPercentage: 19,
// description: 'On-site training'
}
],
paymentOptions: {
description: 'Payment due within 30 days',
sepaConnection: {
iban: 'DE89370400440532013000',
bic: 'COBADEFFXXX'
},
payPal: { email: 'test@example.com' }
},
notes: [
'This is a test invoice for validation purposes',
'All amounts are in EUR'
],
periodOfPerformance: {
from: Date.now() - 30 * 24 * 60 * 60 * 1000, // 30 days ago
to: Date.now()
},
deliveryDate: Date.now(),
buyerReference: 'PO-2024-001',
dueInDays: 30,
reverseCharge: false
};
}
}
/**
* Test file helpers
*/
export class TestFileHelpers {
/**
* Gets all test files from a directory
*/
static async getTestFiles(directory: string, pattern: string = '*'): Promise<string[]> {
const basePath = path.join(process.cwd(), directory);
const files: string[] = [];
try {
const entries = await fs.readdir(basePath, { withFileTypes: true });
for (const entry of entries) {
if (entry.isFile()) {
const fileName = entry.name;
if (pattern === '*' || fileName.match(pattern.replace('*', '.*'))) {
files.push(path.join(directory, fileName));
}
}
}
} catch (error) {
console.error(`Error reading directory ${basePath}:`, error);
}
return files;
}
/**
* Loads a test file
*/
static async loadTestFile(filePath: string): Promise<Buffer> {
const fullPath = path.join(process.cwd(), filePath);
return fs.readFile(fullPath);
}
/**
* Gets corpus statistics
*/
static async getCorpusStats(): Promise<{
totalFiles: number;
byFormat: Record<string, number>;
byCategory: Record<string, number>;
}> {
const stats = {
totalFiles: 0,
byFormat: {} as Record<string, number>,
byCategory: {} as Record<string, number>
};
for (const [category, path] of Object.entries(TestFileCategories)) {
const files = await this.getTestFiles(path, '*.xml');
const pdfFiles = await this.getTestFiles(path, '*.pdf');
const totalCategoryFiles = files.length + pdfFiles.length;
stats.totalFiles += totalCategoryFiles;
stats.byCategory[category] = totalCategoryFiles;
}
return stats;
}
}
/**
* Test assertions for invoice validation
*/
export class InvoiceAssertions {
/**
* Asserts that an invoice has all required fields
*/
static assertRequiredFields(invoice: EInvoice): void {
const requiredFields = ['id', 'invoiceId', 'from', 'to', 'items', 'date'];
for (const field of requiredFields) {
if (!invoice[field as keyof EInvoice]) {
throw new Error(`Required field '${field}' is missing`);
}
}
// Check nested required fields
if (!invoice.from.name || !invoice.from.address) {
throw new Error('Seller information incomplete');
}
if (!invoice.to.name || !invoice.to.address) {
throw new Error('Buyer information incomplete');
}
if (!invoice.items || invoice.items.length === 0) {
throw new Error('Invoice must have at least one item');
}
}
/**
* Asserts that format detection works correctly
*/
static assertFormatDetection(
detectedFormat: InvoiceFormat,
expectedFormat: InvoiceFormat,
filePath: string
): void {
if (detectedFormat !== expectedFormat) {
throw new Error(
`Format detection failed for ${filePath}: expected ${expectedFormat}, got ${detectedFormat}`
);
}
}
/**
* Asserts validation results
*/
static assertValidationResult(
result: { valid: boolean; errors: any[] },
expectedValid: boolean,
filePath: string
): void {
if (result.valid !== expectedValid) {
const errorMessages = result.errors.map(e => e.message).join(', ');
throw new Error(
`Validation result mismatch for ${filePath}: expected ${expectedValid}, got ${result.valid}. Errors: ${errorMessages}`
);
}
}
}
/**
* Performance testing utilities
*/
export class PerformanceUtils {
private static measurements = new Map<string, number[]>();
/**
* Measures execution time of an async function
*/
static async measure<T>(
name: string,
fn: () => Promise<T>
): Promise<{ result: T; duration: number }> {
const start = performance.now();
const result = await fn();
const duration = performance.now() - start;
// Store measurement
if (!this.measurements.has(name)) {
this.measurements.set(name, []);
}
this.measurements.get(name)!.push(duration);
return { result, duration };
}
/**
* Gets performance statistics
*/
static getStats(name: string): {
count: number;
min: number;
max: number;
avg: number;
median: number;
} | null {
const measurements = this.measurements.get(name);
if (!measurements || measurements.length === 0) {
return null;
}
const sorted = [...measurements].sort((a, b) => a - b);
const sum = sorted.reduce((a, b) => a + b, 0);
return {
count: sorted.length,
min: sorted[0],
max: sorted[sorted.length - 1],
avg: sum / sorted.length,
median: sorted[Math.floor(sorted.length / 2)]
};
}
/**
* Clears all measurements
*/
static clear(): void {
this.measurements.clear();
}
/**
* Generates a performance report
*/
static generateReport(): string {
let report = 'Performance Report\n==================\n\n';
for (const [name] of this.measurements) {
const stats = this.getStats(name);
if (stats) {
report += `${name}:\n`;
report += ` Executions: ${stats.count}\n`;
report += ` Min: ${stats.min.toFixed(2)}ms\n`;
report += ` Max: ${stats.max.toFixed(2)}ms\n`;
report += ` Avg: ${stats.avg.toFixed(2)}ms\n`;
report += ` Median: ${stats.median.toFixed(2)}ms\n\n`;
}
}
return report;
}
}

View File

@ -1,11 +1,11 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { InvoiceFormat } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
// Test circular export/import of corpus files
tap.test('XInvoice should maintain data integrity through export/import cycle', async () => {
tap.test('EInvoice should maintain data integrity through export/import cycle', async () => {
// Get a subset of files for circular testing
const ciiFiles = await findFiles(path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/CII'), '.xml', 3);
const ublFiles = await findFiles(path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/UBL'), '.xml', 3);
@ -66,20 +66,20 @@ async function testCircular(files: string[], exportFormat: string): Promise<{ su
// Read the file
const xmlContent = await fs.readFile(file, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Export to XML
const exportedXml = await xinvoice.exportXml(exportFormat as any);
const exportedXml = await einvoice.exportXml(exportFormat as any);
// Create a new XInvoice from the exported XML
const reimportedXInvoice = await XInvoice.fromXml(exportedXml);
// Create a new EInvoice from the exported XML
const reimportedEInvoice = await EInvoice.fromXml(exportedXml);
// Check that key properties match
const keysMatch =
reimportedXInvoice.from.name === xinvoice.from.name &&
reimportedXInvoice.to.name === xinvoice.to.name &&
reimportedXInvoice.items.length === xinvoice.items.length;
reimportedEInvoice.from.name === einvoice.from.name &&
reimportedEInvoice.to.name === einvoice.to.name &&
reimportedEInvoice.items.length === einvoice.items.length;
if (keysMatch) {
// Success

409
test/test.conversion.ts Normal file
View File

@ -0,0 +1,409 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { EInvoice, EInvoiceFormatError } from '../ts/index.js';
import { InvoiceFormat } from '../ts/interfaces/common.js';
import { TestFileHelpers, TestFileCategories, PerformanceUtils, TestInvoiceFactory } from './test-utils.js';
import * as path from 'path';
/**
* Cross-format conversion test suite
*/
// Test conversion between CII and UBL using paired files
tap.test('Conversion - CII to UBL using XML-Rechnung pairs', async () => {
// Get matching CII and UBL files
const ciiFiles = await TestFileHelpers.getTestFiles(TestFileCategories.CII_XMLRECHNUNG, '*.xml');
const ublFiles = await TestFileHelpers.getTestFiles(TestFileCategories.UBL_XMLRECHNUNG, '*.xml');
// Find paired files (same base name)
const pairs: Array<{cii: string, ubl: string, name: string}> = [];
for (const ciiFile of ciiFiles) {
const baseName = path.basename(ciiFile).replace('.cii.xml', '');
const matchingUbl = ublFiles.find(ubl =>
path.basename(ubl).startsWith(baseName) && ubl.endsWith('.ubl.xml')
);
if (matchingUbl) {
pairs.push({ cii: ciiFile, ubl: matchingUbl, name: baseName });
}
}
console.log(`Found ${pairs.length} CII/UBL pairs for conversion testing`);
let successCount = 0;
const conversionIssues: string[] = [];
for (const pair of pairs.slice(0, 5)) { // Test first 5 pairs
try {
// Load CII invoice
const ciiBuffer = await TestFileHelpers.loadTestFile(pair.cii);
const ciiInvoice = await EInvoice.fromXml(ciiBuffer.toString('utf-8'));
// Convert to UBL
const { result: ublXml, duration } = await PerformanceUtils.measure(
'cii-to-ubl',
async () => ciiInvoice.exportXml('ubl')
);
expect(ublXml).toBeTruthy();
expect(ublXml).toInclude('xmlns:cbc=');
expect(ublXml).toInclude('xmlns:cac=');
// Load the converted UBL back
const convertedInvoice = await EInvoice.fromXml(ublXml);
// Verify key fields are preserved
verifyFieldMapping(ciiInvoice, convertedInvoice, pair.name);
successCount++;
console.log(`${pair.name}: CII→UBL conversion successful (${duration.toFixed(2)}ms)`);
} catch (error) {
const issue = `${pair.name}: ${error.message}`;
conversionIssues.push(issue);
console.log(`${issue}`);
}
}
console.log(`\nConversion Summary: ${successCount}/${pairs.length} successful`);
if (conversionIssues.length > 0) {
console.log('Issues:', conversionIssues);
}
});
// Test conversion from UBL to CII
tap.test('Conversion - UBL to CII reverse conversion', async () => {
const ublFiles = await TestFileHelpers.getTestFiles(TestFileCategories.UBL_XMLRECHNUNG, '*.xml');
console.log(`Testing UBL to CII conversion with ${ublFiles.length} files`);
for (const file of ublFiles.slice(0, 3)) {
const fileName = path.basename(file);
try {
const ublBuffer = await TestFileHelpers.loadTestFile(file);
const ublInvoice = await EInvoice.fromXml(ublBuffer.toString('utf-8'));
// Skip if detected as XRechnung (might have special requirements)
if (ublInvoice.getFormat() === InvoiceFormat.XRECHNUNG) {
console.log(`${fileName}: Skipping XRechnung-specific file`);
continue;
}
// Convert to CII (Factur-X)
const ciiXml = await ublInvoice.exportXml('facturx');
expect(ciiXml).toBeTruthy();
expect(ciiXml).toInclude('CrossIndustryInvoice');
expect(ciiXml).toInclude('ExchangedDocument');
// Verify round-trip
const ciiInvoice = await EInvoice.fromXml(ciiXml);
expect(ciiInvoice.invoiceId).toEqual(ublInvoice.invoiceId);
console.log(`${fileName}: UBL→CII conversion successful`);
} catch (error) {
if (error instanceof EInvoiceFormatError) {
console.log(`${fileName}: Format error - ${error.message}`);
if (error.unsupportedFeatures) {
console.log(` Unsupported features: ${error.unsupportedFeatures.join(', ')}`);
}
} else {
console.log(`${fileName}: ${error.message}`);
}
}
}
});
// Test ZUGFeRD to XRechnung conversion
tap.test('Conversion - ZUGFeRD to XRechnung format', async () => {
const zugferdPdfs = await TestFileHelpers.getTestFiles(TestFileCategories.ZUGFERD_V2_CORRECT, '*.pdf');
let tested = 0;
for (const file of zugferdPdfs.slice(0, 3)) {
const fileName = path.basename(file);
try {
// Extract from PDF
const pdfBuffer = await TestFileHelpers.loadTestFile(file);
const zugferdInvoice = await EInvoice.fromPdf(pdfBuffer);
// Convert to XRechnung
const xrechnungXml = await zugferdInvoice.exportXml('xrechnung');
expect(xrechnungXml).toBeTruthy();
// XRechnung should be UBL format with specific extensions
if (xrechnungXml.includes('Invoice xmlns')) {
expect(xrechnungXml).toInclude('CustomizationID');
expect(xrechnungXml).toInclude('urn:cen.eu:en16931');
}
tested++;
console.log(`${fileName}: ZUGFeRD→XRechnung conversion successful`);
} catch (error) {
console.log(`${fileName}: Conversion not available - ${error.message}`);
}
}
if (tested === 0) {
console.log('Note: ZUGFeRD to XRechnung conversion may need implementation');
}
});
// Test data loss detection during conversion
tap.test('Conversion - Data loss detection and reporting', async () => {
// Create a complex invoice with all possible fields
const complexInvoice = new EInvoice();
Object.assign(complexInvoice, TestInvoiceFactory.createComplexInvoice());
// Add format-specific fields
complexInvoice.buyerReference = 'PO-2024-12345';
complexInvoice.electronicAddress = {
scheme: '0088',
value: '1234567890123'
};
complexInvoice.notes = [
'Special handling required',
'Express delivery requested',
'Contact buyer before delivery'
];
// Generate source XML
const sourceXml = await complexInvoice.exportXml('facturx');
await complexInvoice.loadXml(sourceXml);
// Test conversions and check for data loss
const formats: Array<{from: string, to: string}> = [
{ from: 'facturx', to: 'ubl' },
{ from: 'facturx', to: 'xrechnung' },
{ from: 'facturx', to: 'zugferd' }
];
for (const conversion of formats) {
console.log(`\nTesting ${conversion.from}${conversion.to} conversion:`);
try {
const convertedXml = await complexInvoice.exportXml(conversion.to as any);
const convertedInvoice = await EInvoice.fromXml(convertedXml);
// Check for data preservation
const issues = checkDataPreservation(complexInvoice, convertedInvoice);
if (issues.length === 0) {
console.log(`✓ All data preserved in ${conversion.to} format`);
} else {
console.log(`⚠ Data loss detected in ${conversion.to} format:`);
issues.forEach(issue => console.log(` - ${issue}`));
}
} catch (error) {
console.log(`✗ Conversion failed: ${error.message}`);
}
}
});
// Test edge cases in conversion
tap.test('Conversion - Edge cases and special characters', async () => {
const edgeCaseInvoice = new EInvoice();
Object.assign(edgeCaseInvoice, TestInvoiceFactory.createMinimalInvoice());
// Add edge case data
edgeCaseInvoice.from.name = 'Müller & Söhne GmbH & Co. KG';
edgeCaseInvoice.to.name = 'L\'Entreprise Française S.à.r.l.';
edgeCaseInvoice.items[0].name = 'Product with "quotes" and <tags>';
edgeCaseInvoice.notes = ['Note with € symbol', 'Japanese: こんにちは'];
// Test conversion with special characters
const formats = ['facturx', 'ubl', 'xrechnung'] as const;
for (const format of formats) {
try {
const xml = await edgeCaseInvoice.exportXml(format);
// Verify special characters are properly encoded
expect(xml).toInclude('Müller');
expect(xml).toInclude('Française');
expect(xml).toContain('&quot;'); // Encoded quotes
expect(xml).toContain('&lt;'); // Encoded less-than
// Verify it can be parsed back
const parsed = await EInvoice.fromXml(xml);
expect(parsed.from.name).toEqual('Müller & Söhne GmbH & Co. KG');
console.log(`${format}: Special characters handled correctly`);
} catch (error) {
console.log(`${format}: Failed with special characters - ${error.message}`);
}
}
});
// Test batch conversion performance
tap.test('Conversion - Batch conversion performance', async () => {
const files = await TestFileHelpers.getTestFiles(TestFileCategories.UBL_XMLRECHNUNG, '*.xml');
const batchSize = Math.min(10, files.length);
console.log(`Testing batch conversion of ${batchSize} files`);
const startTime = performance.now();
const results = await Promise.all(
files.slice(0, batchSize).map(async (file) => {
try {
const buffer = await TestFileHelpers.loadTestFile(file);
const invoice = await EInvoice.fromXml(buffer.toString('utf-8'));
const converted = await invoice.exportXml('facturx');
return { success: true, size: converted.length };
} catch (error) {
return { success: false, error: error.message };
}
})
);
const duration = performance.now() - startTime;
const successCount = results.filter(r => r.success).length;
console.log(`✓ Batch conversion completed in ${duration.toFixed(2)}ms`);
console.log(` Success rate: ${successCount}/${batchSize}`);
console.log(` Average time per conversion: ${(duration / batchSize).toFixed(2)}ms`);
expect(duration / batchSize).toBeLessThan(500); // Should be under 500ms per conversion
});
// Test format-specific extensions preservation
tap.test('Conversion - Format-specific extensions', async () => {
// This tests that format-specific extensions don't break conversion
const extensionTests = [
{
name: 'XRechnung BuyerReference',
xml: `<?xml version="1.0"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
<CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:xrechnung:cius:2.0</CustomizationID>
<ID>123</ID>
<BuyerReference>04011000-12345-03</BuyerReference>
</Invoice>`
}
];
for (const test of extensionTests) {
try {
const invoice = await EInvoice.fromXml(test.xml);
// Convert to CII
const ciiXml = await invoice.exportXml('facturx');
expect(ciiXml).toBeTruthy();
// Convert back to UBL
const ciiInvoice = await EInvoice.fromXml(ciiXml);
const ublXml = await ciiInvoice.exportXml('ubl');
// Check if buyer reference survived
if (invoice.buyerReference) {
expect(ublXml).toInclude(invoice.buyerReference);
}
console.log(`${test.name}: Extension preserved through conversion`);
} catch (error) {
console.log(`${test.name}: ${error.message}`);
}
}
});
// Test conversion error handling
tap.test('Conversion - Error handling and recovery', async () => {
// Test with minimal invalid invoice
const invalidInvoice = new EInvoice();
invalidInvoice.id = 'TEST-INVALID';
// Missing required fields like from, to, items
try {
await invalidInvoice.exportXml('facturx');
expect.fail('Should have thrown an error for invalid invoice');
} catch (error) {
console.log(`✓ Invalid invoice error caught: ${error.message}`);
if (error instanceof EInvoiceFormatError) {
console.log(` Compatibility report:\n${error.getCompatibilityReport()}`);
}
}
});
// Performance summary for conversions
tap.test('Conversion - Performance Summary', async () => {
const conversionStats = PerformanceUtils.getStats('cii-to-ubl');
if (conversionStats) {
console.log('\nConversion Performance:');
console.log(`CII to UBL conversions: ${conversionStats.count}`);
console.log(`Average time: ${conversionStats.avg.toFixed(2)}ms`);
console.log(`Min/Max: ${conversionStats.min.toFixed(2)}ms / ${conversionStats.max.toFixed(2)}ms`);
// Conversions should be reasonably fast
expect(conversionStats.avg).toBeLessThan(100);
}
});
// Helper function to verify field mapping
function verifyFieldMapping(source: EInvoice, converted: EInvoice, testName: string): void {
const criticalFields = [
{ field: 'invoiceId', name: 'Invoice ID' },
{ field: 'date', name: 'Invoice Date' },
{ field: 'currency', name: 'Currency' }
];
for (const check of criticalFields) {
const sourceVal = source[check.field as keyof EInvoice];
const convertedVal = converted[check.field as keyof EInvoice];
if (sourceVal !== convertedVal) {
console.log(`${check.name} mismatch: ${sourceVal}${convertedVal}`);
}
}
// Check seller/buyer
if (source.from.name !== converted.from.name) {
console.log(` ⚠ Seller name mismatch: ${source.from.name}${converted.from.name}`);
}
if (source.to.name !== converted.to.name) {
console.log(` ⚠ Buyer name mismatch: ${source.to.name}${converted.to.name}`);
}
// Check items count
if (source.items.length !== converted.items.length) {
console.log(` ⚠ Items count mismatch: ${source.items.length}${converted.items.length}`);
}
}
// Helper function to check data preservation
function checkDataPreservation(source: EInvoice, converted: EInvoice): string[] {
const issues: string[] = [];
// Check basic fields
if (source.invoiceId !== converted.invoiceId) {
issues.push(`Invoice ID changed: ${source.invoiceId}${converted.invoiceId}`);
}
if (source.buyerReference && source.buyerReference !== converted.buyerReference) {
issues.push(`Buyer reference lost or changed`);
}
if (source.notes && source.notes.length !== converted.notes?.length) {
issues.push(`Notes count changed: ${source.notes.length}${converted.notes?.length || 0}`);
}
if (source.electronicAddress && !converted.electronicAddress) {
issues.push(`Electronic address lost`);
}
// Check payment details
if (source.paymentOptions?.sepaConnection?.iban !== converted.paymentOptions?.sepaConnection?.iban) {
issues.push(`IBAN changed or lost`);
}
return issues;
}
tap.start();

View File

@ -13,7 +13,7 @@ tap.test('Run all corpus tests', async () => {
// Generate a summary report from existing results
try {
// Create a simple summary
const summary = `# XInvoice Corpus Testing Summary
const summary = `# EInvoice Corpus Testing Summary
Generated on: ${new Date().toISOString()}

View File

@ -1,11 +1,11 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { ValidationLevel } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
// Test for XInvoice class functionality
tap.test('XInvoice should load XML correctly', async () => {
// Test for EInvoice class functionality
tap.test('EInvoice should load XML correctly', async () => {
// Create a sample XML string
const sampleXml = `<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100"
@ -68,16 +68,16 @@ tap.test('XInvoice should load XML correctly', async () => {
const xmlPath = path.join(testDir, 'sample-invoice.xml');
await fs.writeFile(xmlPath, sampleXml);
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(sampleXml);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(sampleXml);
// Check that the XInvoice instance has the expected properties
expect(xinvoice.id).toEqual('INV-2023-001');
expect(xinvoice.from.name).toEqual('Supplier Company');
expect(xinvoice.to.name).toEqual('Customer Company');
// Check that the EInvoice instance has the expected properties
expect(einvoice.id).toEqual('INV-2023-001');
expect(einvoice.from.name).toEqual('Supplier Company');
expect(einvoice.to.name).toEqual('Customer Company');
});
tap.test('XInvoice should export XML correctly', async () => {
tap.test('EInvoice should export XML correctly', async () => {
// Create a sample XML string
const sampleXml = `<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100"
@ -134,11 +134,11 @@ tap.test('XInvoice should export XML correctly', async () => {
</rsm:SupplyChainTradeTransaction>
</rsm:CrossIndustryInvoice>`;
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(sampleXml);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(sampleXml);
// Export XML
const exportedXml = await xinvoice.exportXml('facturx');
const exportedXml = await einvoice.exportXml('facturx');
// Check that the exported XML contains expected elements
expect(exportedXml).toInclude('CrossIndustryInvoice');

View File

@ -1,31 +1,31 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { ValidationLevel } from '../ts/interfaces/common.js';
import type { ExportFormat } from '../ts/interfaces/common.js';
// Basic XInvoice tests
tap.test('XInvoice should have the correct default properties', async () => {
const xinvoice = new XInvoice();
// Basic EInvoice tests
tap.test('EInvoice should have the correct default properties', async () => {
const einvoice = new EInvoice();
expect(xinvoice.type).toEqual('invoice');
expect(xinvoice.invoiceType).toEqual('debitnote');
expect(xinvoice.status).toEqual('invoice');
expect(xinvoice.from).toBeTruthy();
expect(xinvoice.to).toBeTruthy();
expect(xinvoice.items).toBeArray();
expect(xinvoice.currency).toEqual('EUR');
expect(einvoice.type).toEqual('invoice');
expect(einvoice.invoiceType).toEqual('debitnote');
expect(einvoice.status).toEqual('invoice');
expect(einvoice.from).toBeTruthy();
expect(einvoice.to).toBeTruthy();
expect(einvoice.items).toBeArray();
expect(einvoice.currency).toEqual('EUR');
});
// Test XML export functionality
tap.test('XInvoice should export XML in the correct format', async () => {
const xinvoice = new XInvoice();
xinvoice.id = 'TEST-XML-EXPORT';
xinvoice.invoiceId = 'TEST-XML-EXPORT';
xinvoice.from.name = 'Test Seller';
xinvoice.to.name = 'Test Buyer';
tap.test('EInvoice should export XML in the correct format', async () => {
const einvoice = new EInvoice();
einvoice.id = 'TEST-XML-EXPORT';
einvoice.invoiceId = 'TEST-XML-EXPORT';
einvoice.from.name = 'Test Seller';
einvoice.to.name = 'Test Buyer';
// Add an item
xinvoice.items.push({
einvoice.items.push({
position: 1,
name: 'Test Product',
articleNumber: 'TP-001',
@ -36,7 +36,7 @@ tap.test('XInvoice should export XML in the correct format', async () => {
});
// Export as Factur-X
const xml = await xinvoice.exportXml('facturx');
const xml = await einvoice.exportXml('facturx');
// Check that the XML contains the expected elements
expect(xml).toInclude('CrossIndustryInvoice');
@ -47,7 +47,7 @@ tap.test('XInvoice should export XML in the correct format', async () => {
});
// Test XML loading functionality
tap.test('XInvoice should load XML correctly', async () => {
tap.test('EInvoice should load XML correctly', async () => {
// Create a sample XML string
const sampleXml = `<?xml version="1.0" encoding="UTF-8"?>
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100"
@ -94,20 +94,20 @@ tap.test('XInvoice should load XML correctly', async () => {
</rsm:SupplyChainTradeTransaction>
</rsm:CrossIndustryInvoice>`;
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(sampleXml);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(sampleXml);
// Check that the XInvoice instance has the expected properties
expect(xinvoice.id).toEqual('TEST-XML-LOAD');
expect(xinvoice.from.name).toEqual('XML Seller');
expect(xinvoice.to.name).toEqual('XML Buyer');
expect(xinvoice.currency).toEqual('EUR');
// Check that the EInvoice instance has the expected properties
expect(einvoice.id).toEqual('TEST-XML-LOAD');
expect(einvoice.from.name).toEqual('XML Seller');
expect(einvoice.to.name).toEqual('XML Buyer');
expect(einvoice.currency).toEqual('EUR');
});
// Test circular encoding/decoding
tap.test('XInvoice should maintain data integrity through export/import cycle', async () => {
tap.test('EInvoice should maintain data integrity through export/import cycle', async () => {
// Create a sample invoice
const originalInvoice = new XInvoice();
const originalInvoice = new EInvoice();
originalInvoice.id = 'TEST-CIRCULAR';
originalInvoice.invoiceId = 'TEST-CIRCULAR';
originalInvoice.from.name = 'Circular Seller';
@ -127,8 +127,8 @@ tap.test('XInvoice should maintain data integrity through export/import cycle',
// Export as Factur-X
const xml = await originalInvoice.exportXml('facturx');
// Create a new XInvoice from the XML
const importedInvoice = await XInvoice.fromXml(xml);
// Create a new EInvoice from the XML
const importedInvoice = await EInvoice.fromXml(xml);
// Check that key properties match
expect(importedInvoice.id).toEqual(originalInvoice.id);
@ -143,21 +143,21 @@ tap.test('XInvoice should maintain data integrity through export/import cycle',
});
// Test validation
tap.test('XInvoice should validate XML correctly', async () => {
const xinvoice = new XInvoice();
xinvoice.id = 'TEST-VALIDATION';
xinvoice.invoiceId = 'TEST-VALIDATION';
xinvoice.from.name = 'Validation Seller';
xinvoice.to.name = 'Validation Buyer';
tap.test('EInvoice should validate XML correctly', async () => {
const einvoice = new EInvoice();
einvoice.id = 'TEST-VALIDATION';
einvoice.invoiceId = 'TEST-VALIDATION';
einvoice.from.name = 'Validation Seller';
einvoice.to.name = 'Validation Buyer';
// Export as Factur-X
const xml = await xinvoice.exportXml('facturx');
const xml = await einvoice.exportXml('facturx');
// Set the XML string for validation
xinvoice['xmlString'] = xml;
einvoice['xmlString'] = xml;
// Validate the XML
const result = await xinvoice.validate(ValidationLevel.SYNTAX);
const result = await einvoice.validate(ValidationLevel.SYNTAX);
// Check that validation passed
expect(result.valid).toBeTrue();

394
test/test.error-handling.ts Normal file
View File

@ -0,0 +1,394 @@
import { tap, expect } from '@push.rocks/tapbundle';
import {
EInvoice,
EInvoiceError,
EInvoiceParsingError,
EInvoiceValidationError,
EInvoicePDFError,
EInvoiceFormatError,
ErrorRecovery,
ErrorContext
} from '../ts/index.js';
import { ValidationLevel } from '../ts/interfaces/common.js';
import { TestFileHelpers, TestFileCategories } from './test-utils.js';
import * as path from 'path';
/**
* Error handling and recovery test suite
*/
// Test EInvoiceParsingError functionality
tap.test('Error Handling - Parsing errors with location info', async () => {
const malformedXml = `<?xml version="1.0"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
<ID>123</ID>
<IssueDate>2024-01-01
<InvoiceLine>
<ID>1</ID>
</InvoiceLine>
</Invoice>`;
try {
await EInvoice.fromXml(malformedXml);
expect.fail('Should have thrown a parsing error');
} catch (error) {
expect(error).toBeInstanceOf(EInvoiceParsingError);
if (error instanceof EInvoiceParsingError) {
console.log('✓ Parsing error caught correctly');
console.log(` Message: ${error.message}`);
console.log(` Code: ${error.code}`);
console.log(` Detailed: ${error.getDetailedMessage()}`);
// Check error properties
expect(error.code).toEqual('PARSE_ERROR');
expect(error.name).toEqual('EInvoiceParsingError');
expect(error.details).toBeTruthy();
}
}
});
// Test XML recovery mechanisms
tap.test('Error Handling - XML recovery for common issues', async () => {
// Test 1: XML with BOM
const xmlWithBOM = '\ufeff<?xml version="1.0"?><Invoice><ID>123</ID></Invoice>';
const bomError = new EInvoiceParsingError('BOM detected', { xmlSnippet: xmlWithBOM.substring(0, 50) });
const bomRecovery = await ErrorRecovery.attemptXMLRecovery(xmlWithBOM, bomError);
expect(bomRecovery.success).toBeTruthy();
expect(bomRecovery.cleanedXml).toBeTruthy();
expect(bomRecovery.cleanedXml!.charCodeAt(0)).not.toEqual(0xFEFF);
console.log('✓ BOM removal recovery successful');
// Test 2: Unescaped ampersands
const xmlWithAmpersand = '<?xml version="1.0"?><Invoice><Name>Smith & Jones Ltd</Name></Invoice>';
const ampError = new EInvoiceParsingError('Unescaped ampersand', {});
const ampRecovery = await ErrorRecovery.attemptXMLRecovery(xmlWithAmpersand, ampError);
expect(ampRecovery.success).toBeTruthy();
if (ampRecovery.cleanedXml) {
expect(ampRecovery.cleanedXml).toInclude('&amp;');
console.log('✓ Ampersand escaping recovery successful');
}
});
// Test validation error handling
tap.test('Error Handling - Validation errors with detailed reports', async () => {
const invoice = new EInvoice();
try {
await invoice.validate(ValidationLevel.BUSINESS);
expect.fail('Should have thrown validation error for empty invoice');
} catch (error) {
expect(error).toBeInstanceOf(EInvoiceValidationError);
if (error instanceof EInvoiceValidationError) {
console.log('✓ Validation error caught');
console.log('Validation Report:');
console.log(error.getValidationReport());
// Check error filtering
const errors = error.getErrorsBySeverity('error');
expect(errors.length).toBeGreaterThan(0);
const warnings = error.getErrorsBySeverity('warning');
console.log(` Errors: ${errors.length}, Warnings: ${warnings.length}`);
}
}
});
// Test PDF error handling
tap.test('Error Handling - PDF operation errors', async () => {
// Test extraction error
const extractError = new EInvoicePDFError(
'No XML found in PDF',
'extract',
{
pdfInfo: {
filename: 'test.pdf',
size: 1024 * 1024,
pageCount: 10
}
}
);
console.log('PDF Extraction Error:');
console.log(` Message: ${extractError.message}`);
console.log(` Operation: ${extractError.operation}`);
console.log(' Recovery suggestions:');
extractError.getRecoverySuggestions().forEach(s => console.log(` - ${s}`));
expect(extractError.code).toEqual('PDF_EXTRACT_ERROR');
expect(extractError.getRecoverySuggestions().length).toBeGreaterThan(0);
// Test embed error
const embedError = new EInvoicePDFError(
'Failed to embed XML',
'embed',
{ xmlLength: 50000 }
);
expect(embedError.code).toEqual('PDF_EMBED_ERROR');
expect(embedError.getRecoverySuggestions()).toContain('Try with a smaller XML payload');
});
// Test format errors
tap.test('Error Handling - Format conversion errors', async () => {
const formatError = new EInvoiceFormatError(
'Cannot convert invoice: incompatible fields',
{
sourceFormat: 'fatturapa',
targetFormat: 'xrechnung',
unsupportedFeatures: [
'Italian-specific tax codes',
'PEC electronic address format',
'Bollo virtuale'
]
}
);
console.log('Format Conversion Error:');
console.log(formatError.getCompatibilityReport());
expect(formatError.sourceFormat).toEqual('fatturapa');
expect(formatError.targetFormat).toEqual('xrechnung');
expect(formatError.unsupportedFeatures?.length).toEqual(3);
});
// Test error context builder
tap.test('Error Handling - Error context enrichment', async () => {
const context = new ErrorContext()
.add('operation', 'invoice_validation')
.add('invoiceId', 'INV-2024-001')
.add('format', 'facturx')
.addTimestamp()
.addEnvironment()
.build();
expect(context.operation).toEqual('invoice_validation');
expect(context.invoiceId).toEqual('INV-2024-001');
expect(context.timestamp).toBeTruthy();
expect(context.environment).toBeTruthy();
expect(context.environment.nodeVersion).toBeTruthy();
console.log('✓ Error context built successfully');
console.log(` Context keys: ${Object.keys(context).join(', ')}`);
});
// Test error propagation through the stack
tap.test('Error Handling - Error propagation and chaining', async () => {
// Create a chain of errors
const rootCause = new Error('Database connection failed');
const serviceError = new EInvoiceError(
'Failed to load invoice template',
'TEMPLATE_ERROR',
{ templateId: 'facturx-v2' },
rootCause
);
const userError = new EInvoicePDFError(
'Cannot generate PDF invoice',
'create',
{ invoiceId: 'INV-001' },
serviceError
);
console.log('Error Chain:');
console.log(` User sees: ${userError.message}`);
console.log(` Caused by: ${userError.cause?.message}`);
console.log(` Root cause: ${(userError.cause as EInvoiceError)?.cause?.message}`);
expect(userError.cause).toBeTruthy();
expect((userError.cause as EInvoiceError).cause).toBeTruthy();
});
// Test recovery from real corpus errors
tap.test('Error Handling - Recovery from corpus parsing errors', async () => {
// Try to load files that might have issues
const problematicFiles = [
'test/assets/corpus/other/eicar.cii.xml',
'test/assets/corpus/other/eicar.ubl.xml'
];
for (const filePath of problematicFiles) {
try {
const fileBuffer = await TestFileHelpers.loadTestFile(filePath);
const xmlString = fileBuffer.toString('utf-8');
const invoice = await EInvoice.fromXml(xmlString);
console.log(`${path.basename(filePath)}: Loaded successfully (no error to handle)`);
} catch (error) {
if (error instanceof EInvoiceParsingError) {
console.log(`${path.basename(filePath)}: Parsing error handled`);
// Attempt recovery
const recovery = await ErrorRecovery.attemptXMLRecovery(
error.details?.xmlString || '',
error
);
if (recovery.success) {
console.log(` Recovery: ${recovery.message}`);
}
} else {
console.log(`${path.basename(filePath)}: Error handled - ${error.message}`);
}
}
}
});
// Test concurrent error scenarios
tap.test('Error Handling - Concurrent error handling', async () => {
const errorScenarios = [
async () => {
throw new EInvoiceParsingError('Scenario 1: Invalid XML', { line: 10, column: 5 });
},
async () => {
throw new EInvoiceValidationError('Scenario 2: Validation failed', [
{ code: 'BR-01', message: 'Invoice number required' }
]);
},
async () => {
throw new EInvoicePDFError('Scenario 3: PDF corrupted', 'extract');
},
async () => {
throw new EInvoiceFormatError('Scenario 4: Format unsupported', {
sourceFormat: 'custom',
targetFormat: 'xrechnung'
});
}
];
const results = await Promise.allSettled(errorScenarios.map(fn => fn()));
let errorTypeCounts: Record<string, number> = {};
results.forEach((result, index) => {
if (result.status === 'rejected') {
const errorType = result.reason.constructor.name;
errorTypeCounts[errorType] = (errorTypeCounts[errorType] || 0) + 1;
console.log(`✓ Scenario ${index + 1}: ${errorType} handled`);
}
});
expect(Object.keys(errorTypeCounts).length).toEqual(4);
console.log('\nError type distribution:', errorTypeCounts);
});
// Test error serialization for logging
tap.test('Error Handling - Error serialization', async () => {
const error = new EInvoiceValidationError(
'Multiple validation failures',
[
{ code: 'BR-01', message: 'Invoice number missing', location: '/Invoice/ID' },
{ code: 'BR-05', message: 'Invalid date format', location: '/Invoice/IssueDate' },
{ code: 'BR-CL-01', message: 'Invalid currency code', location: '/Invoice/DocumentCurrencyCode' }
],
{ invoiceId: 'TEST-001', validationLevel: 'BUSINESS' }
);
// Test JSON serialization
const serialized = JSON.stringify({
name: error.name,
message: error.message,
code: error.code,
validationErrors: error.validationErrors,
details: error.details
}, null, 2);
const parsed = JSON.parse(serialized);
expect(parsed.name).toEqual('EInvoiceValidationError');
expect(parsed.code).toEqual('VALIDATION_ERROR');
expect(parsed.validationErrors.length).toEqual(3);
console.log('✓ Error serializes correctly for logging');
console.log('Serialized error sample:');
console.log(serialized.substring(0, 200) + '...');
});
// Test error recovery strategies
tap.test('Error Handling - Recovery strategy selection', async () => {
// Simulate different error scenarios and recovery strategies
const scenarios = [
{
name: 'Missing closing tag',
xml: '<?xml version="1.0"?><Invoice><ID>123</ID>',
expectedRecovery: false // Hard to recover automatically
},
{
name: 'Extra whitespace',
xml: '<?xml version="1.0"?> \n\n <Invoice><ID>123</ID></Invoice>',
expectedRecovery: true
},
{
name: 'Wrong encoding declaration',
xml: '<?xml version="1.0" encoding="UTF-16"?><Invoice><ID>123</ID></Invoice>',
expectedRecovery: true
}
];
for (const scenario of scenarios) {
try {
await EInvoice.fromXml(scenario.xml);
console.log(`${scenario.name}: No error occurred`);
} catch (error) {
if (error instanceof EInvoiceParsingError) {
const recovery = await ErrorRecovery.attemptXMLRecovery(scenario.xml, error);
const result = recovery.success ? '✓' : '✗';
console.log(`${result} ${scenario.name}: Recovery ${recovery.success ? 'succeeded' : 'failed'}`);
if (scenario.expectedRecovery !== recovery.success) {
console.log(` Note: Expected recovery=${scenario.expectedRecovery}, got=${recovery.success}`);
}
}
}
}
});
// Test error metrics collection
tap.test('Error Handling - Error metrics and patterns', async () => {
const errorMetrics = {
total: 0,
byType: {} as Record<string, number>,
byCode: {} as Record<string, number>,
recoveryAttempts: 0,
recoverySuccesses: 0
};
// Simulate processing multiple files
const testFiles = await TestFileHelpers.getTestFiles(TestFileCategories.EN16931_UBL_INVOICE, 'BR-*.xml');
for (const file of testFiles.slice(0, 10)) {
try {
const buffer = await TestFileHelpers.loadTestFile(file);
const invoice = await EInvoice.fromXml(buffer.toString('utf-8'));
await invoice.validate(ValidationLevel.BUSINESS);
} catch (error) {
errorMetrics.total++;
if (error instanceof EInvoiceError) {
const type = error.constructor.name;
errorMetrics.byType[type] = (errorMetrics.byType[type] || 0) + 1;
errorMetrics.byCode[error.code] = (errorMetrics.byCode[error.code] || 0) + 1;
// Try recovery for parsing errors
if (error instanceof EInvoiceParsingError) {
errorMetrics.recoveryAttempts++;
const recovery = await ErrorRecovery.attemptXMLRecovery('', error);
if (recovery.success) {
errorMetrics.recoverySuccesses++;
}
}
}
}
}
console.log('\nError Metrics Summary:');
console.log(` Total errors: ${errorMetrics.total}`);
console.log(` Error types:`, errorMetrics.byType);
console.log(` Recovery rate: ${errorMetrics.recoveryAttempts > 0
? (errorMetrics.recoverySuccesses / errorMetrics.recoveryAttempts * 100).toFixed(1)
: 0}%`);
});
tap.start();

View File

@ -1,11 +1,11 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { InvoiceFormat } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
// Test a focused subset of corpus files
tap.test('XInvoice should handle a focused subset of corpus files', async () => {
tap.test('EInvoice should handle a focused subset of corpus files', async () => {
// Get a small subset of files for focused testing
const ciiFiles = await findFiles(path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/CII'), '.xml', 5);
const ublFiles = await findFiles(path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/UBL'), '.xml', 5);
@ -55,13 +55,13 @@ async function testXmlFile(file: string, expectedFormat: InvoiceFormat): Promise
// Read the file
const xmlContent = await fs.readFile(file, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Check that the XInvoice instance has the expected properties
if (xinvoice && xinvoice.from && xinvoice.to && xinvoice.items) {
// Check that the EInvoice instance has the expected properties
if (einvoice && einvoice.from && einvoice.to && einvoice.items) {
// Check that the format is detected correctly
const format = xinvoice.getFormat();
const format = einvoice.getFormat();
const isCorrectFormat = format === expectedFormat ||
(expectedFormat === InvoiceFormat.CII && format === InvoiceFormat.FACTURX) ||
(expectedFormat === InvoiceFormat.FACTURX && format === InvoiceFormat.CII) ||
@ -76,14 +76,14 @@ async function testXmlFile(file: string, expectedFormat: InvoiceFormat): Promise
exportFormat = 'xrechnung';
}
const exportedXml = await xinvoice.exportXml(exportFormat as any);
const exportedXml = await einvoice.exportXml(exportFormat as any);
if (exportedXml) {
console.log('✅ Success: File loaded, format detected correctly, and exported successfully');
console.log(`Format: ${format}`);
console.log(`From: ${xinvoice.from.name}`);
console.log(`To: ${xinvoice.to.name}`);
console.log(`Items: ${xinvoice.items.length}`);
console.log(`From: ${einvoice.from.name}`);
console.log(`To: ${einvoice.to.name}`);
console.log(`Items: ${einvoice.items.length}`);
// Save the exported XML for inspection
const testDir = path.join(process.cwd(), 'test', 'output', 'focused');
@ -176,23 +176,23 @@ async function testPdfFile(file: string): Promise<void> {
// Save the extracted XML for inspection
await fs.writeFile(path.join(testDir, `${path.basename(file)}-extracted.xml`), xmlContent);
// Try to create XInvoice from the extracted XML
// Try to create EInvoice from the extracted XML
try {
const xinvoice = await XInvoice.fromXml(xmlContent);
const einvoice = await EInvoice.fromXml(xmlContent);
if (xinvoice && xinvoice.from && xinvoice.to && xinvoice.items) {
console.log('✅ Successfully created XInvoice from extracted XML');
console.log(`Format: ${xinvoice.getFormat()}`);
console.log(`From: ${xinvoice.from.name}`);
console.log(`To: ${xinvoice.to.name}`);
console.log(`Items: ${xinvoice.items.length}`);
if (einvoice && einvoice.from && einvoice.to && einvoice.items) {
console.log('✅ Successfully created EInvoice from extracted XML');
console.log(`Format: ${einvoice.getFormat()}`);
console.log(`From: ${einvoice.from.name}`);
console.log(`To: ${einvoice.to.name}`);
console.log(`Items: ${einvoice.items.length}`);
// Try to export the invoice back to XML
try {
const exportedXml = await xinvoice.exportXml('facturx');
const exportedXml = await einvoice.exportXml('facturx');
if (exportedXml) {
console.log('✅ Successfully exported XInvoice back to XML');
console.log('✅ Successfully exported EInvoice back to XML');
// Save the exported XML for inspection
await fs.writeFile(path.join(testDir, `${path.basename(file)}-reexported.xml`), exportedXml);
@ -203,30 +203,30 @@ async function testPdfFile(file: string): Promise<void> {
console.log(`❌ Export error: ${exportError.message}`);
}
} else {
console.log('❌ Missing required properties in created XInvoice');
console.log('❌ Missing required properties in created EInvoice');
}
} catch (xmlError) {
console.log(`❌ Error creating XInvoice from extracted XML: ${xmlError.message}`);
console.log(`❌ Error creating EInvoice from extracted XML: ${xmlError.message}`);
}
} else {
console.log('❌ No XML found in PDF');
}
// Try to create XInvoice directly from PDF
// Try to create EInvoice directly from PDF
try {
const xinvoice = await XInvoice.fromPdf(pdfBuffer);
const einvoice = await EInvoice.fromPdf(pdfBuffer);
if (xinvoice && xinvoice.from && xinvoice.to && xinvoice.items) {
console.log('✅ Successfully created XInvoice directly from PDF');
console.log(`Format: ${xinvoice.getFormat()}`);
console.log(`From: ${xinvoice.from.name}`);
console.log(`To: ${xinvoice.to.name}`);
console.log(`Items: ${xinvoice.items.length}`);
if (einvoice && einvoice.from && einvoice.to && einvoice.items) {
console.log('✅ Successfully created EInvoice directly from PDF');
console.log(`Format: ${einvoice.getFormat()}`);
console.log(`From: ${einvoice.from.name}`);
console.log(`To: ${einvoice.to.name}`);
console.log(`Items: ${einvoice.items.length}`);
} else {
console.log('❌ Missing required properties in created XInvoice');
console.log('❌ Missing required properties in created EInvoice');
}
} catch (pdfError) {
console.log(`❌ Error creating XInvoice directly from PDF: ${pdfError.message}`);
console.log(`❌ Error creating EInvoice directly from PDF: ${pdfError.message}`);
}
} catch (error) {
console.log(`❌ Error processing the file: ${error.message}`);

View File

@ -0,0 +1,260 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { EInvoice } from '../ts/einvoice.js';
import { InvoiceFormat } from '../ts/interfaces/common.js';
import { FormatDetector } from '../ts/formats/utils/format.detector.js';
import { TestFileHelpers, TestFileCategories, InvoiceAssertions, PerformanceUtils } from './test-utils.js';
import * as path from 'path';
/**
* Comprehensive format detection tests using the corpus assets
*/
// Test format detection for CII XML-Rechnung files
tap.test('Format Detection - CII XML-Rechnung files', async () => {
const files = await TestFileHelpers.getTestFiles(TestFileCategories.CII_XMLRECHNUNG, '*.xml');
console.log(`Testing ${files.length} CII XML-Rechnung files`);
for (const file of files) {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const xmlString = xmlBuffer.toString('utf-8');
const { result: format, duration } = await PerformanceUtils.measure(
'cii-detection',
async () => FormatDetector.detectFormat(xmlString)
);
// CII files should be detected as either CII or XRechnung
const validFormats = [InvoiceFormat.CII, InvoiceFormat.XRECHNUNG];
expect(validFormats).toContain(format);
console.log(`${path.basename(file)}: ${format} (${duration.toFixed(2)}ms)`);
}
});
// Test format detection for UBL XML-Rechnung files
tap.test('Format Detection - UBL XML-Rechnung files', async () => {
const files = await TestFileHelpers.getTestFiles(TestFileCategories.UBL_XMLRECHNUNG, '*.xml');
console.log(`Testing ${files.length} UBL XML-Rechnung files`);
for (const file of files) {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const xmlString = xmlBuffer.toString('utf-8');
const { result: format, duration } = await PerformanceUtils.measure(
'ubl-detection',
async () => FormatDetector.detectFormat(xmlString)
);
// UBL files should be detected as either UBL or XRechnung
const validFormats = [InvoiceFormat.UBL, InvoiceFormat.XRECHNUNG];
expect(validFormats).toContain(format);
console.log(`${path.basename(file)}: ${format} (${duration.toFixed(2)}ms)`);
}
});
// Test format detection for PEPPOL files
tap.test('Format Detection - PEPPOL large invoice samples', async () => {
const files = await TestFileHelpers.getTestFiles(TestFileCategories.PEPPOL, '*.xml');
console.log(`Testing ${files.length} PEPPOL files`);
for (const file of files) {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const xmlString = xmlBuffer.toString('utf-8');
const { result: format, duration } = await PerformanceUtils.measure(
'peppol-detection',
async () => FormatDetector.detectFormat(xmlString)
);
// PEPPOL files are typically UBL format
expect(format).toEqual(InvoiceFormat.UBL);
console.log(`${path.basename(file)}: ${format} (${duration.toFixed(2)}ms)`);
}
});
// Test format detection for FatturaPA files
tap.test('Format Detection - FatturaPA Italian invoice format', async () => {
const files = await TestFileHelpers.getTestFiles(TestFileCategories.FATTURAPA, '*.xml');
console.log(`Testing ${files.length} FatturaPA files`);
let detectedCount = 0;
for (const file of files) {
try {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const xmlString = xmlBuffer.toString('utf-8');
const { result: format, duration } = await PerformanceUtils.measure(
'fatturapa-detection',
async () => FormatDetector.detectFormat(xmlString)
);
// FatturaPA detection might not be fully implemented yet
if (format === InvoiceFormat.FATTURAPA) {
detectedCount++;
}
console.log(`${format === InvoiceFormat.FATTURAPA ? '✓' : '○'} ${path.basename(file)}: ${format} (${duration.toFixed(2)}ms)`);
} catch (error) {
console.log(`${path.basename(file)}: Error - ${error.message}`);
}
}
// Log if FatturaPA detection needs implementation
if (detectedCount === 0 && files.length > 0) {
console.log('Note: FatturaPA format detection may need implementation');
}
});
// Test format detection for EN16931 examples
tap.test('Format Detection - EN16931 example files', async () => {
// Test CII examples
const ciiFiles = await TestFileHelpers.getTestFiles(TestFileCategories.EN16931_EXAMPLES_CII, '*.xml');
console.log(`Testing ${ciiFiles.length} EN16931 CII examples`);
for (const file of ciiFiles) {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const xmlString = xmlBuffer.toString('utf-8');
const format = FormatDetector.detectFormat(xmlString);
expect([InvoiceFormat.CII, InvoiceFormat.FACTURX, InvoiceFormat.XRECHNUNG]).toContain(format);
console.log(`${path.basename(file)}: ${format}`);
}
// Test UBL examples
const ublFiles = await TestFileHelpers.getTestFiles(TestFileCategories.EN16931_EXAMPLES_UBL, '*.xml');
console.log(`Testing ${ublFiles.length} EN16931 UBL examples`);
for (const file of ublFiles) {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const xmlString = xmlBuffer.toString('utf-8');
const format = FormatDetector.detectFormat(xmlString);
expect([InvoiceFormat.UBL, InvoiceFormat.XRECHNUNG]).toContain(format);
console.log(`${path.basename(file)}: ${format}`);
}
});
// Test format detection with malformed/edge case files
tap.test('Format Detection - Edge cases and error handling', async () => {
// Test empty XML
const emptyFormat = FormatDetector.detectFormat('');
expect(emptyFormat).toEqual(InvoiceFormat.UNKNOWN);
console.log('✓ Empty string returns UNKNOWN');
// Test non-XML content
const textFormat = FormatDetector.detectFormat('This is not XML');
expect(textFormat).toEqual(InvoiceFormat.UNKNOWN);
console.log('✓ Non-XML text returns UNKNOWN');
// Test minimal XML
const minimalFormat = FormatDetector.detectFormat('<?xml version="1.0"?><root></root>');
expect(minimalFormat).toEqual(InvoiceFormat.UNKNOWN);
console.log('✓ Minimal XML returns UNKNOWN');
// Test with BOM
const bomXml = '\ufeff<?xml version="1.0"?><Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"></Invoice>';
const bomFormat = FormatDetector.detectFormat(bomXml);
expect(bomFormat).toEqual(InvoiceFormat.UBL);
console.log('✓ XML with BOM is handled correctly');
});
// Test format detection performance
tap.test('Format Detection - Performance benchmarks', async () => {
console.log('\nPerformance Benchmarks:');
// Test with small file
const smallXml = '<?xml version="1.0"?><Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"><ID>123</ID></Invoice>';
const smallTimes: number[] = [];
for (let i = 0; i < 100; i++) {
const start = performance.now();
FormatDetector.detectFormat(smallXml);
smallTimes.push(performance.now() - start);
}
const avgSmall = smallTimes.reduce((a, b) => a + b) / smallTimes.length;
console.log(`Small XML (${smallXml.length} bytes): avg ${avgSmall.toFixed(3)}ms`);
expect(avgSmall).toBeLessThan(1); // Should be very fast
// Test with large file (if available)
try {
const largeFiles = await TestFileHelpers.getTestFiles(TestFileCategories.PEPPOL, 'Large*.xml');
if (largeFiles.length > 0) {
const largeBuffer = await TestFileHelpers.loadTestFile(largeFiles[0]);
const largeXml = largeBuffer.toString('utf-8');
const largeTimes: number[] = [];
for (let i = 0; i < 10; i++) {
const start = performance.now();
FormatDetector.detectFormat(largeXml);
largeTimes.push(performance.now() - start);
}
const avgLarge = largeTimes.reduce((a, b) => a + b) / largeTimes.length;
console.log(`Large XML (${largeXml.length} bytes): avg ${avgLarge.toFixed(3)}ms`);
expect(avgLarge).toBeLessThan(10); // Should still be reasonably fast
}
} catch (error) {
console.log('Large file test skipped - no large files available');
}
});
// Test format detection from PDF embedded XML
tap.test('Format Detection - ZUGFeRD PDFs with embedded XML', async () => {
const pdfFiles = await TestFileHelpers.getTestFiles(TestFileCategories.ZUGFERD_V2_CORRECT, '*.pdf');
console.log(`Testing ${pdfFiles.length} ZUGFeRD v2 PDF files`);
let successCount = 0;
for (const file of pdfFiles.slice(0, 5)) { // Test first 5 files for speed
try {
const pdfBuffer = await TestFileHelpers.loadTestFile(file);
const einvoice = await EInvoice.fromPdf(pdfBuffer);
const format = einvoice.getFormat();
expect([InvoiceFormat.ZUGFERD, InvoiceFormat.FACTURX]).toContain(format);
successCount++;
console.log(`${path.basename(file)}: ${format}`);
} catch (error) {
console.log(`${path.basename(file)}: PDF extraction not available`);
}
}
if (successCount > 0) {
console.log(`Successfully detected format from ${successCount} PDF files`);
}
});
// Generate performance report
tap.test('Format Detection - Performance Summary', async () => {
const report = PerformanceUtils.generateReport();
console.log('\n' + report);
// Check that detection is generally fast
const ciiStats = PerformanceUtils.getStats('cii-detection');
if (ciiStats) {
expect(ciiStats.avg).toBeLessThan(5); // Average should be under 5ms
console.log(`CII detection average: ${ciiStats.avg.toFixed(2)}ms`);
}
const ublStats = PerformanceUtils.getStats('ubl-detection');
if (ublStats) {
expect(ublStats.avg).toBeLessThan(5); // Average should be under 5ms
console.log(`UBL detection average: ${ublStats.avg.toFixed(2)}ms`);
}
});
// Test the confidence scoring (if implemented)
tap.test('Format Detection - Confidence scoring', async () => {
// This test is for future implementation when confidence scoring is added
console.log('Confidence scoring tests - placeholder for future implementation');
// Example of what we might test:
// const result = FormatDetector.detectFormatWithConfidence(xml);
// expect(result.format).toEqual(InvoiceFormat.UBL);
// expect(result.confidence).toBeGreaterThan(0.8);
});
tap.start();

352
test/test.pdf-operations.ts Normal file
View File

@ -0,0 +1,352 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { EInvoice, EInvoicePDFError } from '../ts/index.js';
import { InvoiceFormat } from '../ts/interfaces/common.js';
import { TestFileHelpers, TestFileCategories, PerformanceUtils, TestInvoiceFactory } from './test-utils.js';
import * as path from 'path';
import { promises as fs } from 'fs';
/**
* Comprehensive PDF operations test suite
*/
// Test PDF extraction from ZUGFeRD v1 files
tap.test('PDF Operations - Extract XML from ZUGFeRD v1 PDFs', async () => {
const pdfFiles = await TestFileHelpers.getTestFiles(TestFileCategories.ZUGFERD_V1_CORRECT, '*.pdf');
console.log(`Testing XML extraction from ${pdfFiles.length} ZUGFeRD v1 PDFs`);
let successCount = 0;
let failCount = 0;
const extractionTimes: number[] = [];
for (const file of pdfFiles.slice(0, 5)) { // Test first 5 for speed
const fileName = path.basename(file);
try {
const pdfBuffer = await TestFileHelpers.loadTestFile(file);
const { result: einvoice, duration } = await PerformanceUtils.measure(
'pdf-extraction-v1',
async () => EInvoice.fromPdf(pdfBuffer)
);
extractionTimes.push(duration);
// Verify extraction succeeded
expect(einvoice).toBeTruthy();
expect(einvoice.getXml()).toBeTruthy();
expect(einvoice.getXml().length).toBeGreaterThan(100);
// Check format detection
const format = einvoice.getFormat();
expect([InvoiceFormat.ZUGFERD, InvoiceFormat.FACTURX]).toContain(format);
successCount++;
console.log(`${fileName}: Extracted ${einvoice.getXml().length} bytes, format: ${format} (${duration.toFixed(2)}ms)`);
// Verify basic invoice data
expect(einvoice.id).toBeTruthy();
expect(einvoice.from.name).toBeTruthy();
expect(einvoice.to.name).toBeTruthy();
} catch (error) {
failCount++;
if (error instanceof EInvoicePDFError) {
console.log(`${fileName}: ${error.message}`);
console.log(` Recovery suggestions: ${error.getRecoverySuggestions().join(', ')}`);
} else {
console.log(`${fileName}: ${error.message}`);
}
}
}
console.log(`\nExtraction Summary: ${successCount} succeeded, ${failCount} failed`);
if (extractionTimes.length > 0) {
const avgTime = extractionTimes.reduce((a, b) => a + b) / extractionTimes.length;
console.log(`Average extraction time: ${avgTime.toFixed(2)}ms`);
}
expect(successCount).toBeGreaterThan(0);
});
// Test PDF extraction from ZUGFeRD v2/Factur-X files
tap.test('PDF Operations - Extract XML from ZUGFeRD v2/Factur-X PDFs', async () => {
const pdfFiles = await TestFileHelpers.getTestFiles(TestFileCategories.ZUGFERD_V2_CORRECT, '*.pdf');
console.log(`Testing XML extraction from ${pdfFiles.length} ZUGFeRD v2/Factur-X PDFs`);
const profileStats: Record<string, number> = {};
for (const file of pdfFiles.slice(0, 10)) { // Test first 10
const fileName = path.basename(file);
try {
const pdfBuffer = await TestFileHelpers.loadTestFile(file);
const einvoice = await EInvoice.fromPdf(pdfBuffer);
// Extract profile from filename if present
const profileMatch = fileName.match(/(BASIC|COMFORT|EXTENDED|MINIMUM|EN16931)/i);
const profile = profileMatch ? profileMatch[1].toUpperCase() : 'UNKNOWN';
profileStats[profile] = (profileStats[profile] || 0) + 1;
console.log(`${fileName}: Profile ${profile}, Format ${einvoice.getFormat()}`);
// Test that we can re-export the invoice
const xml = await einvoice.exportXml('facturx');
expect(xml).toBeTruthy();
expect(xml).toInclude('CrossIndustryInvoice');
} catch (error) {
console.log(`${fileName}: ${error.message}`);
}
}
console.log('\nProfile distribution:', profileStats);
});
// Test PDF embedding (creating PDFs with XML)
tap.test('PDF Operations - Embed XML into PDF', async () => {
// Create a test invoice
const invoice = new EInvoice();
Object.assign(invoice, TestInvoiceFactory.createComplexInvoice());
// Generate XML
const xml = await invoice.exportXml('facturx');
expect(xml).toBeTruthy();
console.log(`Generated XML: ${xml.length} bytes`);
// Create a minimal PDF for testing
const pdfBuffer = await createMinimalTestPDF();
invoice.pdf = {
name: 'test-invoice.pdf',
id: 'test-pdf-001',
metadata: { textExtraction: '' },
buffer: pdfBuffer
};
// Test embedding
try {
const { result: resultPdf, duration } = await PerformanceUtils.measure(
'pdf-embedding',
async () => invoice.exportPdf('facturx')
);
expect(resultPdf).toBeTruthy();
expect(resultPdf.buffer).toBeTruthy();
expect(resultPdf.buffer.length).toBeGreaterThan(pdfBuffer.length);
console.log(`✓ Successfully embedded XML into PDF (${duration.toFixed(2)}ms)`);
console.log(` Original PDF: ${pdfBuffer.length} bytes`);
console.log(` Result PDF: ${resultPdf.buffer.length} bytes`);
console.log(` Size increase: ${resultPdf.buffer.length - pdfBuffer.length} bytes`);
// Verify the embedded XML can be extracted
const verification = await EInvoice.fromPdf(resultPdf.buffer);
expect(verification.getXml()).toBeTruthy();
expect(verification.getFormat()).toEqual(InvoiceFormat.FACTURX);
console.log('✓ Verified: Embedded XML can be extracted successfully');
} catch (error) {
if (error instanceof EInvoicePDFError) {
console.log(`✗ Embedding failed: ${error.message}`);
console.log(` Operation: ${error.operation}`);
console.log(` Suggestions: ${error.getRecoverySuggestions().join(', ')}`);
}
throw error;
}
});
// Test PDF extraction error handling
tap.test('PDF Operations - Error handling for invalid PDFs', async () => {
// Test with empty buffer
try {
await EInvoice.fromPdf(new Uint8Array(0));
expect.fail('Should have thrown an error for empty PDF');
} catch (error) {
expect(error).toBeInstanceOf(EInvoicePDFError);
if (error instanceof EInvoicePDFError) {
expect(error.operation).toEqual('extract');
console.log('✓ Empty PDF error handled correctly');
}
}
// Test with non-PDF data
try {
const textBuffer = Buffer.from('This is not a PDF file');
await EInvoice.fromPdf(textBuffer);
expect.fail('Should have thrown an error for non-PDF data');
} catch (error) {
expect(error).toBeInstanceOf(EInvoicePDFError);
console.log('✓ Non-PDF data error handled correctly');
}
// Test with corrupted PDF header
try {
const corruptPdf = Buffer.from('%PDF-1.4\nCorrupted content');
await EInvoice.fromPdf(corruptPdf);
expect.fail('Should have thrown an error for corrupted PDF');
} catch (error) {
expect(error).toBeInstanceOf(EInvoicePDFError);
console.log('✓ Corrupted PDF error handled correctly');
}
});
// Test failed PDF extractions from corpus
tap.test('PDF Operations - Handle PDFs without XML gracefully', async () => {
const failPdfs = await TestFileHelpers.getTestFiles(TestFileCategories.ZUGFERD_V1_FAIL, '*.pdf');
console.log(`Testing ${failPdfs.length} PDFs expected to fail`);
for (const file of failPdfs) {
const fileName = path.basename(file);
try {
const pdfBuffer = await TestFileHelpers.loadTestFile(file);
await EInvoice.fromPdf(pdfBuffer);
console.log(`${fileName}: Unexpectedly succeeded (might have XML)`);
} catch (error) {
if (error instanceof EInvoicePDFError) {
expect(error.operation).toEqual('extract');
console.log(`${fileName}: Correctly failed - ${error.message}`);
} else {
console.log(`${fileName}: Wrong error type - ${error.message}`);
}
}
}
});
// Test PDF metadata preservation
tap.test('PDF Operations - Metadata preservation during embedding', async () => {
// Load a real PDF from corpus
const pdfFiles = await TestFileHelpers.getTestFiles(TestFileCategories.ZUGFERD_V2_CORRECT, '*.pdf');
if (pdfFiles.length > 0) {
const originalPdfBuffer = await TestFileHelpers.loadTestFile(pdfFiles[0]);
try {
// Extract from original
const originalInvoice = await EInvoice.fromPdf(originalPdfBuffer);
// Re-embed with different format
const reembedded = await originalInvoice.exportPdf('xrechnung');
// Extract again
const reextracted = await EInvoice.fromPdf(reembedded.buffer);
// Compare key fields
expect(reextracted.from.name).toEqual(originalInvoice.from.name);
expect(reextracted.to.name).toEqual(originalInvoice.to.name);
expect(reextracted.items.length).toEqual(originalInvoice.items.length);
console.log('✓ Metadata preserved through re-embedding cycle');
} catch (error) {
console.log(`○ Metadata preservation test skipped: ${error.message}`);
}
}
});
// Test PDF size constraints
tap.test('PDF Operations - Performance with large PDFs', async () => {
const largePdfSize = 10 * 1024 * 1024; // 10MB
const largePdfBuffer = Buffer.alloc(largePdfSize);
// Create a simple PDF header
const pdfHeader = Buffer.from('%PDF-1.4\n');
pdfHeader.copy(largePdfBuffer);
console.log(`Testing with ${(largePdfSize / 1024 / 1024).toFixed(1)}MB PDF`);
const startTime = performance.now();
try {
await EInvoice.fromPdf(largePdfBuffer);
} catch (error) {
// Expected to fail, we're testing performance
const duration = performance.now() - startTime;
console.log(`✓ Large PDF processed in ${duration.toFixed(2)}ms`);
expect(duration).toBeLessThan(5000); // Should fail fast, not hang
}
});
// Test concurrent PDF operations
tap.test('PDF Operations - Concurrent processing', async () => {
const pdfFiles = await TestFileHelpers.getTestFiles(TestFileCategories.ZUGFERD_V2_CORRECT, '*.pdf');
const testFiles = pdfFiles.slice(0, 5);
if (testFiles.length > 0) {
console.log(`Testing concurrent processing of ${testFiles.length} PDFs`);
const startTime = performance.now();
// Process all PDFs concurrently
const promises = testFiles.map(async (file) => {
try {
const pdfBuffer = await TestFileHelpers.loadTestFile(file);
const einvoice = await EInvoice.fromPdf(pdfBuffer);
return { success: true, format: einvoice.getFormat() };
} catch (error) {
return { success: false, error: error.message };
}
});
const results = await Promise.all(promises);
const duration = performance.now() - startTime;
const successCount = results.filter(r => r.success).length;
console.log(`✓ Processed ${successCount}/${testFiles.length} PDFs concurrently in ${duration.toFixed(2)}ms`);
console.log(` Average time per PDF: ${(duration / testFiles.length).toFixed(2)}ms`);
}
});
// Performance summary
tap.test('PDF Operations - Performance Summary', async () => {
const stats = {
extraction: PerformanceUtils.getStats('pdf-extraction-v1'),
embedding: PerformanceUtils.getStats('pdf-embedding')
};
console.log('\nPDF Operations Performance Summary:');
if (stats.extraction) {
console.log('PDF Extraction (ZUGFeRD v1):');
console.log(` Average: ${stats.extraction.avg.toFixed(2)}ms`);
console.log(` Min/Max: ${stats.extraction.min.toFixed(2)}ms / ${stats.extraction.max.toFixed(2)}ms`);
}
if (stats.embedding) {
console.log('PDF Embedding:');
console.log(` Average: ${stats.embedding.avg.toFixed(2)}ms`);
}
// Performance assertions
if (stats.extraction && stats.extraction.count > 3) {
expect(stats.extraction.avg).toBeLessThan(1000); // Should extract in under 1 second on average
}
});
// Helper function to create a minimal test PDF
async function createMinimalTestPDF(): Promise<Uint8Array> {
// This creates a very minimal valid PDF
const pdfContent = `%PDF-1.4
1 0 obj
<< /Type /Catalog /Pages 2 0 R >>
endobj
2 0 obj
<< /Type /Pages /Kids [3 0 R] /Count 1 >>
endobj
3 0 obj
<< /Type /Page /Parent 2 0 R /MediaBox [0 0 612 792] /Resources << >> >>
endobj
xref
0 4
0000000000 65535 f
0000000009 00000 n
0000000058 00000 n
0000000115 00000 n
trailer
<< /Size 4 /Root 1 0 R >>
startxref
217
%%EOF`;
return new Uint8Array(Buffer.from(pdfContent));
}
tap.start();

View File

@ -1,29 +1,29 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { ValidationLevel, InvoiceFormat } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
// Test loading and parsing real CII (Factur-X/ZUGFeRD) XML files
tap.test('XInvoice should load and parse real CII XML files', async () => {
tap.test('EInvoice should load and parse real CII XML files', async () => {
// Test with a simple CII file
const xmlPath = path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/CII/EN16931_Einfach.cii.xml');
const xmlContent = await fs.readFile(xmlPath, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Check that the XInvoice instance has the expected properties
expect(xinvoice).toBeTruthy();
expect(xinvoice.from).toBeTruthy();
expect(xinvoice.to).toBeTruthy();
expect(xinvoice.items).toBeArray();
// Check that the EInvoice instance has the expected properties
expect(einvoice).toBeTruthy();
expect(einvoice.from).toBeTruthy();
expect(einvoice.to).toBeTruthy();
expect(einvoice.items).toBeArray();
// Check that the format is detected correctly
expect(xinvoice.getFormat()).toEqual(InvoiceFormat.FACTURX);
expect(einvoice.getFormat()).toEqual(InvoiceFormat.FACTURX);
// Check that the invoice can be exported back to XML
const exportedXml = await xinvoice.exportXml('facturx');
const exportedXml = await einvoice.exportXml('facturx');
expect(exportedXml).toBeTruthy();
expect(exportedXml).toInclude('CrossIndustryInvoice');
@ -34,47 +34,47 @@ tap.test('XInvoice should load and parse real CII XML files', async () => {
});
// Test loading and parsing real UBL (XRechnung) XML files
tap.test('XInvoice should load and parse real UBL XML files', async () => {
tap.test('EInvoice should load and parse real UBL XML files', async () => {
// Test with a simple UBL file
const xmlPath = path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/UBL/EN16931_Einfach.ubl.xml');
const xmlContent = await fs.readFile(xmlPath, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Check that the XInvoice instance has the expected properties
expect(xinvoice).toBeTruthy();
expect(xinvoice.from).toBeTruthy();
expect(xinvoice.to).toBeTruthy();
expect(xinvoice.items).toBeArray();
// Check that the EInvoice instance has the expected properties
expect(einvoice).toBeTruthy();
expect(einvoice.from).toBeTruthy();
expect(einvoice.to).toBeTruthy();
expect(einvoice.items).toBeArray();
// Check that the format is detected correctly
// This file is a UBL format, not XRechnung
expect(xinvoice.getFormat()).toEqual(InvoiceFormat.UBL);
expect(einvoice.getFormat()).toEqual(InvoiceFormat.UBL);
// Skip the export test for now since UBL encoder is not implemented yet
// This is a legitimate limitation of the current implementation
console.log('Skipping UBL export test - UBL encoder not yet implemented');
// Just test that the format was detected correctly
expect(xinvoice.getFormat()).toEqual(InvoiceFormat.UBL);
expect(einvoice.getFormat()).toEqual(InvoiceFormat.UBL);
});
// Test PDF creation and extraction with real XML files
tap.test('XInvoice should create and parse PDFs with embedded XML', async () => {
tap.test('EInvoice should create and parse PDFs with embedded XML', async () => {
// Find a real CII XML file to use
const xmlPath = path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/CII/EN16931_Einfach.cii.xml');
const xmlContent = await fs.readFile(xmlPath, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Check that the XInvoice instance has the expected properties
expect(xinvoice).toBeTruthy();
expect(xinvoice.from).toBeTruthy();
expect(xinvoice.to).toBeTruthy();
expect(xinvoice.items).toBeArray();
// Check that the EInvoice instance has the expected properties
expect(einvoice).toBeTruthy();
expect(einvoice.from).toBeTruthy();
expect(einvoice.to).toBeTruthy();
expect(einvoice.items).toBeArray();
// Create a simple PDF document
const { PDFDocument } = await import('pdf-lib');
@ -84,7 +84,7 @@ tap.test('XInvoice should create and parse PDFs with embedded XML', async () =>
const pdfBytes = await pdfDoc.save();
// Set the PDF buffer
xinvoice.pdf = {
einvoice.pdf = {
name: 'test-invoice.pdf',
id: `test-invoice-${Date.now()}`,
metadata: {
@ -94,7 +94,7 @@ tap.test('XInvoice should create and parse PDFs with embedded XML', async () =>
};
// Export as PDF with embedded XML
const exportedPdf = await xinvoice.exportPdf('facturx');
const exportedPdf = await einvoice.exportPdf('facturx');
expect(exportedPdf).toBeTruthy();
expect(exportedPdf.buffer).toBeTruthy();
@ -104,21 +104,21 @@ tap.test('XInvoice should create and parse PDFs with embedded XML', async () =>
await fs.writeFile(path.join(testDir, 'test-invoice-with-xml.pdf'), exportedPdf.buffer);
// Now try to load the PDF back
const loadedXInvoice = await XInvoice.fromPdf(exportedPdf.buffer);
const loadedEInvoice = await EInvoice.fromPdf(exportedPdf.buffer);
// Check that the loaded XInvoice has the expected properties
expect(loadedXInvoice).toBeTruthy();
expect(loadedXInvoice.from).toBeTruthy();
expect(loadedXInvoice.to).toBeTruthy();
expect(loadedXInvoice.items).toBeArray();
// Check that the loaded EInvoice has the expected properties
expect(loadedEInvoice).toBeTruthy();
expect(loadedEInvoice.from).toBeTruthy();
expect(loadedEInvoice.to).toBeTruthy();
expect(loadedEInvoice.items).toBeArray();
// Check that key properties are present
expect(loadedXInvoice.id).toBeTruthy();
expect(loadedXInvoice.from.name).toBeTruthy();
expect(loadedXInvoice.to.name).toBeTruthy();
expect(loadedEInvoice.id).toBeTruthy();
expect(loadedEInvoice.from.name).toBeTruthy();
expect(loadedEInvoice.to.name).toBeTruthy();
// Export the loaded invoice back to XML
const reExportedXml = await loadedXInvoice.exportXml('facturx');
const reExportedXml = await loadedEInvoice.exportXml('facturx');
expect(reExportedXml).toBeTruthy();
expect(reExportedXml).toInclude('CrossIndustryInvoice');
@ -153,16 +153,16 @@ async function findPdfFiles(dir: string): Promise<string[]> {
};
// Test validation of real invoice files
tap.test('XInvoice should validate real invoice files', async () => {
tap.test('EInvoice should validate real invoice files', async () => {
// Test with a simple CII file
const xmlPath = path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/CII/EN16931_Einfach.cii.xml');
const xmlContent = await fs.readFile(xmlPath, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Validate the XML
const result = await xinvoice.validate(ValidationLevel.SYNTAX);
const result = await einvoice.validate(ValidationLevel.SYNTAX);
// Check that validation passed
expect(result.valid).toBeTrue();
@ -170,7 +170,7 @@ tap.test('XInvoice should validate real invoice files', async () => {
});
// Test with multiple real invoice files
tap.test('XInvoice should handle multiple real invoice files', async () => {
tap.test('EInvoice should handle multiple real invoice files', async () => {
// Get all CII files
const ciiDir = path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/CII');
const ciiFiles = await fs.readdir(ciiDir);
@ -184,19 +184,19 @@ tap.test('XInvoice should handle multiple real invoice files', async () => {
const xmlPath = path.join(ciiDir, file);
const xmlContent = await fs.readFile(xmlPath, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Check that the XInvoice instance has the expected properties
expect(xinvoice).toBeTruthy();
expect(xinvoice.from).toBeTruthy();
expect(xinvoice.to).toBeTruthy();
// Check that the EInvoice instance has the expected properties
expect(einvoice).toBeTruthy();
expect(einvoice.from).toBeTruthy();
expect(einvoice.to).toBeTruthy();
// Check that the format is detected correctly
expect(xinvoice.getFormat()).toEqual(InvoiceFormat.FACTURX);
expect(einvoice.getFormat()).toEqual(InvoiceFormat.FACTURX);
// Check that the invoice can be exported back to XML
const exportedXml = await xinvoice.exportXml('facturx');
const exportedXml = await einvoice.exportXml('facturx');
expect(exportedXml).toBeTruthy();
expect(exportedXml).toInclude('CrossIndustryInvoice');
}

View File

@ -1,11 +1,11 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { InvoiceFormat } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
// Test a simple subset of corpus files
tap.test('XInvoice should handle a simple subset of corpus files', async () => {
tap.test('EInvoice should handle a simple subset of corpus files', async () => {
// Test a few specific files that we know work
const testFiles = [
// CII files
@ -32,25 +32,25 @@ tap.test('XInvoice should handle a simple subset of corpus files', async () => {
// Read the file
const xmlContent = await fs.readFile(file, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Check that the XInvoice instance has the expected properties
if (xinvoice && xinvoice.from && xinvoice.to && xinvoice.items) {
// Check that the EInvoice instance has the expected properties
if (einvoice && einvoice.from && einvoice.to && einvoice.items) {
console.log('✅ Success: File loaded and parsed successfully');
console.log(`Format: ${xinvoice.getFormat()}`);
console.log(`From: ${xinvoice.from.name}`);
console.log(`To: ${xinvoice.to.name}`);
console.log(`Items: ${xinvoice.items.length}`);
console.log(`Format: ${einvoice.getFormat()}`);
console.log(`From: ${einvoice.from.name}`);
console.log(`To: ${einvoice.to.name}`);
console.log(`Items: ${einvoice.items.length}`);
// Try to export the invoice back to XML
try {
let exportFormat = 'facturx';
if (xinvoice.getFormat() === InvoiceFormat.UBL || xinvoice.getFormat() === InvoiceFormat.XRECHNUNG) {
if (einvoice.getFormat() === InvoiceFormat.UBL || einvoice.getFormat() === InvoiceFormat.XRECHNUNG) {
exportFormat = 'xrechnung';
}
const exportedXml = await xinvoice.exportXml(exportFormat as any);
const exportedXml = await einvoice.exportXml(exportFormat as any);
if (exportedXml) {
console.log('✅ Successfully exported back to XML');

View File

@ -1,10 +1,10 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { InvoiceFormat, ValidationLevel } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
tap.test('XInvoice should validate corpus files correctly', async () => {
tap.test('EInvoice should validate corpus files correctly', async () => {
// Find test files
const testDir = path.join(process.cwd(), 'test', 'assets');
@ -81,21 +81,21 @@ async function testValidation(files: string[], expectValid: boolean) {
// Load the XML file
const xmlContent = await fs.readFile(file, 'utf8');
// Create an XInvoice instance
let xinvoice: XInvoice;
// Create an EInvoice instance
let einvoice: EInvoice;
// If the file is a PDF, load it as a PDF
if (file.endsWith('.pdf')) {
const pdfBuffer = await fs.readFile(file);
xinvoice = await XInvoice.fromPdf(pdfBuffer);
einvoice = await EInvoice.fromPdf(pdfBuffer);
} else {
// Otherwise, load it as XML
xinvoice = await XInvoice.fromXml(xmlContent);
einvoice = await EInvoice.fromXml(xmlContent);
}
try {
// Validate the invoice
const validationResult = await xinvoice.validate(ValidationLevel.SYNTAX);
const validationResult = await einvoice.validate(ValidationLevel.SYNTAX);
// Check if the validation result matches our expectation
if (validationResult.valid === expectValid) {

View File

@ -0,0 +1,389 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { EInvoice, EInvoiceValidationError } from '../ts/index.js';
import { ValidationLevel, InvoiceFormat } from '../ts/interfaces/common.js';
import { TestFileHelpers, TestFileCategories, InvoiceAssertions, PerformanceUtils } from './test-utils.js';
import * as plugins from '../ts/plugins.js';
/**
* Comprehensive validation test suite using EN16931 test cases
*/
// Test Business Rule validations from EN16931
tap.test('Validation Suite - EN16931 Business Rules (BR-*)', async () => {
const testFiles = await TestFileHelpers.getTestFiles(TestFileCategories.EN16931_UBL_INVOICE, 'BR-*.xml');
console.log(`Testing ${testFiles.length} Business Rule validation files`);
const results = {
passed: 0,
failed: 0,
errors: [] as string[]
};
for (const file of testFiles) {
const fileName = plugins.path.basename(file);
const shouldFail = fileName.includes('BR-'); // These files test specific BR violations
try {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const xmlString = xmlBuffer.toString('utf-8');
const einvoice = await EInvoice.fromXml(xmlString);
const { result: validation, duration } = await PerformanceUtils.measure(
'br-validation',
async () => einvoice.validate(ValidationLevel.BUSINESS)
);
// Most BR-*.xml files are designed to fail specific business rules
if (shouldFail && !validation.valid) {
results.passed++;
console.log(`${fileName}: Correctly failed validation (${duration.toFixed(2)}ms)`);
// Check that the correct BR code is in the errors
const brCode = fileName.match(/BR-\d+/)?.[0];
if (brCode) {
const hasCorrectError = validation.errors.some(e => e.code.includes(brCode));
if (!hasCorrectError) {
console.log(` ⚠ Expected error code ${brCode} not found in: ${validation.errors.map(e => e.code).join(', ')}`);
}
}
} else if (!shouldFail && validation.valid) {
results.passed++;
console.log(`${fileName}: Correctly passed validation (${duration.toFixed(2)}ms)`);
} else {
results.failed++;
results.errors.push(`${fileName}: Unexpected result - valid: ${validation.valid}`);
console.log(`${fileName}: Unexpected validation result`);
if (validation.errors.length > 0) {
console.log(` Errors: ${validation.errors.map(e => `${e.code}: ${e.message}`).join('; ')}`);
}
}
} catch (error) {
results.failed++;
results.errors.push(`${fileName}: ${error.message}`);
console.log(`${fileName}: Error - ${error.message}`);
}
}
console.log(`\nBusiness Rules Summary: ${results.passed} passed, ${results.failed} failed`);
if (results.errors.length > 0) {
console.log('Failures:', results.errors);
}
// Allow some failures as not all validators may be implemented
expect(results.passed).toBeGreaterThan(0);
});
// Test Codelist validations
tap.test('Validation Suite - EN16931 Codelist validations (BR-CL-*)', async () => {
const testFiles = await TestFileHelpers.getTestFiles(TestFileCategories.EN16931_UBL_INVOICE, 'BR-CL-*.xml');
console.log(`Testing ${testFiles.length} Codelist validation files`);
let validatedCount = 0;
for (const file of testFiles.slice(0, 10)) { // Test first 10 for speed
const fileName = plugins.path.basename(file);
try {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const xmlString = xmlBuffer.toString('utf-8');
const einvoice = await EInvoice.fromXml(xmlString);
const validation = await einvoice.validate(ValidationLevel.SEMANTIC);
validatedCount++;
// These files test invalid code values
if (!validation.valid) {
const clCode = fileName.match(/BR-CL-\d+/)?.[0];
console.log(`${fileName}: Detected invalid code (${clCode})`);
} else {
console.log(`${fileName}: Validation passed (may need stricter codelist checking)`);
}
} catch (error) {
console.log(`${fileName}: Error - ${error.message}`);
}
}
expect(validatedCount).toBeGreaterThan(0);
console.log(`Validated ${validatedCount} codelist test files`);
});
// Test syntax validation
tap.test('Validation Suite - Syntax validation levels', async () => {
const xmlWithError = `<?xml version="1.0"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
<ID>123</ID>
<IssueDate>not-a-date</IssueDate>
<InvalidElement>This element doesn't belong here</InvalidElement>
</Invoice>`;
const einvoice = new EInvoice();
// Test that we can catch parsing errors
try {
await einvoice.loadXml(xmlWithError);
// Syntax validation should catch schema violations
const syntaxValidation = await einvoice.validate(ValidationLevel.SYNTAX);
console.log('Syntax validation:', syntaxValidation.valid ? 'PASSED' : 'FAILED');
if (!syntaxValidation.valid) {
console.log('Syntax errors found:', syntaxValidation.errors.length);
syntaxValidation.errors.forEach(err => {
console.log(` - ${err.code}: ${err.message}`);
});
}
} catch (error) {
if (error instanceof EInvoiceValidationError) {
console.log('✓ Validation error caught correctly');
console.log(error.getValidationReport());
}
}
});
// Test validation error reporting
tap.test('Validation Suite - Error reporting and recovery', async () => {
const testInvoice = new EInvoice();
// Try to validate without loading XML
try {
await testInvoice.validate();
} catch (error) {
expect(error).toBeInstanceOf(EInvoiceValidationError);
if (error instanceof EInvoiceValidationError) {
expect(error.validationErrors).toHaveLength(1);
expect(error.validationErrors[0].code).toEqual('VAL-001');
console.log('✓ Empty invoice validation error handled correctly');
}
}
// Test with minimal valid invoice
testInvoice.id = 'TEST-001';
testInvoice.invoiceId = 'INV-001';
testInvoice.from.name = 'Test Seller';
testInvoice.to.name = 'Test Buyer';
testInvoice.items = [{
position: 1,
name: 'Test Item',
unitQuantity: 1,
unitNetPrice: 100,
vatPercentage: 19
}];
// This should fail because we don't have XML loaded
try {
await testInvoice.validate();
} catch (error) {
expect(error).toBeInstanceOf(EInvoiceValidationError);
console.log('✓ Validation requires loaded XML');
}
});
// Test format-specific validation
tap.test('Validation Suite - Format-specific validation rules', async () => {
// Test XRechnung specific validation
const xrechnungFiles = await TestFileHelpers.getTestFiles(
TestFileCategories.CII_XMLRECHNUNG,
'XRECHNUNG_*.xml'
);
if (xrechnungFiles.length > 0) {
console.log(`Testing ${xrechnungFiles.length} XRechnung files`);
for (const file of xrechnungFiles.slice(0, 3)) {
const xmlBuffer = await TestFileHelpers.loadTestFile(file);
const einvoice = await EInvoice.fromXml(xmlBuffer.toString('utf-8'));
const validation = await einvoice.validate(ValidationLevel.BUSINESS);
console.log(`${plugins.path.basename(file)}: ${validation.valid ? 'VALID' : 'INVALID'}`);
if (!validation.valid && validation.errors.length > 0) {
console.log(` First error: ${validation.errors[0].code} - ${validation.errors[0].message}`);
}
}
}
// Test ZUGFeRD specific validation
console.log('\nTesting ZUGFeRD profile validation:');
const zugferdPdfs = await TestFileHelpers.getTestFiles(
TestFileCategories.ZUGFERD_V2_CORRECT,
'*.pdf'
);
for (const file of zugferdPdfs.slice(0, 2)) {
try {
const pdfBuffer = await TestFileHelpers.loadTestFile(file);
const einvoice = await EInvoice.fromPdf(pdfBuffer);
// Check which ZUGFeRD profile is used
const format = einvoice.getFormat();
console.log(`${plugins.path.basename(file)}: Format ${format}`);
// Validate according to profile
const validation = await einvoice.validate(ValidationLevel.SEMANTIC);
console.log(` Validation: ${validation.valid ? 'VALID' : 'INVALID'}`);
} catch (error) {
console.log(`${plugins.path.basename(file)}: Skipped - ${error.message}`);
}
}
});
// Test validation performance
tap.test('Validation Suite - Performance benchmarks', async () => {
const files = await TestFileHelpers.getTestFiles(
TestFileCategories.UBL_XMLRECHNUNG,
'*.xml'
);
if (files.length > 0) {
const xmlBuffer = await TestFileHelpers.loadTestFile(files[0]);
const xmlString = xmlBuffer.toString('utf-8');
const einvoice = await EInvoice.fromXml(xmlString);
// Benchmark different validation levels
console.log('\nValidation Performance:');
// Syntax validation
const syntaxTimes: number[] = [];
for (let i = 0; i < 10; i++) {
const { duration } = await PerformanceUtils.measure(
'syntax-validation',
async () => einvoice.validate(ValidationLevel.SYNTAX)
);
syntaxTimes.push(duration);
}
const avgSyntax = syntaxTimes.reduce((a, b) => a + b) / syntaxTimes.length;
console.log(`Syntax validation: avg ${avgSyntax.toFixed(2)}ms`);
// Semantic validation
const semanticTimes: number[] = [];
for (let i = 0; i < 10; i++) {
const { duration } = await PerformanceUtils.measure(
'semantic-validation',
async () => einvoice.validate(ValidationLevel.SEMANTIC)
);
semanticTimes.push(duration);
}
const avgSemantic = semanticTimes.reduce((a, b) => a + b) / semanticTimes.length;
console.log(`Semantic validation: avg ${avgSemantic.toFixed(2)}ms`);
// Business validation
const businessTimes: number[] = [];
for (let i = 0; i < 10; i++) {
const { duration } = await PerformanceUtils.measure(
'business-validation',
async () => einvoice.validate(ValidationLevel.BUSINESS)
);
businessTimes.push(duration);
}
const avgBusiness = businessTimes.reduce((a, b) => a + b) / businessTimes.length;
console.log(`Business validation: avg ${avgBusiness.toFixed(2)}ms`);
// Validation should get progressively slower with higher levels
expect(avgSyntax).toBeLessThan(avgSemantic);
expect(avgSemantic).toBeLessThan(avgBusiness);
}
});
// Test calculation validations
tap.test('Validation Suite - Calculation and sum validations', async () => {
const einvoice = new EInvoice();
einvoice.id = 'CALC-TEST-001';
einvoice.invoiceId = 'CALC-001';
einvoice.from.name = 'Calculator Corp';
einvoice.to.name = 'Number Inc';
// Add items with specific calculations
einvoice.items = [
{
position: 1,
name: 'Product A',
unitQuantity: 5,
unitNetPrice: 100, // Total: 500
vatPercentage: 19 // VAT: 95
},
{
position: 2,
name: 'Product B',
unitQuantity: 3,
unitNetPrice: 50, // Total: 150
vatPercentage: 19 // VAT: 28.50
}
];
// Expected totals:
// Net: 650
// VAT: 123.50
// Gross: 773.50
// Generate XML and validate
try {
const xml = await einvoice.exportXml('facturx');
await einvoice.loadXml(xml);
const validation = await einvoice.validate(ValidationLevel.BUSINESS);
if (!validation.valid) {
const calcErrors = validation.errors.filter(e =>
e.code.includes('BR-CO') || e.message.toLowerCase().includes('calc')
);
if (calcErrors.length > 0) {
console.log('Calculation validation errors found:');
calcErrors.forEach(err => {
console.log(` - ${err.code}: ${err.message}`);
});
}
} else {
console.log('✓ Invoice calculations validated successfully');
}
} catch (error) {
console.log(`Calculation validation test skipped: ${error.message}`);
}
});
// Test validation caching
tap.test('Validation Suite - Validation result caching', async () => {
const xmlBuffer = await TestFileHelpers.loadTestFile(
`${TestFileCategories.UBL_XMLRECHNUNG}/EN16931_Einfach.ubl.xml`
);
const einvoice = await EInvoice.fromXml(xmlBuffer.toString('utf-8'));
// First validation (cold)
const { duration: coldDuration } = await PerformanceUtils.measure(
'validation-cold',
async () => einvoice.validate(ValidationLevel.BUSINESS)
);
// Second validation (potentially cached)
const { duration: warmDuration } = await PerformanceUtils.measure(
'validation-warm',
async () => einvoice.validate(ValidationLevel.BUSINESS)
);
console.log(`Cold validation: ${coldDuration.toFixed(2)}ms`);
console.log(`Warm validation: ${warmDuration.toFixed(2)}ms`);
// Check if errors are consistent
const errors1 = einvoice.getValidationErrors();
const errors2 = einvoice.getValidationErrors();
expect(errors1).toEqual(errors2);
});
// Generate validation summary
tap.test('Validation Suite - Summary Report', async () => {
const stats = PerformanceUtils.getStats('br-validation');
if (stats) {
console.log('\nBusiness Rule Validation Performance:');
console.log(` Total validations: ${stats.count}`);
console.log(` Average time: ${stats.avg.toFixed(2)}ms`);
console.log(` Min/Max: ${stats.min.toFixed(2)}ms / ${stats.max.toFixed(2)}ms`);
}
// Test that validation is generally performant
if (stats && stats.count > 10) {
expect(stats.avg).toBeLessThan(100); // Should validate in under 100ms on average
}
});
tap.start();

View File

@ -1,11 +1,11 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { InvoiceFormat, ValidationLevel } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
// Test XML-Rechnung corpus (CII and UBL)
tap.test('XInvoice should handle XML-Rechnung corpus', async () => {
tap.test('EInvoice should handle XML-Rechnung corpus', async () => {
// Get all XML-Rechnung files
const ciiFiles = await findFiles(path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/CII'), '.xml');
const ublFiles = await findFiles(path.join(process.cwd(), 'test/assets/corpus/XML-Rechnung/UBL'), '.xml');
@ -73,13 +73,13 @@ async function testFiles(files: string[], expectedFormat: InvoiceFormat): Promis
// Read the file
const xmlContent = await fs.readFile(file, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Check that the XInvoice instance has the expected properties
if (xinvoice && xinvoice.from && xinvoice.to && xinvoice.items) {
// Check that the EInvoice instance has the expected properties
if (einvoice && einvoice.from && einvoice.to && einvoice.items) {
// Check that the format is detected correctly
const format = xinvoice.getFormat();
const format = einvoice.getFormat();
const isCorrectFormat = format === expectedFormat ||
(expectedFormat === InvoiceFormat.CII && format === InvoiceFormat.FACTURX) ||
(expectedFormat === InvoiceFormat.FACTURX && format === InvoiceFormat.CII) ||
@ -94,7 +94,7 @@ async function testFiles(files: string[], expectedFormat: InvoiceFormat): Promis
exportFormat = 'xrechnung';
}
const exportedXml = await xinvoice.exportXml(exportFormat as any);
const exportedXml = await einvoice.exportXml(exportFormat as any);
if (exportedXml) {
// Success

View File

@ -1,11 +1,11 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { InvoiceFormat, ValidationLevel } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
// Test ZUGFeRD v1 and v2 corpus
tap.test('XInvoice should handle ZUGFeRD v1 and v2 corpus', async () => {
tap.test('EInvoice should handle ZUGFeRD v1 and v2 corpus', async () => {
// Get all ZUGFeRD files
const zugferdV1CorrectFiles = await findFiles(path.join(process.cwd(), 'test/assets/corpus/ZUGFeRDv1/correct'), '.pdf');
const zugferdV1FailFiles = await findFiles(path.join(process.cwd(), 'test/assets/corpus/ZUGFeRDv1/fail'), '.pdf');
@ -80,19 +80,19 @@ async function testFiles(files: string[], expectSuccess: boolean): Promise<{ suc
// Read the file
const fileBuffer = await fs.readFile(file);
// Create XInvoice from PDF
const xinvoice = await XInvoice.fromPdf(fileBuffer);
// Create EInvoice from PDF
const einvoice = await EInvoice.fromPdf(fileBuffer);
// Check that the XInvoice instance has the expected properties
if (xinvoice && xinvoice.from && xinvoice.to && xinvoice.items) {
// Check that the EInvoice instance has the expected properties
if (einvoice && einvoice.from && einvoice.to && einvoice.items) {
// Check that the format is detected correctly
const format = xinvoice.getFormat();
const format = einvoice.getFormat();
const isZugferd = [InvoiceFormat.ZUGFERD, InvoiceFormat.FACTURX, InvoiceFormat.CII].includes(format);
if (isZugferd) {
// Try to export the invoice to XML
try {
const exportedXml = await xinvoice.exportXml('facturx');
const exportedXml = await einvoice.exportXml('facturx');
if (exportedXml && exportedXml.includes('CrossIndustryInvoice')) {
// Success

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@fin.cx/xinvoice',
version: '4.2.0',
description: 'A TypeScript module for creating, manipulating, and embedding XML data within PDF files specifically tailored for xinvoice packages.'
name: '@fin.cx/einvoice',
version: '5.0.0',
description: 'A TypeScript module for creating, manipulating, and embedding XML data within PDF files specifically tailored for electronic invoice (einvoice) packages.'
}

View File

@ -3,8 +3,17 @@ import * as plugins from './plugins.js';
import { business, finance } from './plugins.js';
import type { TInvoice } from './interfaces/common.js';
import { InvoiceFormat, ValidationLevel } from './interfaces/common.js';
import type { ValidationResult, ValidationError, XInvoiceOptions, IPdf, ExportFormat } from './interfaces/common.js';
// PDF-related imports are handled by the PDF utilities
import type { ValidationResult, ValidationError, EInvoiceOptions, IPdf, ExportFormat } from './interfaces/common.js';
// Import error classes
import {
EInvoiceError,
EInvoiceParsingError,
EInvoiceValidationError,
EInvoicePDFError,
EInvoiceFormatError,
ErrorContext
} from './errors.js';
// Import factories
import { DecoderFactory } from './formats/factories/decoder.factory.js';
@ -23,7 +32,7 @@ import { FormatDetector } from './formats/utils/format.detector.js';
* Supports various invoice formats including Factur-X, ZUGFeRD, UBL, and XRechnung
* Implements TInvoice interface for seamless integration with existing systems
*/
export class XInvoice {
export class EInvoice {
// TInvoice interface properties
public id: string = '';
public invoiceId: string = '';
@ -59,11 +68,11 @@ export class XInvoice {
public electronicAddress?: { scheme: string; value: string };
public paymentOptions?: finance.IPaymentOptionInfo;
// XInvoice specific properties
// EInvoice specific properties
private xmlString: string = '';
private detectedFormat: InvoiceFormat = InvoiceFormat.UNKNOWN;
private validationErrors: ValidationError[] = [];
private options: XInvoiceOptions = {
private options: EInvoiceOptions = {
validateOnLoad: false,
validationLevel: ValidationLevel.SYNTAX
};
@ -73,10 +82,10 @@ export class XInvoice {
private pdfExtractor = new PDFExtractor();
/**
* Creates a new XInvoice instance
* Creates a new EInvoice instance
* @param options Configuration options
*/
constructor(options?: XInvoiceOptions) {
constructor(options?: EInvoiceOptions) {
// Initialize empty contact objects
this.from = this.createEmptyContact();
this.to = this.createEmptyContact();
@ -117,42 +126,42 @@ export class XInvoice {
}
/**
* Creates a new XInvoice instance from XML
* Creates a new EInvoice instance from XML
* @param xmlString XML content
* @param options Configuration options
* @returns XInvoice instance
* @returns EInvoice instance
*/
public static async fromXml(xmlString: string, options?: XInvoiceOptions): Promise<XInvoice> {
const xinvoice = new XInvoice(options);
public static async fromXml(xmlString: string, options?: EInvoiceOptions): Promise<EInvoice> {
const einvoice = new EInvoice(options);
// Load XML data
await xinvoice.loadXml(xmlString);
await einvoice.loadXml(xmlString);
return xinvoice;
return einvoice;
}
/**
* Creates a new XInvoice instance from PDF
* Creates a new EInvoice instance from PDF
* @param pdfBuffer PDF buffer
* @param options Configuration options
* @returns XInvoice instance
* @returns EInvoice instance
*/
public static async fromPdf(pdfBuffer: Uint8Array | Buffer, options?: XInvoiceOptions): Promise<XInvoice> {
const xinvoice = new XInvoice(options);
public static async fromPdf(pdfBuffer: Uint8Array | Buffer, options?: EInvoiceOptions): Promise<EInvoice> {
const einvoice = new EInvoice(options);
// Load PDF data
await xinvoice.loadPdf(pdfBuffer);
await einvoice.loadPdf(pdfBuffer);
return xinvoice;
return einvoice;
}
/**
* Loads XML data into the XInvoice instance
* Loads XML data into the EInvoice instance
* @param xmlString XML content
* @param validate Whether to validate the XML
* @returns This instance for chaining
*/
public async loadXml(xmlString: string, validate: boolean = false): Promise<XInvoice> {
public async loadXml(xmlString: string, validate: boolean = false): Promise<EInvoice> {
this.xmlString = xmlString;
// Detect format
@ -173,20 +182,32 @@ export class XInvoice {
await this.validate(this.options.validationLevel);
}
} catch (error) {
console.error('Error loading XML:', error);
throw error;
const context = new ErrorContext()
.add('format', this.detectedFormat)
.add('xmlLength', xmlString.length)
.addTimestamp()
.build();
if (error instanceof Error) {
throw new EInvoiceParsingError(
`Failed to load XML: ${error.message}`,
{ format: this.detectedFormat.toString(), ...context },
error
);
}
throw new EInvoiceParsingError('Failed to load XML: Unknown error', context);
}
return this;
}
/**
* Loads PDF data into the XInvoice instance
* Loads PDF data into the EInvoice instance
* @param pdfBuffer PDF buffer
* @param validate Whether to validate the extracted XML
* @returns This instance for chaining
*/
public async loadPdf(pdfBuffer: Uint8Array | Buffer, validate: boolean = false): Promise<XInvoice> {
public async loadPdf(pdfBuffer: Uint8Array | Buffer, validate: boolean = false): Promise<EInvoice> {
try {
// Extract XML from PDF using the consolidated extractor
const extractResult = await this.pdfExtractor.extractXml(pdfBuffer);
@ -205,8 +226,18 @@ export class XInvoice {
// Handle extraction result
if (!extractResult.success || !extractResult.xml) {
const errorMessage = extractResult.error ? extractResult.error.message : 'Unknown error extracting XML from PDF';
console.warn('XML extraction failed:', errorMessage);
throw new Error(`No XML found in PDF: ${errorMessage}`);
throw new EInvoicePDFError(
`Failed to extract XML from PDF: ${errorMessage}`,
'extract',
{
pdfInfo: {
size: pdfBuffer.length,
filename: 'invoice.pdf'
},
extractionMethod: 'standard'
},
extractResult.error?.originalError
);
}
// Load the extracted XML
@ -217,8 +248,15 @@ export class XInvoice {
return this;
} catch (error) {
console.error('Error loading PDF:', error);
throw error;
if (error instanceof EInvoiceError) {
throw error; // Re-throw our errors
}
throw new EInvoicePDFError(
`Failed to load PDF: ${error instanceof Error ? error.message : 'Unknown error'}`,
'extract',
{ pdfSize: pdfBuffer.length },
error instanceof Error ? error : undefined
);
}
}
@ -265,7 +303,14 @@ export class XInvoice {
*/
public async validate(level: ValidationLevel = ValidationLevel.SYNTAX): Promise<ValidationResult> {
if (!this.xmlString) {
throw new Error('No XML to validate');
throw new EInvoiceValidationError(
'No XML content available for validation',
[{
code: 'VAL-001',
message: 'XML content must be loaded before validation',
severity: 'error'
}]
);
}
try {
@ -280,17 +325,26 @@ export class XInvoice {
return result;
} catch (error) {
console.error('Error validating XML:', error);
const errorResult: ValidationResult = {
valid: false,
errors: [{
const validationError = new EInvoiceValidationError(
`Validation failed: ${error instanceof Error ? error.message : 'Unknown error'}`,
[{
code: 'VAL-ERROR',
message: `Validation error: ${error instanceof Error ? error.message : String(error)}`
message: error instanceof Error ? error.message : String(error),
severity: 'error'
}],
{
format: this.detectedFormat,
level
}
);
this.validationErrors = validationError.validationErrors;
return {
valid: false,
errors: validationError.validationErrors,
level
};
this.validationErrors = errorResult.errors;
return errorResult;
}
}
@ -330,7 +384,13 @@ export class XInvoice {
*/
public async exportPdf(format: ExportFormat = 'facturx'): Promise<IPdf> {
if (!this.pdf) {
throw new Error('No PDF data available. Use loadPdf() first or set the pdf property.');
throw new EInvoicePDFError(
'No PDF data available for export',
'create',
{
suggestion: 'Use loadPdf() first or set the pdf property before exporting'
}
);
}
// Generate XML in the specified format
@ -372,8 +432,19 @@ export class XInvoice {
// Handle potential errors
if (!result.success || !result.pdf) {
const errorMessage = result.error ? result.error.message : 'Unknown error embedding XML into PDF';
console.error('Error exporting PDF:', errorMessage);
throw new Error(`Failed to export PDF: ${errorMessage}`);
throw new EInvoicePDFError(
`Failed to embed XML into PDF: ${errorMessage}`,
'embed',
{
format,
xmlLength: xmlContent.length,
pdfInfo: {
filename: this.pdf.name,
size: this.pdf.buffer.length
}
},
result.error?.originalError
);
}
return result.pdf;

341
ts/errors.ts Normal file
View File

@ -0,0 +1,341 @@
/**
* Base error class for all EInvoice-related errors
*/
export class EInvoiceError extends Error {
public code: string;
public details?: any;
public cause?: Error;
constructor(message: string, code: string, details?: any, cause?: Error) {
super(message);
this.name = 'EInvoiceError';
this.code = code;
this.details = details;
this.cause = cause;
// Maintains proper stack trace for where our error was thrown (only available on V8)
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
}
}
/**
* Returns a detailed error message including cause if available
*/
public getDetailedMessage(): string {
let message = `${this.name} [${this.code}]: ${this.message}`;
if (this.details) {
message += `\nDetails: ${JSON.stringify(this.details, null, 2)}`;
}
if (this.cause) {
message += `\nCaused by: ${this.cause.message}`;
}
return message;
}
}
/**
* Error thrown when XML parsing fails
*/
export class EInvoiceParsingError extends EInvoiceError {
public line?: number;
public column?: number;
public xmlSnippet?: string;
constructor(
message: string,
details?: {
line?: number;
column?: number;
xmlSnippet?: string;
format?: string;
},
cause?: Error
) {
super(message, 'PARSE_ERROR', details, cause);
this.name = 'EInvoiceParsingError';
this.line = details?.line;
this.column = details?.column;
this.xmlSnippet = details?.xmlSnippet;
}
/**
* Returns a user-friendly error message with location information
*/
public getLocationMessage(): string {
let message = this.message;
if (this.line !== undefined && this.column !== undefined) {
message += ` at line ${this.line}, column ${this.column}`;
}
if (this.xmlSnippet) {
message += `\nNear: ${this.xmlSnippet}`;
}
return message;
}
}
/**
* Error thrown when validation fails
*/
export class EInvoiceValidationError extends EInvoiceError {
public validationErrors: Array<{
code: string;
message: string;
location?: string;
severity?: 'error' | 'warning';
}>;
constructor(
message: string,
validationErrors: Array<{
code: string;
message: string;
location?: string;
severity?: 'error' | 'warning';
}>,
details?: any
) {
super(message, 'VALIDATION_ERROR', details);
this.name = 'EInvoiceValidationError';
this.validationErrors = validationErrors;
}
/**
* Returns a formatted validation report
*/
public getValidationReport(): string {
let report = `${this.message}\n\nValidation errors:\n`;
for (const error of this.validationErrors) {
report += `- [${error.code}] ${error.message}`;
if (error.location) {
report += ` (at ${error.location})`;
}
if (error.severity) {
report += ` [${error.severity.toUpperCase()}]`;
}
report += '\n';
}
return report;
}
/**
* Gets validation errors by severity
*/
public getErrorsBySeverity(severity: 'error' | 'warning'): typeof this.validationErrors {
return this.validationErrors.filter(e => (e.severity || 'error') === severity);
}
}
/**
* Error thrown during PDF operations
*/
export class EInvoicePDFError extends EInvoiceError {
public operation: 'extract' | 'embed' | 'create' | 'validate';
public pdfInfo?: {
filename?: string;
size?: number;
pageCount?: number;
};
constructor(
message: string,
operation: 'extract' | 'embed' | 'create' | 'validate',
details?: any,
cause?: Error
) {
super(message, `PDF_${operation.toUpperCase()}_ERROR`, details, cause);
this.name = 'EInvoicePDFError';
this.operation = operation;
this.pdfInfo = details?.pdfInfo;
}
/**
* Returns recovery suggestions based on the operation
*/
public getRecoverySuggestions(): string[] {
const suggestions: string[] = [];
switch (this.operation) {
case 'extract':
suggestions.push(
'Ensure the PDF contains embedded XML data',
'Check if the PDF is a valid PDF/A-3 document',
'Try using a different extraction method',
'Verify the PDF is not corrupted'
);
break;
case 'embed':
suggestions.push(
'Ensure the source PDF is valid',
'Check that the XML data is well-formed',
'Verify sufficient memory is available',
'Try with a smaller XML payload'
);
break;
case 'create':
suggestions.push(
'Verify all required invoice data is provided',
'Check that the template PDF exists',
'Ensure write permissions for output directory'
);
break;
case 'validate':
suggestions.push(
'Check PDF/A-3 compliance',
'Verify XML attachment structure',
'Ensure proper PDF metadata'
);
break;
}
return suggestions;
}
}
/**
* Error thrown for format-specific issues
*/
export class EInvoiceFormatError extends EInvoiceError {
public sourceFormat?: string;
public targetFormat?: string;
public unsupportedFeatures?: string[];
constructor(
message: string,
details: {
sourceFormat?: string;
targetFormat?: string;
unsupportedFeatures?: string[];
conversionPath?: string;
},
cause?: Error
) {
super(message, 'FORMAT_ERROR', details, cause);
this.name = 'EInvoiceFormatError';
this.sourceFormat = details.sourceFormat;
this.targetFormat = details.targetFormat;
this.unsupportedFeatures = details.unsupportedFeatures;
}
/**
* Returns a compatibility report
*/
public getCompatibilityReport(): string {
let report = this.message;
if (this.sourceFormat && this.targetFormat) {
report += `\n\nConversion: ${this.sourceFormat}${this.targetFormat}`;
}
if (this.unsupportedFeatures && this.unsupportedFeatures.length > 0) {
report += '\n\nUnsupported features:';
for (const feature of this.unsupportedFeatures) {
report += `\n- ${feature}`;
}
}
return report;
}
}
/**
* Error recovery helper class
*/
export class ErrorRecovery {
/**
* Attempts to recover from a parsing error by cleaning the XML
*/
public static async attemptXMLRecovery(
xmlString: string,
error: EInvoiceParsingError
): Promise<{ success: boolean; cleanedXml?: string; message: string }> {
try {
let cleanedXml = xmlString;
// Remove BOM if present
if (cleanedXml.charCodeAt(0) === 0xFEFF) {
cleanedXml = cleanedXml.slice(1);
}
// Fix common encoding issues
cleanedXml = cleanedXml
.replace(/&(?!(amp|lt|gt|apos|quot);)/g, '&amp;')
.replace(/</g, (match, offset) => {
// Don't replace if it's part of <![CDATA[
const before = cleanedXml.substring(Math.max(0, offset - 10), offset);
if (before.includes('CDATA[')) return match;
return '&lt;';
});
// Try to fix unclosed tags if we have location info
if (error.line && error.xmlSnippet) {
// This is a simplified approach - real implementation would be more sophisticated
const lines = cleanedXml.split('\n');
if (lines[error.line - 1]) {
// Attempt basic fixes based on the error
// This is just a placeholder for more sophisticated recovery
}
}
return {
success: true,
cleanedXml,
message: 'Applied basic XML cleaning and encoding fixes'
};
} catch (recoveryError) {
return {
success: false,
message: `Recovery failed: ${recoveryError instanceof Error ? recoveryError.message : String(recoveryError)}`
};
}
}
/**
* Provides partial data extraction on validation failure
*/
public static extractPartialData(
xmlString: string,
format: string
): { success: boolean; partialData?: any; message: string } {
try {
// This would implement format-specific partial extraction
// For now, returning a placeholder
return {
success: false,
message: 'Partial data extraction not yet implemented'
};
} catch (error) {
return {
success: false,
message: `Partial extraction failed: ${error instanceof Error ? error.message : String(error)}`
};
}
}
}
/**
* Error context builder for detailed error information
*/
export class ErrorContext {
private context: Map<string, any> = new Map();
public add(key: string, value: any): this {
this.context.set(key, value);
return this;
}
public addTimestamp(): this {
this.context.set('timestamp', new Date().toISOString());
return this;
}
public addEnvironment(): this {
this.context.set('environment', {
nodeVersion: process.version,
platform: process.platform,
arch: process.arch
});
return this;
}
public build(): Record<string, any> {
return Object.fromEntries(this.context);
}
}

View File

@ -1,5 +1,5 @@
// Import main class
import { XInvoice } from './classes.xinvoice.js';
import { EInvoice } from './einvoice.js';
// Import interfaces
import * as common from './interfaces/common.js';
@ -37,6 +37,17 @@ import {
// Import format detector
import { FormatDetector } from './formats/utils/format.detector.js';
// Import error classes
import {
EInvoiceError,
EInvoiceParsingError,
EInvoiceValidationError,
EInvoicePDFError,
EInvoiceFormatError,
ErrorRecovery,
ErrorContext
} from './errors.js';
// Import Factur-X implementation
import { FacturXDecoder } from './formats/cii/facturx/facturx.decoder.js';
import { FacturXEncoder } from './formats/cii/facturx/facturx.encoder.js';
@ -66,7 +77,7 @@ export type {
// Format interfaces
ExportFormat,
XInvoiceOptions
EInvoiceOptions
} from './interfaces/common.js';
export { ValidationLevel, InvoiceFormat } from './interfaces/common.js';
@ -75,7 +86,7 @@ export { ValidationLevel, InvoiceFormat } from './interfaces/common.js';
export { common as interfaces };
// Export main class
export { XInvoice };
export { EInvoice };
// Export factories
export { DecoderFactory, EncoderFactory, ValidatorFactory };
@ -108,6 +119,17 @@ export {
// Export format detector
export { FormatDetector };
// Export error classes
export {
EInvoiceError,
EInvoiceParsingError,
EInvoiceValidationError,
EInvoicePDFError,
EInvoiceFormatError,
ErrorRecovery,
ErrorContext
};
/**
* Validates an XML string against the appropriate format rules
* @param xml XML content to validate
@ -134,9 +156,9 @@ export function validateXml(
}
/**
* Creates a new XInvoice instance
* @returns A new XInvoice instance
* Creates a new EInvoice instance
* @returns A new EInvoice instance
*/
export function createXInvoice(): XInvoice {
return new XInvoice();
export function createEInvoice(): EInvoice {
return new EInvoice();
}

View File

@ -1,4 +1,4 @@
export interface IXInvoice {
export interface IEInvoice {
InvoiceNumber: string;
DateIssued: string; // Date in ISO 8601 format
Seller: IParty;
@ -81,9 +81,9 @@ export interface ValidationResult {
}
/**
* Options for the XInvoice class
* Options for the EInvoice class
*/
export interface XInvoiceOptions {
export interface EInvoiceOptions {
validateOnLoad?: boolean; // Whether to validate when loading an invoice
validationLevel?: ValidationLevel; // Level of validation to perform
}

View File

@ -48,9 +48,9 @@ export interface ValidationResult {
}
/**
* Options for the XInvoice class
* Options for the EInvoice class
*/
export interface XInvoiceOptions {
export interface EInvoiceOptions {
validateOnLoad?: boolean; // Whether to validate when loading an invoice
validationLevel?: ValidationLevel; // Level of validation to perform
}