Plugin Directory

Changeset 3196637


Ignore:
Timestamp:
11/25/2024 03:23:59 PM (16 months ago)
Author:
eshoplogistic
Message:

Правки для выгрузки заказов

Location:
eshoplogisticru/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • eshoplogisticru/trunk/Classes/Table.php

    r3149181 r3196637  
    3131            'name'   => __( 'Имя' ),
    3232            'quantity'  => __( 'Кол-во' ),
    33             'total'  => __( 'Цена' ),
     33            'price'  => __( 'Цена' ),
    3434            'weight' => __( 'Вес' ),
    3535            'width'  => __( 'Ширина' ),
     
    9595                    $records[$key]['product_id'] = $sku;
    9696                }
    97 
     97                $price = $getProductDetail->get_price();
    9898                $weight = $getProductDetail->get_weight();
    9999                $width = $getProductDetail->get_width();
    100100                $length = $getProductDetail->get_length();
    101101                $height = $getProductDetail->get_height();
     102                $records[$key]['price'] = $price;
    102103                $records[$key]['weight'] = (isset($weight))?round(floatval($weight),2):0;
    103104                $records[$key]['width'] = (isset($width))?round(floatval($width),2):0;
  • eshoplogisticru/trunk/readme.txt

    r3186394 r3196637  
    44Requires at least: 5.3
    55Tested up to: 6.6
    6 Stable tag: 2.1.38
     6Stable tag: 2.1.39
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • eshoplogisticru/trunk/wc-eshop-logistic.php

    r3186394 r3196637  
    66 *
    77 * @link              https://wp.eshoplogistic.ru/
    8  * @since             2.1.38
     8 * @since             2.1.39
    99 * @package           WC_Eshop_Logistic
    1010 *
     
    1313 * Plugin URI:        https://wp.eshoplogistic.ru/
    1414 * Description:       Несколько служб доставки в одной интеграции: CDEK, DPD, Boxberry, IML, Почта России, Деловые Линии, ПЭК, Dostavista, GTD, Байкал Сервис и др.
    15  * Version:           2.1.38
     15 * Version:           2.1.39
    1616 * Author:            eShopLogistic
    1717 * Author URI:        https://eshoplogistic.ru/p747575
     
    4141define( 'WC_ESL_PLUGIN_DIR', plugin_dir_path(__FILE__) );
    4242
    43 define( 'WC_ESL_VERSION', '2.1.38' );
     43define( 'WC_ESL_VERSION', '2.1.39' );
    4444
    4545define( 'WC_ESL_DOMAIN', 'wc-esl' );
Note: See TracChangeset for help on using the changeset viewer.