Changeset 3453961
- Timestamp:
- 02/04/2026 04:51:12 PM (2 weeks ago)
- Location:
- shift8-integration-for-gravity-forms-and-sap-business-one/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
shift8-gravitysap.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shift8-integration-for-gravity-forms-and-sap-business-one/trunk/readme.txt
r3453902 r3453961 5 5 * Requires at least: 5.0 6 6 * Tested up to: 6.8 7 * Stable tag: 1.3. 37 * Stable tag: 1.3.4 8 8 * Requires PHP: 7.4 9 9 * License: GPLv3 … … 104 104 105 105 == Changelog == 106 107 = 1.3.4 = 108 * **NEW**: Added Business Partner Group (GroupCode) field mapping 109 * **NEW**: Added Currency field mapping 110 * **NEW**: Added Price List (PriceListNum) field mapping from Payment Terms 111 * **STABILITY**: All 99 tests passing with 231 assertions 106 112 107 113 = 1.3.3 = -
shift8-integration-for-gravity-forms-and-sap-business-one/trunk/shift8-gravitysap.php
r3453902 r3453961 4 4 * Plugin URI: https://github.com/stardothosting/shift8-gravitysap 5 5 * Description: Integrates Gravity Forms with SAP Business One, automatically creating Business Partners from form submissions. 6 * Version: 1.3. 36 * Version: 1.3.4 7 7 * Author: Shift8 Web 8 8 * Author URI: https://shift8web.ca … … 28 28 29 29 // Plugin constants 30 define('SHIFT8_GRAVITYSAP_VERSION', '1.3. 3');30 define('SHIFT8_GRAVITYSAP_VERSION', '1.3.4'); 31 31 define('SHIFT8_GRAVITYSAP_PLUGIN_FILE', __FILE__); 32 32 define('SHIFT8_GRAVITYSAP_PLUGIN_DIR', plugin_dir_path(__FILE__)); … … 577 577 'Fax' => esc_html__('Fax Number', 'shift8-gravity-forms-sap-b1-integration'), 578 578 'Website' => esc_html__('Website', 'shift8-gravity-forms-sap-b1-integration'), 579 'GroupCode' => esc_html__('Business Partner Group', 'shift8-gravity-forms-sap-b1-integration'), 580 'Currency' => esc_html__('Currency', 'shift8-gravity-forms-sap-b1-integration'), 581 'PriceListNum' => esc_html__('Price List (Payment Terms)', 'shift8-gravity-forms-sap-b1-integration'), 579 582 'BPAddresses.Street' => esc_html__('Address: Street (BPAddresses)', 'shift8-gravity-forms-sap-b1-integration'), 580 583 'BPAddresses.City' => esc_html__('Address: City (BPAddresses)', 'shift8-gravity-forms-sap-b1-integration'), … … 658 661 'format' => 'url', 659 662 'description' => 'Website URL' 663 ), 664 'GroupCode' => array( 665 'max_length' => 10, 666 'required' => false, 667 'format' => 'integer', 668 'description' => 'Business Partner Group Code', 669 'validation_message' => 'Enter the numeric Group Code from SAP (e.g., 100, 101)' 670 ), 671 'Currency' => array( 672 'max_length' => 3, 673 'required' => false, 674 'description' => 'Currency Code', 675 'validation_message' => 'Use 3-letter currency codes (CAD, USD, EUR)' 676 ), 677 'PriceListNum' => array( 678 'max_length' => 10, 679 'required' => false, 680 'format' => 'integer', 681 'description' => 'Price List Number', 682 'validation_message' => 'Enter the numeric Price List number from SAP' 660 683 ), 661 684 'BPAddresses.Street' => array(
Note: See TracChangeset
for help on using the changeset viewer.