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

possible fix for history

This commit is contained in:
Pavel 2020-04-09 13:24:52 +03:00
parent 617845d920
commit 37106577c6
2 changed files with 16 additions and 1 deletions

View file

@ -57,6 +57,8 @@ class WC_Retailcrm_Order_Payment extends WC_Retailcrm_Abstracts_Data
&& $this->settings['send_payment_amount'] === WC_Retailcrm_Base::YES
) {
$data['amount'] = (double) $order->get_total();
} else {
unset($data['amount']);
}
if (!$this->is_new) {

View file

@ -2,8 +2,13 @@
class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
{
/** @var WC_Retailcrm_Proxy */
protected $apiMock;
/** @var WC_Retailcrm_Response_Helper */
protected $customersHistoryResponse;
/** @var WC_Retailcrm_Response_Helper */
protected $ordersHistoryResponse;
const STATUS_1 = 'status1';
@ -44,6 +49,14 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
{
$this->setOptions($api_version);
if (!add_option('retailcrm_orders_history_since_id', 0)) {
update_option('retailcrm_orders_history_since_id', 0);
}
if (!add_option('retailcrm_customers_history_since_id', 0)) {
update_option('retailcrm_customers_history_since_id', 0);
}
$this->customersHistoryResponse->expects($this->any())
->method('isSuccessful')
->willReturn(true);
@ -70,7 +83,7 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
$order_added = end($orders);
if (!$order_added) {
$this->fail('$order_added is null');
$this->fail('$order_added is null - no orders were added after receiving history');
}
$order_added_items = $order_added->get_items();