Changeset 3196637
- Timestamp:
- 11/25/2024 03:23:59 PM (16 months ago)
- Location:
- eshoplogisticru/trunk
- Files:
-
- 3 edited
-
Classes/Table.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
wc-eshop-logistic.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eshoplogisticru/trunk/Classes/Table.php
r3149181 r3196637 31 31 'name' => __( 'Имя' ), 32 32 'quantity' => __( 'Кол-во' ), 33 ' total' => __( 'Цена' ),33 'price' => __( 'Цена' ), 34 34 'weight' => __( 'Вес' ), 35 35 'width' => __( 'Ширина' ), … … 95 95 $records[$key]['product_id'] = $sku; 96 96 } 97 97 $price = $getProductDetail->get_price(); 98 98 $weight = $getProductDetail->get_weight(); 99 99 $width = $getProductDetail->get_width(); 100 100 $length = $getProductDetail->get_length(); 101 101 $height = $getProductDetail->get_height(); 102 $records[$key]['price'] = $price; 102 103 $records[$key]['weight'] = (isset($weight))?round(floatval($weight),2):0; 103 104 $records[$key]['width'] = (isset($width))?round(floatval($width),2):0; -
eshoplogisticru/trunk/readme.txt
r3186394 r3196637 4 4 Requires at least: 5.3 5 5 Tested up to: 6.6 6 Stable tag: 2.1.3 86 Stable tag: 2.1.39 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
eshoplogisticru/trunk/wc-eshop-logistic.php
r3186394 r3196637 6 6 * 7 7 * @link https://wp.eshoplogistic.ru/ 8 * @since 2.1.3 88 * @since 2.1.39 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.3 815 * Version: 2.1.39 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.3 8' );43 define( 'WC_ESL_VERSION', '2.1.39' ); 44 44 45 45 define( 'WC_ESL_DOMAIN', 'wc-esl' );
Note: See TracChangeset
for help on using the changeset viewer.