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

exclude empty fields from data before sending

This commit is contained in:
Pavel 2019-11-21 10:33:37 +03:00
parent 16cde9d731
commit a09a1a58cc
5 changed files with 10 additions and 10 deletions

View file

@ -58,6 +58,6 @@ abstract class WC_Retailcrm_Abstracts_Data
*/
public function get_data()
{
return apply_filters('retailcrm_before_send_' . $this->filter_name, $this->data);
return apply_filters('retailcrm_before_send_' . $this->filter_name, WC_Retailcrm_Plugin::clearArray($this->data));
}
}

View file

@ -534,7 +534,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
);
}
$this->customer = apply_filters('retailcrm_process_customer', $data_customer, $customer);
$this->customer = apply_filters('retailcrm_process_customer', WC_Retailcrm_Plugin::clearArray($data_customer), $customer);
}
/**
@ -576,25 +576,25 @@ if (!class_exists('WC_Retailcrm_Customers')) :
$this->customerCorporate = apply_filters(
'retailcrm_process_customer_corporate',
$data_customer,
WC_Retailcrm_Plugin::clearArray($data_customer),
$customer
);
$this->customerCorporateContact = apply_filters(
'retailcrm_process_customer_corporate_contact',
$data_contact,
WC_Retailcrm_Plugin::clearArray($data_contact),
$customer
);
$this->customerCorporateAddress = apply_filters(
'retailcrm_process_customer_corporate_address',
array_merge(
WC_Retailcrm_Plugin::clearArray(array_merge(
$data_contact['address'],
array('isMain' => true)
),
)),
$customer
);
$this->customerCorporateCompany = apply_filters(
'retailcrm_process_customer_corporate_company',
$data_company,
WC_Retailcrm_Plugin::clearArray($data_company),
$customer
);
}

View file

@ -260,7 +260,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
WC_Retailcrm_Plugin::$history_run = true;
foreach ($historyAssembly as $orderHistory) {
$order = apply_filters('retailcrm_history_before_save', $orderHistory);
$order = WC_Retailcrm_Plugin::clearArray(apply_filters('retailcrm_history_before_save', $orderHistory));
if (isset($order['deleted']) && $order['deleted'] == true) {
continue;

View file

@ -483,7 +483,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
$order_data['payments'][] = $this->order_payment->build($order)->get_data();
}
$this->order = apply_filters('retailcrm_process_order', $order_data, $order);
$this->order = apply_filters('retailcrm_process_order', WC_Retailcrm_Plugin::clearArray($order_data), $order);
}
/**

View file

@ -67,7 +67,7 @@ function get_wc_shipping_methods() {
);
}
return apply_filters('retailcrm_shipping_list', $result);
return apply_filters('retailcrm_shipping_list', WC_Retailcrm_Plugin::clearArray($result));
}
function retailcrm_get_delivery_service($method_id, $instance_id) {