Changeset 3485488
- Timestamp:
- 03/18/2026 10:00:57 AM (9 days ago)
- Location:
- gestoo-connector-for-peppol-invoicing/trunk
- Files:
-
- 4 edited
-
assets/js/admin-settings.js (modified) (1 diff)
-
gestoo-connector-for-peppol-invoicing.php (modified) (2 diffs)
-
includes/class-gestoo-peppol-wc-integration.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gestoo-connector-for-peppol-invoicing/trunk/assets/js/admin-settings.js
r3485472 r3485488 22 22 } 23 23 24 var $result = $( '<span id="gestoo-peppol- test-result" style="margin-left:10px;"></span>' );24 var $result = $( '<span id="gestoo-peppol-connection-result" style="margin-left:10px;"></span>' ); 25 25 $input.after( $result ); 26 26 -
gestoo-connector-for-peppol-invoicing/trunk/gestoo-connector-for-peppol-invoicing.php
r3485472 r3485488 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: 0. 6.06 * Version: 0.7.0 7 7 * Requires at least: 6.0 8 8 * Requires PHP: 7.4 … … 42 42 ); 43 43 44 define( 'GESTOO_PEPPOL_INVOICE_VERSION', '0. 6.0' );44 define( 'GESTOO_PEPPOL_INVOICE_VERSION', '0.7.0' ); 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-wc-integration.php
r3485472 r3485488 174 174 'title' => __( 'Mapping', 'gestoo-connector-for-peppol-invoicing' ), 175 175 'type' => 'title', 176 'desc' => __( 'Configure meta keys for VAT number and invoice language. First foundis used.', 'gestoo-connector-for-peppol-invoicing' ),176 'desc' => __( 'Configure meta keys for VAT number and invoice language. Keys are tested in order (one per line); the first that returns a non-empty value is used.', 'gestoo-connector-for-peppol-invoicing' ), 177 177 'tab' => 'general', 178 178 ], … … 180 180 'title' => __( 'VAT number meta keys (one per line)', 'gestoo-connector-for-peppol-invoicing' ), 181 181 'type' => 'textarea', 182 'description' => __( ' e.g.billing_tva, vat_number, _billing_vat_number', 'gestoo-connector-for-peppol-invoicing' ),182 'description' => __( 'Keys are tested in order; first non-empty value wins. Examples: billing_tva, vat_number, _billing_vat_number', 'gestoo-connector-for-peppol-invoicing' ), 183 183 'default' => "billing_tva\nvat_number", 184 184 'css' => 'width: 100%; min-height: 80px;', … … 188 188 'title' => __( 'Invoice language meta keys (one per line)', 'gestoo-connector-for-peppol-invoicing' ), 189 189 'type' => 'textarea', 190 'description' => __( ' e.g.wcpdf_trp_language, trp_language. Fallback: site language.', 'gestoo-connector-for-peppol-invoicing' ),190 'description' => __( 'Keys are tested in order; first non-empty value wins. Examples: wcpdf_trp_language, trp_language. Fallback: site language.', 'gestoo-connector-for-peppol-invoicing' ), 191 191 'default' => "wcpdf_trp_language\ntrp_language", 192 192 'css' => 'width: 100%; min-height: 80px;', -
gestoo-connector-for-peppol-invoicing/trunk/readme.txt
r3485472 r3485488 5 5 Requires at least: 6.0 6 6 Tested up to: 6.9 7 Stable tag: 0. 6.07 Stable tag: 0.7.0 8 8 Requires PHP: 7.4 9 9 Requires Plugins: woocommerce … … 80 80 == Changelog == 81 81 82 = 0.7.0 = 83 * Fixed Test payload result not visible (ID conflict between API token and payload result div). 84 * Improved mapping descriptions: explicit note that keys are tested in order and first non-empty value wins. 85 82 86 = 0.6.0 = 83 87 * Reorganized settings page into tabs: General settings | Diagnostic | Test order. … … 122 126 == Upgrade Notice == 123 127 128 = 0.7.0 = 129 Fixes Test payload result visibility and improves mapping field descriptions. Safe to update. 130 124 131 = 0.6.0 = 125 132 Settings page now organized in three tabs (General, Diagnostic, Test order). Buttons fixed. Safe to update.
Note: See TracChangeset
for help on using the changeset viewer.