1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

create order from adminpanel

This commit is contained in:
Pavel 2020-06-18 11:39:25 +03:00
parent ea03321667
commit 68979e9c57
6 changed files with 22 additions and 3 deletions

View file

@ -1,3 +1,6 @@
## 2020-06-18 3.6.5
* Создание заказа из админпанели
## 2020-06-18 3.6.4
* Передача названия региона / штата / провинции вместо кода

View file

@ -1 +1 @@
3.6.4
3.6.5

View file

@ -86,6 +86,7 @@ if (!class_exists('WC_Retailcrm_Base')) {
add_action('wp_print_scripts', array($this, 'initialize_analytics'), 98);
add_action('wp_print_scripts', array($this, 'initialize_daemon_collector'), 99);
add_action('wp_print_footer_scripts', array($this, 'send_analytics'), 99);
add_action('woocommerce_new_order', array($this, 'create_order'), 11, 1);
if (!$this->get_option('deactivate_update_order')
|| $this->get_option('deactivate_update_order') == static::NO
@ -271,6 +272,18 @@ if (!class_exists('WC_Retailcrm_Base')) {
$this->customers->updateCustomer($customer_id);
}
/**
* Create order in retailCRM from admin panel
*
* @param int $order_id
*/
public function create_order($order_id)
{
if (is_admin()) {
$this->retailcrm_process_order($order_id);
}
}
/**
* Edit order in retailCRM
* @param int $order_id

View file

@ -45,6 +45,9 @@ API-ключ должен быть для отдельного магазина
2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании).
== Changelog ==
= 3.6.5 =
* Создание заказа из админпанели
= 3.6.4 =
* Передача названия региона / штата / провинции вместо кода

View file

@ -1,6 +1,6 @@
<?php
/**
* Version: 3.6.4
* Version: 3.6.5
* WC requires at least: 3.0
* WC tested up to: 3.9.3
* Plugin Name: WooCommerce retailCRM

View file

@ -15,7 +15,7 @@
*
*
* @link https://wordpress.org/plugins/woo-retailcrm/
* @version 3.6.4
* @version 3.6.5
*
* @package RetailCRM
*/