Changeset 3485872
- Timestamp:
- 03/18/2026 04:37:51 PM (8 days ago)
- Location:
- gestoo-connector-for-peppol-invoicing/trunk
- Files:
-
- 3 edited
-
gestoo-connector-for-peppol-invoicing.php (modified) (2 diffs)
-
includes/class-gestoo-peppol-order-handler.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gestoo-connector-for-peppol-invoicing/trunk/gestoo-connector-for-peppol-invoicing.php
r3485856 r3485872 4 4 * Plugin URI: https://www.gestoo.be 5 5 * Description: WooCommerce to GestOO connector: create invoices and send via Peppol. Official invoicing stays in GestOO. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Requires at least: 6.0 8 8 * Requires PHP: 7.4 … … 42 42 ); 43 43 44 define( 'GESTOO_PEPPOL_INVOICE_VERSION', '1.0. 1' );44 define( 'GESTOO_PEPPOL_INVOICE_VERSION', '1.0.2' ); 45 45 define( 'GESTOO_PEPPOL_INVOICE_PLUGIN_FILE', __FILE__ ); 46 46 define( 'GESTOO_PEPPOL_INVOICE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
gestoo-connector-for-peppol-invoicing/trunk/includes/class-gestoo-peppol-order-handler.php
r3485856 r3485872 423 423 'last_name' => $order->get_billing_last_name(), 424 424 'company' => $order->get_billing_company(), 425 'phone' => $order->get_billing_phone(), 425 426 'vat_number' => $vat_number, 426 427 'company_id' => $vat_number, -
gestoo-connector-for-peppol-invoicing/trunk/readme.txt
r3485856 r3485872 5 5 Requires at least: 6.0 6 6 Tested up to: 6.9 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 Requires PHP: 7.4 9 9 Requires Plugins: woocommerce … … 80 80 == Changelog == 81 81 82 = 1.0.2 = 83 * Customer payload now includes billing phone. GestOO creates/updates a contact with name, email, and phone when creating invoices from WooCommerce orders. 84 * VAT number: GestOO stores country code (ISO) and digits separately for PEPPOL compliance. 85 82 86 = 1.0.1 = 83 87 * VAT number normalization: extract country code and digits only (no spaces, dots, hyphens) before sending to GestOO. Fixes PEPPOL rejection when WooCommerce stores "BE 056.776.111" or "056.776.111". … … 148 152 == Upgrade Notice == 149 153 154 = 1.0.2 = 155 Billing phone sent to GestOO for contact creation. VAT stored with separate country code. Safe to update. 156 150 157 = 1.0.1 = 151 158 VAT normalization fix: removes spaces/dots/hyphens from VAT numbers. Detailed Peppol errors (e.g. mod97) now shown in WooCommerce. Safe to update.
Note: See TracChangeset
for help on using the changeset viewer.