Change the algorithm for working with the API for history
This commit is contained in:
parent
c283fd461f
commit
95f171a663
4 changed files with 213 additions and 316 deletions
|
@ -161,28 +161,25 @@ class WC_Retailcrm_Client_V5
|
|||
|
||||
/**
|
||||
* Get corporate customers history
|
||||
*
|
||||
* @param array $filter
|
||||
* @param null $page
|
||||
* @param null $limit
|
||||
* @param int $page
|
||||
* @param int $limit
|
||||
*
|
||||
* @return WC_Retailcrm_Response
|
||||
*/
|
||||
public function customersCorporateHistory(array $filter= array(), $page = null, $limit = null)
|
||||
public function customersCorporateHistory(array $filter = [], int $page = 1, int $limit = 100)
|
||||
{
|
||||
$parameters= array();
|
||||
if (count($filter)) {
|
||||
$parameters['filter'] = $filter;
|
||||
}
|
||||
if (null !== $page) {
|
||||
$parameters['page'] = (int) $page;
|
||||
}
|
||||
if (null !== $limit) {
|
||||
$parameters['limit'] = (int) $limit;
|
||||
}
|
||||
$parameters = [
|
||||
'page' => $page,
|
||||
'limit' => $limit,
|
||||
'filter' => $filter,
|
||||
];
|
||||
|
||||
/* @noinspection PhpUndefinedMethodInspection */
|
||||
return $this->client->makeRequest(
|
||||
'/customers-corporate/history',
|
||||
"GET",
|
||||
WC_Retailcrm_Request::METHOD_GET,
|
||||
$parameters
|
||||
);
|
||||
}
|
||||
|
@ -1218,25 +1215,20 @@ class WC_Retailcrm_Client_V5
|
|||
|
||||
/**
|
||||
* Get orders history
|
||||
*
|
||||
* @param array $filter
|
||||
* @param null $page
|
||||
* @param null $limit
|
||||
* @param int $page
|
||||
* @param int $limit
|
||||
*
|
||||
* @return WC_Retailcrm_Response
|
||||
*/
|
||||
public function ordersHistory(array $filter = array(), $page = null, $limit = null)
|
||||
public function ordersHistory(array $filter = [], int $page = 1, int $limit = 100)
|
||||
{
|
||||
$parameters = array();
|
||||
|
||||
if (count($filter)) {
|
||||
$parameters['filter'] = $filter;
|
||||
}
|
||||
if (null !== $page) {
|
||||
$parameters['page'] = (int) $page;
|
||||
}
|
||||
if (null !== $limit) {
|
||||
$parameters['limit'] = (int) $limit;
|
||||
}
|
||||
$parameters = [
|
||||
'page' => $page,
|
||||
'limit' => $limit,
|
||||
'filter' => $filter,
|
||||
];
|
||||
|
||||
return $this->client->makeRequest(
|
||||
'/orders/history',
|
||||
|
@ -1542,25 +1534,20 @@ class WC_Retailcrm_Client_V5
|
|||
|
||||
/**
|
||||
* Get customers history
|
||||
*
|
||||
* @param array $filter
|
||||
* @param null $page
|
||||
* @param null $limit
|
||||
* @param int $page
|
||||
* @param int $limit
|
||||
*
|
||||
* @return WC_Retailcrm_Response
|
||||
*/
|
||||
public function customersHistory(array $filter = array(), $page = null, $limit = null)
|
||||
public function customersHistory(array $filter = [], int $page = 1, int $limit = 100)
|
||||
{
|
||||
$parameters = array();
|
||||
|
||||
if (count($filter)) {
|
||||
$parameters['filter'] = $filter;
|
||||
}
|
||||
if (null !== $page) {
|
||||
$parameters['page'] = (int) $page;
|
||||
}
|
||||
if (null !== $limit) {
|
||||
$parameters['limit'] = (int) $limit;
|
||||
}
|
||||
$parameters = [
|
||||
'page' => $page,
|
||||
'limit' => $limit,
|
||||
'filter' => $filter,
|
||||
];
|
||||
|
||||
return $this->client->makeRequest(
|
||||
'/customers/history',
|
||||
|
@ -1743,28 +1730,22 @@ class WC_Retailcrm_Client_V5
|
|||
* Get orders assembly history
|
||||
*
|
||||
* @param array $filter (default: array())
|
||||
* @param int $page (default: null)
|
||||
* @param int $limit (default: null)
|
||||
* @param int $page (default: int)
|
||||
* @param int $limit (default: null)
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
* @return WC_Retailcrm_Response
|
||||
* @throws WC_Retailcrm_Exception_Curl
|
||||
* @throws WC_Retailcrm_Exception_Json
|
||||
*
|
||||
* @return WC_Retailcrm_Response
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public function ordersPacksHistory(array $filter = array(), $page = null, $limit = null)
|
||||
public function ordersPacksHistory(array $filter = [], int $page = 1, int $limit = 100)
|
||||
{
|
||||
$parameters = array();
|
||||
|
||||
if (count($filter)) {
|
||||
$parameters['filter'] = $filter;
|
||||
}
|
||||
if (null !== $page) {
|
||||
$parameters['page'] = (int) $page;
|
||||
}
|
||||
if (null !== $limit) {
|
||||
$parameters['limit'] = (int) $limit;
|
||||
}
|
||||
$parameters = [
|
||||
'page' => $page,
|
||||
'limit' => $limit,
|
||||
'filter' => $filter,
|
||||
];
|
||||
|
||||
return $this->client->makeRequest(
|
||||
'/orders/packs/history',
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
if (!class_exists('WC_Retailcrm_History')) :
|
||||
class WC_Retailcrm_History
|
||||
{
|
||||
const PAGE_LIMIT = 25;
|
||||
|
||||
/** @var \DateTime */
|
||||
protected $startDate;
|
||||
|
||||
|
@ -62,16 +64,12 @@ if (!class_exists('WC_Retailcrm_History')) :
|
|||
* Get history method.
|
||||
*
|
||||
* @return void
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function getHistory()
|
||||
{
|
||||
$ordersSinceId = get_option('retailcrm_orders_history_since_id');
|
||||
$customersSinceId = get_option('retailcrm_customers_history_since_id');
|
||||
|
||||
try {
|
||||
$this->customersHistory($this->startDate->format('Y-m-d H:i:s'), $customersSinceId);
|
||||
$this->ordersHistory($this->startDate->format('Y-m-d H:i:s'), $ordersSinceId);
|
||||
$this->customersHistory();
|
||||
$this->ordersHistory();
|
||||
// @codeCoverageIgnoreStart
|
||||
} catch (\Exception $exception) {
|
||||
WC_Retailcrm_Logger::add(
|
||||
|
@ -88,174 +86,192 @@ if (!class_exists('WC_Retailcrm_History')) :
|
|||
/**
|
||||
* History customers
|
||||
*
|
||||
* @param string $date
|
||||
* @param int $sinceId
|
||||
*
|
||||
* @return void
|
||||
* @throws \Exception
|
||||
*/
|
||||
protected function customersHistory($date, $sinceId)
|
||||
protected function customersHistory()
|
||||
{
|
||||
$filter = ['startDate' => $date];
|
||||
$sinceId = get_option('retailcrm_customers_history_since_id');
|
||||
$request = new WC_Retailcrm_Paginated_Request();
|
||||
$pagination = 1;
|
||||
|
||||
if ($sinceId) {
|
||||
$filter = ['sinceId' => $sinceId];
|
||||
}
|
||||
$filter = !empty($sinceId)
|
||||
? ['sinceId' => $sinceId]
|
||||
: ['startDate' => $this->startDate->format('Y-m-d H:i:s')];
|
||||
|
||||
$request = new WC_Retailcrm_Paginated_Request();
|
||||
$history = $request
|
||||
->setApi($this->retailcrm)
|
||||
->setMethod('customersHistory')
|
||||
->setParams([$filter, '{{page}}'])
|
||||
->setDataKey('history')
|
||||
->setLimit(100)
|
||||
->setPageLimit(25)
|
||||
->execute()
|
||||
->getData();
|
||||
do {
|
||||
$history = $request
|
||||
->reset()
|
||||
->setApi($this->retailcrm)
|
||||
->setMethod('customersHistory')
|
||||
->setParams([$filter])
|
||||
->execute()
|
||||
->getData();
|
||||
|
||||
if (!empty($history)) {
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$lastChange = end($history);
|
||||
$customers = WC_Retailcrm_History_Assembler::assemblyCustomer($history);
|
||||
WC_Retailcrm_Plugin::$history_run = true;
|
||||
WC_Retailcrm_Logger::debug(__METHOD__, array('Assembled customers history:', $customers));
|
||||
if (!empty($history)) {
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$lastChange = end($history);
|
||||
$customers = WC_Retailcrm_History_Assembler::assemblyCustomer($history);
|
||||
|
||||
foreach ($customers as $crmCustomer) {
|
||||
// Only update customers, if customer not exist in WP - skip this customer !
|
||||
if (!isset($crmCustomer['externalId'])) {
|
||||
continue;
|
||||
}
|
||||
WC_Retailcrm_Plugin::$history_run = true;
|
||||
WC_Retailcrm_Logger::debug(__METHOD__, array('Assembled customers history:', $customers));
|
||||
|
||||
try {
|
||||
$builder->reset();
|
||||
foreach ($customers as $crmCustomer) {
|
||||
/*
|
||||
* Only update customers, if customer not exist in WP - skip this customer !
|
||||
* Update sinceId, because we must process history data.
|
||||
*/
|
||||
if (!isset($crmCustomer['externalId'])) {
|
||||
$filter['sinceId'] = $lastChange['id'];
|
||||
|
||||
// @codeCoverageIgnoreStart
|
||||
if (!$builder->loadExternalId($crmCustomer['externalId'])) {
|
||||
WC_Retailcrm_Logger::addCaller(__METHOD__, sprintf(
|
||||
'Customer with id=%s is not found in the DB, skipping...',
|
||||
$crmCustomer['externalId']
|
||||
));
|
||||
continue;
|
||||
}
|
||||
|
||||
try {
|
||||
$builder->reset();
|
||||
|
||||
// @codeCoverageIgnoreStart
|
||||
if (!$builder->loadExternalId($crmCustomer['externalId'])) {
|
||||
WC_Retailcrm_Logger::addCaller(__METHOD__, sprintf(
|
||||
'Customer with id=%s is not found in the DB, skipping...',
|
||||
$crmCustomer['externalId']
|
||||
));
|
||||
|
||||
// If customer not found in the DB, update sinceId
|
||||
$filter['sinceId'] = $lastChange['id'];
|
||||
|
||||
continue;
|
||||
}
|
||||
// @codeCoverageIgnoreEnd
|
||||
|
||||
$wcCustomer = $builder
|
||||
->setData($crmCustomer)
|
||||
->build()
|
||||
->getResult();
|
||||
|
||||
if ($wcCustomer instanceof WC_Customer) {
|
||||
$wcCustomer->save();
|
||||
|
||||
$customerCustomFields = $this->getCustomData('customer');
|
||||
|
||||
$this->updateMetaData($customerCustomFields, $crmCustomer, $wcCustomer->get_id());
|
||||
}
|
||||
|
||||
WC_Retailcrm_Logger::debug(__METHOD__, array('Updated WC_Customer:', $wcCustomer));
|
||||
|
||||
// @codeCoverageIgnoreStart
|
||||
} catch (Exception $exception) {
|
||||
WC_Retailcrm_Logger::error(sprintf(
|
||||
'Error while trying to process history: %s',
|
||||
$exception->getMessage()
|
||||
));
|
||||
WC_Retailcrm_Logger::error(sprintf(
|
||||
'%s:%d',
|
||||
$exception->getFile(),
|
||||
$exception->getLine()
|
||||
));
|
||||
WC_Retailcrm_Logger::error($exception->getTraceAsString());
|
||||
}
|
||||
// @codeCoverageIgnoreEnd
|
||||
|
||||
$wcCustomer = $builder
|
||||
->setData($crmCustomer)
|
||||
->build()
|
||||
->getResult();
|
||||
update_option('retailcrm_customers_history_since_id', $lastChange['id']);
|
||||
|
||||
if ($wcCustomer instanceof WC_Customer) {
|
||||
$wcCustomer->save();
|
||||
|
||||
$customerCustomFields = $this->getCustomData('customer');
|
||||
|
||||
$this->updateMetaData($customerCustomFields, $crmCustomer, $wcCustomer->get_id());
|
||||
}
|
||||
|
||||
WC_Retailcrm_Logger::debug(__METHOD__, array('Updated WC_Customer:', $wcCustomer));
|
||||
|
||||
// @codeCoverageIgnoreStart
|
||||
} catch (\Exception $exception) {
|
||||
WC_Retailcrm_Logger::error(sprintf(
|
||||
'Error while trying to process history: %s',
|
||||
$exception->getMessage()
|
||||
));
|
||||
WC_Retailcrm_Logger::error(sprintf(
|
||||
'%s:%d',
|
||||
$exception->getFile(),
|
||||
$exception->getLine()
|
||||
));
|
||||
WC_Retailcrm_Logger::error($exception->getTraceAsString());
|
||||
$filter['sinceId'] = $lastChange['id'];
|
||||
}
|
||||
// @codeCoverageIgnoreEnd
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
update_option('retailcrm_customers_history_since_id', $lastChange['id']);
|
||||
WC_Retailcrm_Plugin::$history_run = false;
|
||||
}
|
||||
$pagination++;
|
||||
} while ($pagination !== self::PAGE_LIMIT);
|
||||
}
|
||||
|
||||
/**
|
||||
* History orders
|
||||
*
|
||||
* @param string $date
|
||||
* @param int $sinceId
|
||||
*
|
||||
* @return boolean
|
||||
* @return bool
|
||||
*/
|
||||
protected function ordersHistory($date, $sinceId)
|
||||
protected function ordersHistory()
|
||||
{
|
||||
$filter = ['startDate' => $date];
|
||||
$options = array_flip(array_filter($this->retailcrmSettings));
|
||||
$options = array_flip(array_filter($this->retailcrmSettings));
|
||||
$sinceId = get_option('retailcrm_orders_history_since_id');
|
||||
$request = new WC_Retailcrm_Paginated_Request();
|
||||
$pagination = 1;
|
||||
|
||||
if ($sinceId) {
|
||||
$filter = ['sinceId' => $sinceId];
|
||||
}
|
||||
$filter = !empty($sinceId)
|
||||
? ['sinceId' => $sinceId]
|
||||
: ['startDate' => $this->startDate->format('Y-m-d H:i:s')];
|
||||
|
||||
$request = new WC_Retailcrm_Paginated_Request();
|
||||
$history = $request
|
||||
->setApi($this->retailcrm)
|
||||
->setMethod('ordersHistory')
|
||||
->setParams([$filter, '{{page}}'])
|
||||
->setDataKey('history')
|
||||
->setLimit(100)
|
||||
->setPageLimit(25)
|
||||
->execute()
|
||||
->getData();
|
||||
do {
|
||||
$history = $request
|
||||
->reset()
|
||||
->setApi($this->retailcrm)
|
||||
->setMethod('ordersHistory')
|
||||
->setParams([$filter])
|
||||
->execute()
|
||||
->getData();
|
||||
|
||||
if (!empty($history)) {
|
||||
$lastChange = end($history);
|
||||
$historyAssembly = WC_Retailcrm_History_Assembler::assemblyOrder($history);
|
||||
if (!empty($history)) {
|
||||
$lastChange = end($history);
|
||||
$historyAssembly = WC_Retailcrm_History_Assembler::assemblyOrder($history);
|
||||
|
||||
WC_Retailcrm_Logger::debug(__METHOD__, array('Assembled orders history:', $historyAssembly));
|
||||
WC_Retailcrm_Plugin::$history_run = true;
|
||||
WC_Retailcrm_Logger::debug(__METHOD__, array('Assembled orders history:', $historyAssembly));
|
||||
WC_Retailcrm_Plugin::$history_run = true;
|
||||
|
||||
foreach ($historyAssembly as $orderHistory) {
|
||||
$order = WC_Retailcrm_Plugin::clearArray(
|
||||
apply_filters(
|
||||
'retailcrm_history_before_save',
|
||||
$orderHistory
|
||||
)
|
||||
);
|
||||
|
||||
if (isset($order['deleted']) && $order['deleted'] == true) {
|
||||
continue;
|
||||
}
|
||||
|
||||
try {
|
||||
if (isset($order['externalId'])) {
|
||||
$wcOrderId = $this->orderUpdate($order, $options);
|
||||
} else {
|
||||
$wcOrderId = $this->orderCreate($order, $options);
|
||||
}
|
||||
|
||||
$wcOrder = wc_get_order($wcOrderId);
|
||||
$orderCustomFields = $this->getCustomData('order');
|
||||
|
||||
$this->updateMetaData($orderCustomFields, $order, $wcOrderId, 'order');
|
||||
|
||||
if ($wcOrder instanceof WC_Order) {
|
||||
$wcOrder->calculate_totals();
|
||||
}
|
||||
|
||||
// @codeCoverageIgnoreStart
|
||||
} catch (Exception $exception) {
|
||||
WC_Retailcrm_Logger::add(
|
||||
sprintf(
|
||||
"[%s] - %s",
|
||||
$exception->getMessage(),
|
||||
'Exception in file - ' . $exception->getFile() . ' on line ' . $exception->getLine()
|
||||
foreach ($historyAssembly as $orderHistory) {
|
||||
$order = WC_Retailcrm_Plugin::clearArray(
|
||||
apply_filters(
|
||||
'retailcrm_history_before_save',
|
||||
$orderHistory
|
||||
)
|
||||
);
|
||||
|
||||
continue;
|
||||
if (isset($order['deleted']) && $order['deleted'] == true) {
|
||||
continue;
|
||||
}
|
||||
|
||||
try {
|
||||
if (isset($order['externalId'])) {
|
||||
$wcOrderId = $this->orderUpdate($order, $options);
|
||||
} else {
|
||||
$wcOrderId = $this->orderCreate($order, $options);
|
||||
}
|
||||
|
||||
$wcOrder = wc_get_order($wcOrderId);
|
||||
$orderCustomFields = $this->getCustomData('order');
|
||||
|
||||
$this->updateMetaData($orderCustomFields, $order, $wcOrderId, 'order');
|
||||
|
||||
if ($wcOrder instanceof WC_Order) {
|
||||
$wcOrder->calculate_totals();
|
||||
}
|
||||
|
||||
// @codeCoverageIgnoreStart
|
||||
} catch (Exception $exception) {
|
||||
WC_Retailcrm_Logger::add(
|
||||
sprintf(
|
||||
"[%s] - %s",
|
||||
$exception->getMessage(),
|
||||
'Exception in file - ' . $exception->getFile() . ' on line ' . $exception->getLine()
|
||||
)
|
||||
);
|
||||
|
||||
continue;
|
||||
}
|
||||
// @codeCoverageIgnoreEnd
|
||||
}
|
||||
// @codeCoverageIgnoreEnd
|
||||
|
||||
update_option('retailcrm_orders_history_since_id', $lastChange['id']);
|
||||
|
||||
$filter['sinceId'] = $lastChange['id'];
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
update_option('retailcrm_orders_history_since_id', $lastChange['id']);
|
||||
WC_Retailcrm_Plugin::$history_run = false;
|
||||
}
|
||||
$pagination++;
|
||||
} while ($pagination !== self::PAGE_LIMIT);
|
||||
|
||||
WC_Retailcrm_Plugin::$history_run = false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -28,34 +28,11 @@ class WC_Retailcrm_Paginated_Request
|
|||
*/
|
||||
private $params;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $dataKey;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
private $limit;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private $data;
|
||||
|
||||
/**
|
||||
* @var int|null
|
||||
*/
|
||||
private $pageLimit;
|
||||
|
||||
/**
|
||||
* WC_Retailcrm_Paginated_Request constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->reset();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets retailCRM api client to request
|
||||
*
|
||||
|
@ -85,7 +62,7 @@ class WC_Retailcrm_Paginated_Request
|
|||
}
|
||||
|
||||
/**
|
||||
* Sets method params for API client (leave `{{page}}` instead of page and `{{limit}}` instead of limit)
|
||||
* Sets method params for API client.
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
|
@ -98,48 +75,6 @@ class WC_Retailcrm_Paginated_Request
|
|||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets dataKey (key with data in response)
|
||||
*
|
||||
* @param string $dataKey
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function setDataKey($dataKey)
|
||||
{
|
||||
$this->dataKey = $dataKey;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets record limit per request
|
||||
*
|
||||
* @param int $limit
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function setLimit($limit)
|
||||
{
|
||||
$this->limit = $limit;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets page limit per call
|
||||
*
|
||||
* @param int $pageLimit
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function setPageLimit($pageLimit)
|
||||
{
|
||||
$this->pageLimit = $pageLimit;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Executes request
|
||||
*
|
||||
|
@ -147,28 +82,16 @@ class WC_Retailcrm_Paginated_Request
|
|||
*/
|
||||
public function execute()
|
||||
{
|
||||
$this->data = array();
|
||||
$response = true;
|
||||
$page = 1;
|
||||
$response = call_user_func_array(
|
||||
[$this->api, $this->method],
|
||||
$this->params
|
||||
);
|
||||
|
||||
do {
|
||||
$response = call_user_func_array(
|
||||
[$this->api, $this->method],
|
||||
$this->buildParams($this->params, $page)
|
||||
);
|
||||
if ($response->isSuccessful() && !empty($response['history'])) {
|
||||
$this->data = array_merge($this->data, $response['history']);
|
||||
}
|
||||
|
||||
if ($response instanceof WC_Retailcrm_Response && $response->offsetExists($this->dataKey)) {
|
||||
$this->data = array_merge($this->data, $response[$this->dataKey]);
|
||||
$page = $response['pagination']['currentPage'] + 1;
|
||||
}
|
||||
|
||||
if ($this->pageLimit !== null && $page > $this->pageLimit) {
|
||||
break;
|
||||
}
|
||||
|
||||
time_nanosleep(0, 300000000);
|
||||
} while ($response && (isset($response['pagination'])
|
||||
&& $response['pagination']['currentPage'] < $response['pagination']['totalPageCount']));
|
||||
time_nanosleep(0, 300000000);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
@ -190,34 +113,9 @@ class WC_Retailcrm_Paginated_Request
|
|||
*/
|
||||
public function reset()
|
||||
{
|
||||
$this->data = [];
|
||||
$this->method = '';
|
||||
$this->limit = 100;
|
||||
$this->pageLimit = null;
|
||||
$this->data = array();
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* buildParams
|
||||
*
|
||||
* @param array $placeholderParams
|
||||
* @param int $currentPage
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
private function buildParams($placeholderParams, $currentPage)
|
||||
{
|
||||
foreach ($placeholderParams as $key => $param) {
|
||||
if ($param == '{{page}}') {
|
||||
$placeholderParams[$key] = $currentPage;
|
||||
}
|
||||
|
||||
if ($param == '{{limit}}') {
|
||||
$placeholderParams[$key] = $this->limit;
|
||||
}
|
||||
}
|
||||
|
||||
return $placeholderParams;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -100,7 +100,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
$retailcrm_history->getHistory();
|
||||
|
||||
$orders = wc_get_orders(array( 'numberposts' => - 1 ));
|
||||
$wcOrder = end($orders);
|
||||
$wcOrder = end($orders);
|
||||
$options = get_option(\WC_Retailcrm_Base::$option_key);
|
||||
|
||||
$this->assertEquals('status1', $options[$wcOrder->get_status()]);
|
||||
|
@ -181,14 +181,19 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
DataHistoryRetailCrm::get_history_data_product_add($product->get_id(), $order->get_id())
|
||||
);
|
||||
|
||||
$oldSinceId = get_option('retailcrm_orders_history_since_id');
|
||||
$retailcrm_history = new \WC_Retailcrm_History($this->apiMock);
|
||||
$retailcrm_history->getHistory();
|
||||
|
||||
$wcOrder = wc_get_order($order->get_id());
|
||||
$sinceId = get_option('retailcrm_orders_history_since_id');
|
||||
$wcOrder = wc_get_order($order->get_id());
|
||||
$wcOrderItems = $wcOrder->get_items();
|
||||
$wcOrderItem = end($wcOrderItems);
|
||||
$wcOrderItem = end($wcOrderItems);
|
||||
|
||||
$this->assertEquals(2, count($wcOrderItems));
|
||||
$this->assertNotEquals($sinceId, $oldSinceId);
|
||||
$this->assertEquals(0, get_option('retailcrm_customers_history_since_id'));
|
||||
|
||||
// Check added products
|
||||
$this->assertEquals(2, $wcOrderItem->get_quantity());
|
||||
$this->assertEquals($product->get_id(), $wcOrderItem->get_product()->get_id());
|
||||
}
|
||||
|
@ -246,7 +251,6 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
$this->assertNotEquals('status4', $order_updated->get_status());
|
||||
}
|
||||
|
||||
|
||||
public function test_history_customer_create()
|
||||
{
|
||||
$this->mockHistory(
|
||||
|
@ -258,9 +262,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
$retailcrm_history = new WC_Retailcrm_History($this->apiMock);
|
||||
$retailcrm_history->getHistory();
|
||||
|
||||
$sinceId = get_option('retailcrm_orders_history_since_id');
|
||||
|
||||
$this->assertEquals(0, $sinceId);
|
||||
$this->assertEquals(0, get_option('retailcrm_orders_history_since_id'));
|
||||
}
|
||||
|
||||
public function test_history_customer_update()
|
||||
|
|
Loading…
Add table
Reference in a new issue