Changeset 3161540
- Timestamp:
- 10/02/2024 01:38:49 PM (18 months ago)
- Location:
- eshoplogisticru/trunk
- Files:
-
- 3 edited
-
Classes/Shipping/ExportFileds.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wc-eshop-logistic.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eshoplogisticru/trunk/Classes/Shipping/ExportFileds.php
r3150114 r3161540 149 149 $tariffs = $eshopLogisticApi->apiServiceTariffs( $name ); 150 150 $tariffs = $tariffs->data(); 151 if ( isset( $shippingMethods['data']['terminal']['tariff'] ) ) {152 $selectedTariffCode = $shippingMethods['data']['terminal']['tariff']['code'] ;151 if ( isset( $shippingMethods['data']['terminal']['tariff'] ) || isset( $shippingMethods['tariff']['code'] ) ) { 152 $selectedTariffCode = $shippingMethods['data']['terminal']['tariff']['code'] ?? $shippingMethods['tariff']['code']; 153 153 if ( isset( $tariffs[ $selectedTariffCode ] ) ) { 154 154 $value[ $selectedTariffCode ] = $tariffs[ $selectedTariffCode ]; -
eshoplogisticru/trunk/readme.txt
r3154034 r3161540 4 4 Requires at least: 5.3 5 5 Tested up to: 5.8 6 Stable tag: 2.1.2 76 Stable tag: 2.1.28e 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
eshoplogisticru/trunk/wc-eshop-logistic.php
r3154034 r3161540 6 6 * 7 7 * @link https://wp.eshoplogistic.ru/ 8 * @since 2.1.2 78 * @since 2.1.28 9 9 * @package WC_Eshop_Logistic 10 10 * … … 13 13 * Plugin URI: https://wp.eshoplogistic.ru/ 14 14 * Description: Несколько служб доставки в одной интеграции: CDEK, DPD, Boxberry, IML, Почта России, Деловые Линии, ПЭК, Dostavista, GTD, Байкал Сервис и др. 15 * Version: 2.1.2 715 * Version: 2.1.28 16 16 * Author: eShopLogistic 17 17 * Author URI: https://eshoplogistic.ru/p747575 … … 41 41 define( 'WC_ESL_PLUGIN_DIR', plugin_dir_path(__FILE__) ); 42 42 43 define( 'WC_ESL_VERSION', '2.1.2 7' );43 define( 'WC_ESL_VERSION', '2.1.28' ); 44 44 45 45 define( 'WC_ESL_DOMAIN', 'wc-esl' );
Note: See TracChangeset
for help on using the changeset viewer.