Plugin Directory

Changeset 3485872


Ignore:
Timestamp:
03/18/2026 04:37:51 PM (8 days ago)
Author:
webdigit
Message:

Release v1.0.2

Location:
gestoo-connector-for-peppol-invoicing/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gestoo-connector-for-peppol-invoicing/trunk/gestoo-connector-for-peppol-invoicing.php

    r3485856 r3485872  
    44 * Plugin URI:        https://www.gestoo.be
    55 * Description:       WooCommerce to GestOO connector: create invoices and send via Peppol. Official invoicing stays in GestOO.
    6  * Version:           1.0.1
     6 * Version:           1.0.2
    77 * Requires at least: 6.0
    88 * Requires PHP:      7.4
     
    4242);
    4343
    44 define( 'GESTOO_PEPPOL_INVOICE_VERSION', '1.0.1' );
     44define( 'GESTOO_PEPPOL_INVOICE_VERSION', '1.0.2' );
    4545define( 'GESTOO_PEPPOL_INVOICE_PLUGIN_FILE', __FILE__ );
    4646define( 'GESTOO_PEPPOL_INVOICE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • gestoo-connector-for-peppol-invoicing/trunk/includes/class-gestoo-peppol-order-handler.php

    r3485856 r3485872  
    423423            'last_name'        => $order->get_billing_last_name(),
    424424            'company'          => $order->get_billing_company(),
     425            'phone'            => $order->get_billing_phone(),
    425426            'vat_number'       => $vat_number,
    426427            'company_id'       => $vat_number,
  • gestoo-connector-for-peppol-invoicing/trunk/readme.txt

    r3485856 r3485872  
    55Requires at least: 6.0
    66Tested up to: 6.9
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88Requires PHP: 7.4
    99Requires Plugins: woocommerce
     
    8080== Changelog ==
    8181
     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
    8286= 1.0.1 =
    8387* 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".
     
    148152== Upgrade Notice ==
    149153
     154= 1.0.2 =
     155Billing phone sent to GestOO for contact creation. VAT stored with separate country code. Safe to update.
     156
    150157= 1.0.1 =
    151158VAT 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.