Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix export archive from CRM with console script #355

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2024-12-19 4.8.15
* Add export archive in CRM
ellynoize marked this conversation as resolved.
Show resolved Hide resolved

## 2024-11-07 4.8.14
* The method for determining the stock quantity has been optimized

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.8.14
4.8.15
19 changes: 12 additions & 7 deletions doc/FAQ/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,26 @@
В модуле возможно сделать необходимые кастомизация для генерации ICML-файла в желаемом формате <br>

**Выгрузка архивных данных** <br>
Ранее модуль *(до версии 4.3.3)* мог выгружать не более 700-800 архивных заказов *(т.к. выгрузка происходила по web-хиту, работа скрипта была ограничена и не все данные успевали прогрузится в CRM)*, этот момент был доработан *(#70113)* и сейчас модуль загружает из Woo в CRM все присутствующие заказы пачками по 50 шт *(сделано для того, чтобы у слабых серверов не возникало проблем с загрузкой)*.
Также заказы архивные данные можно выгрузить с использованием консольного скрипта: нужно скачать этот скрипт, загрузить его в корень сайта на сервере
Архивные данные можно выгрузить в CRM с использованием консольного скрипта: нужно скачать этот скрипт, загрузить его в корень сайта на сервере (по умолчанию - /var/www/html)
ellynoize marked this conversation as resolved.
Show resolved Hide resolved
**upload_to_crm.php** *(название файла)*

<?php
/** Load WordPress Bootstrap **/
require_once dirname( __FILE__ ) . '/wp-load.php';
do_action("wp_ajax_do_upload");
do_action("wp_console_upload", $argv[1] ?? '', $argv[2] ?? 0);
После чего в командной строке ввести команду

> php upload_to_crm.php
> php upload_to_crm.php orders/customers/full_upload номер_страницы

тем самым запустить выполнение скрипта. Для последнего действия нужно использовать ssh.
После выполнения данных действий дожидаемся завершение работы. При этом информация об ошибках при выгрузке заказов будет фиксироваться в разделе WooCommerce "Статус", "Журналы".
Как скрипт завершит работу в командной строке появляется возможность ввести новую команду.
тем самым запустить выполнение скрипта. Для последнего действия нужно использовать ssh.

Пример:

> php upload_to_crm.php orders 3

В указанном примере будут выгружены архивные заказы, начиная с 3 страницы. 1 страница содержит 50 заказов. Счет страниц начинается с 0.

При указании параметра orders будут выгружены архивные заказы. При указании customers - архив клиентов. full_upload - выгрузка архива клиентов и заказов (при этом выполняется выгрузка **всех** клиентов и заказов из CMS начиная с нулевой страницы)

**Работа с зонами доставки** *(WooCommerce - Настройки - Доставка - Зоны доставки)*

Expand Down
5 changes: 5 additions & 0 deletions src/include/class-wc-retailcrm-base.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ public function __construct($retailcrm = false)
add_action('admin_enqueue_scripts', [$this, 'include_files_for_admin'], 101);
add_action('woocommerce_new_order', [$this, 'fill_array_create_orders'], 11, 1);
add_action('shutdown', [$this, 'create_order'], -2);
add_action('wp_console_upload', [$this, 'console_upload'], 99, 2);

if (
!$this->get_option('deactivate_update_order')
Expand Down Expand Up @@ -174,6 +175,10 @@ public function __construct($retailcrm = false)
$this->activateModule();
}

public function console_upload($entity, $page = 0)
{
$this->uploader->uploadConsole($entity, $page);
}
/**
* Init settings fields
*/
Expand Down
43 changes: 42 additions & 1 deletion src/include/class-wc-retailcrm-uploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,5 +234,46 @@ private function logOrdersUploadErrors($errors)
);
}
}

public function uploadConsole($entity, $page = 0)
{
$ordersCount = $this->getCountOrders();
$customerCount = $this->getCountUsers();

$ordersPages = (int)($ordersCount / 50) + (($ordersCount % 50 === 0) ? -1 : 0);
ellynoize marked this conversation as resolved.
Show resolved Hide resolved
$customerPages = (int)($customerCount / 50) + (($customerCount % 50 === 0) ? -1 : 0);

try {
switch ($entity) {
case 'orders':
$this->ArchiveUpload('orders', $page, $ordersPages);
break;
case 'customers':
$this->ArchiveUpload('customers', $page, $customerPages);
break;
case 'full_upload':
$this->ArchiveUpload('customers', 0, $customerPages);
$this->ArchiveUpload('orders', 0, $ordersPages);
ellynoize marked this conversation as resolved.
Show resolved Hide resolved
break;
default:
echo 'Unknown entity: ' . $entity;
}
} catch (Exception $exception) {
echo $exception->getMessage();
}
}

public function archiveUpload($entity, $page, $countPages)
ellynoize marked this conversation as resolved.
Show resolved Hide resolved
{
for ($i = $page; $i <= $countPages; $i++) {
ellynoize marked this conversation as resolved.
Show resolved Hide resolved
if ($entity === 'orders') {
$this->uploadArchiveOrders($i);
echo $page . ' page uploaded' . PHP_EOL;
} elseif ($entity === 'customers') {
$this->uploadArchiveCustomers($i);
echo $page . ' page uploaded' . PHP_EOL;
ellynoize marked this conversation as resolved.
Show resolved Hide resolved
}
}
}
}
}//end if
}
5 changes: 4 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
Requires PHP: 7.1
Requires at least: 5.3
Tested up to: 6.5
Stable tag: 4.8.14
Stable tag: 4.8.15
License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html

Expand Down Expand Up @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i


== Changelog ==
= 4.8.15 =
* Add export archive in CRM
ellynoize marked this conversation as resolved.
Show resolved Hide resolved

= 4.8.14 =
* The method for determining the stock quantity has been optimized

Expand Down
4 changes: 2 additions & 2 deletions src/retailcrm.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Integration plugin for WooCommerce & Simla.com
* Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/
* Version: 4.8.14
* Version: 4.8.15
* Tested up to: 6.5
* Requires Plugins: woocommerce
* WC requires at least: 5.4
Expand All @@ -27,7 +27,7 @@
class WC_Integration_Retailcrm {
const WOOCOMMERCE_SLUG = 'woocommerce';
const WOOCOMMERCE_PLUGIN_PATH = 'woocommerce/woocommerce.php';
const MODULE_VERSION = '4.8.11';
const MODULE_VERSION = '4.8.15';

private static $instance;

Expand Down
2 changes: 1 addition & 1 deletion src/uninstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @link https://wordpress.org/plugins/woo-retailcrm/
*
* @version 4.8.14
* @version 4.8.15
*
* @package RetailCRM
*/
Expand Down
Loading