ref #72067
Registration of the page with loyalty program in the user's profile Creation of forms for registration/activation of the loyalty program Registration of a script file for working with the loyalty program
This commit is contained in:
parent
e7348b3d25
commit
bf79ccd0e5
4 changed files with 132 additions and 0 deletions
3
src/assets/js/retailcrm-loyalty-actions.js
Normal file
3
src/assets/js/retailcrm-loyalty-actions.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
jQuery(function() {
|
||||
alert('HOBA');
|
||||
});
|
|
@ -33,6 +33,9 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
/** @var WC_Retailcrm_Cart */
|
||||
protected $cart;
|
||||
|
||||
/** @var WC_Retailcrm_Loyalty */
|
||||
protected $loyalty;
|
||||
|
||||
/**
|
||||
* Init and hook in the integration.
|
||||
*
|
||||
|
@ -100,6 +103,12 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
add_action('admin_enqueue_scripts', [$this, 'include_files_for_admin'], 101);
|
||||
add_action('woocommerce_new_order', [$this, 'create_order'], 11, 1);
|
||||
|
||||
|
||||
add_action('init', [$this, 'add_loyalty_endpoint'], 11, 1);
|
||||
add_action('woocommerce_account_menu_items', [$this, 'add_loyalty_item'], 11, 1);
|
||||
add_action('woocommerce_account_loyalty_endpoint', [$this, 'show_loyalty'], 11, 1);
|
||||
/*add_action('woocommerce_account_')*/
|
||||
|
||||
// Subscribed hooks
|
||||
add_action('register_form', [$this, 'subscribe_register_form'], 99);
|
||||
add_action('woocommerce_register_form', [$this, 'subscribe_woocommerce_register_form'], 99);
|
||||
|
@ -128,6 +137,8 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
add_action('woocommerce_cart_emptied', [$this, 'clear_cart']);
|
||||
}
|
||||
|
||||
$this->loyalty = new WC_Retailcrm_Loyalty($this->apiClient, $this->settings);
|
||||
|
||||
// Deactivate hook
|
||||
add_action('retailcrm_deactivate', [$this, 'deactivate']);
|
||||
|
||||
|
@ -814,6 +825,39 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
wp_die();
|
||||
}
|
||||
|
||||
public function add_loyalty_item($items)
|
||||
{
|
||||
$items['loyalty'] = __('Loyalty program');
|
||||
|
||||
return $items;
|
||||
}
|
||||
|
||||
public function add_loyalty_endpoint()
|
||||
{
|
||||
add_rewrite_endpoint('loyalty', EP_PAGES);
|
||||
}
|
||||
|
||||
public function show_loyalty()
|
||||
{
|
||||
global $wp;
|
||||
|
||||
$userId = get_current_user_id();
|
||||
|
||||
if (!isset($userId)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$jsScript = 'retailcrm-loyalty-actions';
|
||||
$loyaltyUrl = home_url(add_query_arg([], $wp->request));
|
||||
$jsScriptsPath = plugins_url() . '/woo-retailcrm/assets/js/';
|
||||
|
||||
wp_register_script($jsScript, $jsScriptsPath . $jsScript . '.js', false, '0.1');
|
||||
wp_enqueue_script($jsScript, $jsScriptsPath . $jsScript . '.js', '', '', true);
|
||||
wp_localize_script($jsScript, 'LoyaltyUrl', $loyaltyUrl);
|
||||
|
||||
echo $this->loyalty->getForm($userId);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get custom fields with CRM
|
||||
*
|
||||
|
|
84
src/include/class-wc-retailcrm-loyalty.php
Normal file
84
src/include/class-wc-retailcrm-loyalty.php
Normal file
|
@ -0,0 +1,84 @@
|
|||
<?php
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Loyalty')) :
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Loyalty - Allows transfer data carts with CMS.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
class WC_Retailcrm_Loyalty
|
||||
{
|
||||
/** @var WC_Retailcrm_Client_V5 */
|
||||
protected $apiClient;
|
||||
protected $dateFormat;
|
||||
|
||||
protected $settings;
|
||||
|
||||
public function __construct($apiClient, $settings)
|
||||
{
|
||||
$this->apiClient = $apiClient;
|
||||
$this->settings = $settings;
|
||||
$this->dateFormat = 'Y-m-d H:i:sP';
|
||||
}
|
||||
|
||||
public function getForm(int $userId)
|
||||
{
|
||||
$result = '';
|
||||
|
||||
$response = $this->apiClient->customersGet($userId);
|
||||
|
||||
if (!isset($response['customer']['id'])) {
|
||||
return $result;
|
||||
}
|
||||
|
||||
$filter['customerId'] = $response['customer']['id'];
|
||||
$response = $this->apiClient->getLoyaltyAccountList($filter);
|
||||
|
||||
if (!$response->isSuccessful() || !$response->offsetExists('loyaltyAccounts')) {
|
||||
return $result;
|
||||
}
|
||||
|
||||
$loyaltyAccount = $response['loyaltyAccounts'][0];
|
||||
|
||||
if (isset($response['loyaltyAccounts'][0]) && (int)$loyaltyAccount['customer']['externalId'] === $userId) {
|
||||
if ($loyaltyAccount['active'] === true) {
|
||||
$result = '
|
||||
<p>Бонусный счёт</p>
|
||||
<p>ID участия: TEST</p>
|
||||
<p>Статус участия: ТЕСТ</p>
|
||||
<p>Текущий уровень: ТЕСТ</p>
|
||||
<p>И так далее</p>
|
||||
';
|
||||
} else {
|
||||
$result = '
|
||||
<form>
|
||||
<input type="checkbox" id="loyaltyCheckbox" name="loyaltyCheckbox">
|
||||
<label for="loyaltyCheckbox">Активировать участие в программе лояльности</label>
|
||||
<br>
|
||||
<input type="submit" value="Отправить">
|
||||
</form>
|
||||
';
|
||||
}
|
||||
} else {
|
||||
$result = '
|
||||
<form action="register.php" method="post">
|
||||
<p>Для регистрации в Программе лояльности заполните форму:</p>
|
||||
<p><input type="checkbox" name="terms" id="terms"> Я согласен с <a href="terms.html">условиями программы лояльности</a>.</p>
|
||||
<p><input type="checkbox" name="privacy" id="privacy"> Я согласен с <a href="privacy.html">условиями обработки персональных данных</a>.</p>
|
||||
<p><input type="text" name="phone" id="phone" placeholder="Телефон"></p>
|
||||
<p><input type="submit" value="Отправить"></p>
|
||||
</form>
|
||||
';
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
endif;
|
|
@ -120,6 +120,7 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
|
|||
require_once(self::checkCustomFile('include/icml/class-wc-retailcrm-icml-writer.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-orders.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-cart.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-loyalty.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-customers.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-inventories.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-history.php'));
|
||||
|
|
Loading…
Add table
Reference in a new issue