Changeset 3016297
- Timestamp:
- 01/02/2024 06:56:01 AM (2 years ago)
- Location:
- bsecure/trunk
- Files:
-
- 4 edited
-
bsecure.php (modified) (1 diff)
-
includes/class-bsecure-checkout.php (modified) (2 diffs)
-
includes/class-wc-bsecure.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bsecure/trunk/bsecure.php
r2974279 r3016297 6 6 * Author: bSecure 7 7 * Author URI: https://bsecure.pk/ 8 * Version: 1.7. 78 * Version: 1.7.8 9 9 * 10 10 */ -
bsecure/trunk/includes/class-bsecure-checkout.php
r2961101 r3016297 407 407 $msg = __("This order is ".$statusTitle." at bSecure portal but status is different at woocommerce.", "wc-bsecure"); 408 408 } 409 $isStatusUpdated = $this->updateOrderStatus($order,$order_data); 410 411 if($isStatusUpdated) 412 $this->bsecure_action_woocommerce_order_status_changed($order->get_id(), true); 409 410 411 if($order->get_payment_method() == 'bsecures' || ($order_data->payment_method->id == 1 && $order->get_payment_method() == 'cod' )){ 412 413 $isStatusUpdated = $this->updateOrderStatus($order,$order_data); 414 415 if($isStatusUpdated) 416 $this->bsecure_action_woocommerce_order_status_changed($order->get_id(), true); 417 }else{ 418 419 $msg = __("This order is no more related to bSecure.", "wc-bsecure"); 420 } 421 413 422 414 423 $return_json = ['status' => true, 'msg' => $msg, 'bsecure_order_id' => $bsecure_order_id]; … … 2341 2350 2342 2351 } 2352 2353 2354 if($order->get_payment_method() == 'bsecures' || ($order_data->payment_method->id == 1 && $order->get_payment_method() == 'cod' )){ 2355 2356 $order->update_status($this->woocommerceStatus($placement_status, $order_data),"",true); 2357 2358 } 2343 2359 2344 $order->update_status($this->woocommerceStatus($placement_status, $order_data),"",true);2360 2345 2361 $order->save(); 2346 2362 -
bsecure/trunk/includes/class-wc-bsecure.php
r2974279 r3016297 30 30 31 31 const PLUGIN_NAME = 'WooCommerce'; 32 const PLUGIN_VERSION = '1.7. 7';32 const PLUGIN_VERSION = '1.7.8'; 33 33 const QISSTPAY_PER_MONTH = 4; 34 34 const QISSTPAY_AMOUNT_MAX_LIMIT = 50000; -
bsecure/trunk/readme.txt
r2974279 r3016297 3 3 Tags: payment, secure, checkout 4 4 Requires at least: 4.7 5 Tested up to: 6. 35 Tested up to: 6.4 6 6 Requires PHP: 5.6.20 or above 7 Stable tag: 1.7. 77 Stable tag: 1.7.8 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 121 121 * 1.7.7 Released with General Update & Bug Fixes 122 122 123 = 1.7.8 January 02, 2024 = 124 * 1.7.8 Released with General Update & Bug Fixes 125 123 126 == Upgrade Notice == 124 127 = 1.0 = … … 176 179 * 1.7.7 Released with General Update and Bug Fixes 177 180 181 = 1.7.8 January 02, 2024 = 182 * 1.7.8 Released with General Update and Bug Fixes 183 178 184 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.