Changeset 2647480
- Timestamp:
- 12/21/2021 06:14:36 PM (4 years ago)
- Location:
- woo-pelecard-gateway/trunk
- Files:
-
- 5 edited
-
includes/Invoices/EZCount.php (modified) (1 diff)
-
includes/Plugin.php (modified) (1 diff)
-
includes/Transaction.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
woocommerce-pelecard-gateway.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-pelecard-gateway/trunk/includes/Invoices/EZCount.php
r2467432 r2647480 72 72 'vat_type' => $this->get_option( 'ezcount_vat_type' ), 73 73 'item' => $this->get_formatted_items( $order ), 74 'auto_balance' => true, 74 75 'forceItemsIntoNonItemsDocument' => 400 === (int) $this->get_option( 'ezcount_doc_type' ), 75 76 ], $order ); -
woo-pelecard-gateway/trunk/includes/Plugin.php
r2566392 r2647480 18 18 * @var string $version 19 19 */ 20 public static $version = '1.4. 8';20 public static $version = '1.4.9'; 21 21 22 22 /** -
woo-pelecard-gateway/trunk/includes/Transaction.php
r2566392 r2647480 156 156 } elseif ( $this->meta_exists( 'ParamX' ) ) { 157 157 $order_id = $this->get_meta( 'ParamX', true, $context ); 158 } 159 160 return (int) ( $order_id ?? 0 ); 158 } else { 159 $order_id = 0; 160 } 161 162 return (int) apply_filters( 'wpg/transaction/order_id', $order_id, $context, $this ); 161 163 } 162 164 -
woo-pelecard-gateway/trunk/readme.txt
r2566392 r2647480 4 4 Requires at least: 5.5 5 5 Tested up to: 5.8 6 Stable tag: 1.4. 86 Stable tag: 1.4.9 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 55 55 56 56 == Changelog == 57 58 = 1.4.9 = 59 * Added the 'wpg/transaction/order_id' filter hook. 60 * Added the auto_balance parameter to EZCount integration. 57 61 58 62 = 1.4.8 = -
woo-pelecard-gateway/trunk/woocommerce-pelecard-gateway.php
r2566392 r2647480 4 4 * Plugin URI: https://wordpress.org/plugins/woo-pelecard-gateway/ 5 5 * Description: Extends WooCommerce with Pelecard payment gateway. 6 * Version: 1.4. 86 * Version: 1.4.9 7 7 * Author: Ido Friedlander 8 8 * Author URI: https://profiles.wordpress.org/idofri/ … … 12 12 * 13 13 * WC requires at least: 3.0 14 * WC tested up to: 5.414 * WC tested up to: 6.0 15 15 */ 16 16
Note: See TracChangeset
for help on using the changeset viewer.