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

skip new payments without type

This commit is contained in:
Pavel 2019-11-27 12:51:50 +03:00
parent 0cfad0849f
commit ccb4d04875

View file

@ -76,6 +76,8 @@ class WC_Retailcrm_Order_Payment extends WC_Retailcrm_Abstracts_Data
if ($this->is_new) {
if (isset($this->settings[$order->get_payment_method()])) {
$data['type'] = $this->settings[$order->get_payment_method()];
} else {
$data = array();
}
}