Plugin Directory

Changeset 3453961


Ignore:
Timestamp:
02/04/2026 04:51:12 PM (2 weeks ago)
Author:
shift8
Message:

Updated field mapping

Location:
shift8-integration-for-gravity-forms-and-sap-business-one/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • shift8-integration-for-gravity-forms-and-sap-business-one/trunk/readme.txt

    r3453902 r3453961  
    55* Requires at least: 5.0
    66* Tested up to: 6.8
    7 * Stable tag: 1.3.3
     7* Stable tag: 1.3.4
    88* Requires PHP: 7.4
    99* License: GPLv3
     
    104104
    105105== 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
    106112
    107113= 1.3.3 =
  • shift8-integration-for-gravity-forms-and-sap-business-one/trunk/shift8-gravitysap.php

    r3453902 r3453961  
    44 * Plugin URI: https://github.com/stardothosting/shift8-gravitysap
    55 * Description: Integrates Gravity Forms with SAP Business One, automatically creating Business Partners from form submissions.
    6  * Version: 1.3.3
     6 * Version: 1.3.4
    77 * Author: Shift8 Web
    88 * Author URI: https://shift8web.ca
     
    2828
    2929// Plugin constants
    30 define('SHIFT8_GRAVITYSAP_VERSION', '1.3.3');
     30define('SHIFT8_GRAVITYSAP_VERSION', '1.3.4');
    3131define('SHIFT8_GRAVITYSAP_PLUGIN_FILE', __FILE__);
    3232define('SHIFT8_GRAVITYSAP_PLUGIN_DIR', plugin_dir_path(__FILE__));
     
    577577            'Fax' => esc_html__('Fax Number', 'shift8-gravity-forms-sap-b1-integration'),
    578578            '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'),
    579582            'BPAddresses.Street' => esc_html__('Address: Street (BPAddresses)', 'shift8-gravity-forms-sap-b1-integration'),
    580583            'BPAddresses.City' => esc_html__('Address: City (BPAddresses)', 'shift8-gravity-forms-sap-b1-integration'),
     
    658661                'format' => 'url',
    659662                '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'
    660683            ),
    661684            'BPAddresses.Street' => array(
Note: See TracChangeset for help on using the changeset viewer.