Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
23d2dbdd6b
1 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ class WC_Retailcrm_Order_Item extends WC_Retailcrm_Abstracts_Data
|
|||
'offer' => array(),
|
||||
'productName' => '',
|
||||
'initialPrice' => 0.00,
|
||||
'quantity' => 0
|
||||
'quantity' => 0.00
|
||||
);
|
||||
|
||||
/**
|
||||
|
@ -56,7 +56,7 @@ class WC_Retailcrm_Order_Item extends WC_Retailcrm_Abstracts_Data
|
|||
$data['externalId'] = $itemId . '_' . $item->get_id();
|
||||
$data['productName'] = $item['name'];
|
||||
$data['initialPrice'] = (float)$price;
|
||||
$data['quantity'] = $item['qty'];
|
||||
$data['quantity'] = (double)$item['qty'];
|
||||
|
||||
$this->set_data_fields($data);
|
||||
$this->set_offer($item);
|
||||
|
@ -129,7 +129,7 @@ class WC_Retailcrm_Order_Item extends WC_Retailcrm_Abstracts_Data
|
|||
'offer' => array(),
|
||||
'productName' => '',
|
||||
'initialPrice' => 0.00,
|
||||
'quantity' => 0
|
||||
'quantity' => 0.00
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue