Changeset 3309632
- Timestamp:
- 06/11/2025 08:24:24 AM (9 months ago)
- Location:
- extendago-wp-connection/trunk
- Files:
-
- 4 edited
-
extendago-wp-connection.php (modified) (1 diff)
-
includes/api/class-extendago-web-api-functions.php (modified) (1 diff)
-
includes/cronjob/class-extendago-cronjob-functions.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
extendago-wp-connection/trunk/extendago-wp-connection.php
r3264425 r3309632 4 4 Plugin URI: https://extendago-connect.com/ 5 5 Description: The Wordpress plugin for connecting Woocommerce with Extenda GO / Wallmob. You can manage your products inside Extenda GO or make your webshop as leading foor product manangement. You Stock changes will be two-way binding. 6 Version: 1.6. 56 Version: 1.6.6 7 7 Requires Plugins: woocommerce 8 8 Author: Arture B.V. -
extendago-wp-connection/trunk/includes/api/class-extendago-web-api-functions.php
r3262736 r3309632 214 214 $Product->set_date_on_sale_to(date('Y-m-d', $product['discount_date_until'])); 215 215 } 216 } 217 else{ 218 $Product->set_date_on_sale_from(''); 219 $Product->set_date_on_sale_to(''); 216 220 } 217 221 } -
extendago-wp-connection/trunk/includes/cronjob/class-extendago-cronjob-functions.php
r3262736 r3309632 646 646 // Check if product is processed 647 647 if( $response == 'true' ) { 648 $products->$key->processed = 'true'; 648 if ( is_object($products) ) { 649 if ( ! isset($products->$key) || ! is_object($products->$key) ) { 650 $products->$key = new stdClass(); 651 } 652 $products->$key->processed = 'true'; 653 } elseif ( is_array($products) ) { 654 if ( ! isset($products[$key]) || ! is_array($products[$key]) ) { 655 $products[$key] = []; 656 } 657 $products[$key]['processed'] = 'true'; 658 } 659 649 660 file_put_contents( $directory . '/' . $file, json_encode($products) ); 650 661 … … 1073 1084 1074 1085 if( empty($ProductResponse) || isset($ProductResponse['error']) ){ 1075 $this->logging->log_file_write('Error | Export productResponse 1: ' . $ProductResponse['error']);1086 $this->logging->log_file_write('Error | Export '.$product['id'].' productResponse 1: ' . $ProductResponse['error']); 1076 1087 } 1077 1088 … … 1092 1103 1093 1104 if (empty($ProductResponse) || isset($ProductResponse['error'])) { 1094 $this->logging->log_file_write('EXPORT | ProductResponse 2: ' . $ProductResponse['error']);1105 $this->logging->log_file_write('EXPORT | Export '.$product['id'].' productResponse 2: ' . $ProductResponse['error']); 1095 1106 } 1096 1107 } 1097 1108 } 1098 1109 else{ 1099 $this->logging->log_file_write('Error | Export productResponse 3: ' . $ProductResponse['error']);1110 $this->logging->log_file_write('Error | Export '.$product['id'].' productResponse 3: ' . $ProductResponse['error']); 1100 1111 } 1101 1112 } -
extendago-wp-connection/trunk/readme.txt
r3264425 r3309632 4 4 Tags: extendago, extenda, woocommerce, arture, POS, 5 5 Requires at least: 6.0 6 Tested up to: 6. 7.17 Stable tag: 1.6. 56 Tested up to: 6.8.1 7 Stable tag: 1.6.6 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 31 31 == Changelog = 32 32 33 = 1.6.6 = 34 * Bugfix for product discount batches 35 33 36 = 1.6.5 = 34 37 * Improved and secure log file download function
Note: See TracChangeset
for help on using the changeset viewer.