Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions application/helpers/XMLconfigs/UblPeppolV21.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
defined('BASEPATH') or exit('No direct script access allowed');

/*
* Helper metadata voor InvoicePlane - Peppol BIS Billing 3.0 (UBL 2.1)
*
* - 'full-name' : Label zoals zichtbaar in de template drop-down
* - 'countrycode': Landcode voor weergave (hier BE)
* - 'embedXML' : Peppol gebruikt losse UBL XML -> FALSE
* - 'XMLname' : Bestandsnaam voor de te genereren UBL-factuur
* - 'generator' : Basisnaam van de generatorklasse (zonder 'Xml' en zonder '.php')
* => verwijst naar class UblPeppolV21Xml in UblPeppolV21Xml.php
*/

$xml_setting = [
'full-name' => 'Peppol BIS Billing 3.0 (UBL 2.1)',
'countrycode' => 'BE',
'embedXML' => false,
'XMLname' => 'Peppol-BIS3-Invoice.xml',
'generator' => 'UblPeppolV21',
];
Loading