Changeset 3002302
- Timestamp:
- 11/27/2023 05:38:28 PM (2 years ago)
- Location:
- wooms
- Files:
-
- 8 edited
- 1 copied
-
tags/9.8 (copied) (copied from wooms/trunk)
-
tags/9.8/includes/Orders.php (modified) (1 diff)
-
tags/9.8/includes/ProductStocks.php (modified) (2 diffs)
-
tags/9.8/readme.txt (modified) (1 diff)
-
tags/9.8/wooms.php (modified) (1 diff)
-
trunk/includes/Orders.php (modified) (1 diff)
-
trunk/includes/ProductStocks.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wooms.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wooms/tags/9.8/includes/Orders.php
r2984550 r3002302 1072 1072 public static function add_settings() 1073 1073 { 1074 add_settings_section('wooms_section_orders', 'Заказы - передача в МойСклад', '', 'mss-settings');1074 add_settings_section('wooms_section_orders', 'Заказы', '', 'mss-settings'); 1075 1075 1076 1076 $orders_sender_enable_key = 'wooms_orders_sender_enable'; -
wooms/tags/9.8/includes/ProductStocks.php
r2985601 r3002302 197 197 198 198 if ( empty( get_option( 'wooms_warehouse_count' ) ) ) { 199 $product->set_manage_stock( 'no');199 $product->set_manage_stock( true ); 200 200 } else { 201 201 if ( $product->is_type( 'variable' ) ) { 202 202 203 203 //для вариативных товаров доступность определяется наличием вариаций 204 $product->set_manage_stock( 'no');204 $product->set_manage_stock( false ); 205 205 } else { 206 $product->set_manage_stock( 'yes');206 $product->set_manage_stock( true ); 207 207 } 208 208 } … … 227 227 return $product; 228 228 } 229 230 231 229 232 230 /** -
wooms/tags/9.8/readme.txt
r2989239 r3002302 76 76 77 77 == Changelog == 78 79 = 9.8 = 80 - Тест совместимости WooCommerce 8.3.1 81 - fix: Перестала работать синхронизация на версии 9.6 https://github.com/wpcraft-ru/wooms/issues/522 82 78 83 79 84 = 9.7 = -
wooms/tags/9.8/wooms.php
r2989239 r3002302 20 20 * WC tested up to: 7.2.2 21 21 * 22 * Version: 9. 722 * Version: 9.8 23 23 */ 24 24 -
wooms/trunk/includes/Orders.php
r2984550 r3002302 1072 1072 public static function add_settings() 1073 1073 { 1074 add_settings_section('wooms_section_orders', 'Заказы - передача в МойСклад', '', 'mss-settings');1074 add_settings_section('wooms_section_orders', 'Заказы', '', 'mss-settings'); 1075 1075 1076 1076 $orders_sender_enable_key = 'wooms_orders_sender_enable'; -
wooms/trunk/includes/ProductStocks.php
r2985601 r3002302 197 197 198 198 if ( empty( get_option( 'wooms_warehouse_count' ) ) ) { 199 $product->set_manage_stock( 'no');199 $product->set_manage_stock( true ); 200 200 } else { 201 201 if ( $product->is_type( 'variable' ) ) { 202 202 203 203 //для вариативных товаров доступность определяется наличием вариаций 204 $product->set_manage_stock( 'no');204 $product->set_manage_stock( false ); 205 205 } else { 206 $product->set_manage_stock( 'yes');206 $product->set_manage_stock( true ); 207 207 } 208 208 } … … 227 227 return $product; 228 228 } 229 230 231 229 232 230 /** -
wooms/trunk/readme.txt
r2989239 r3002302 76 76 77 77 == Changelog == 78 79 = 9.8 = 80 - Тест совместимости WooCommerce 8.3.1 81 - fix: Перестала работать синхронизация на версии 9.6 https://github.com/wpcraft-ru/wooms/issues/522 82 78 83 79 84 = 9.7 = -
wooms/trunk/wooms.php
r2989239 r3002302 20 20 * WC tested up to: 7.2.2 21 21 * 22 * Version: 9. 722 * Version: 9.8 23 23 */ 24 24
Note: See TracChangeset
for help on using the changeset viewer.