Merge branch 'purchase-price' of github.com:intarocrm/bitrix-module into 1.0.3a
This commit is contained in:
commit
77bb3160c1
@ -1225,7 +1225,13 @@ class ICrmOrderActions
|
|||||||
$propCancel = (int)$propCancel['VALUE'];
|
$propCancel = (int)$propCancel['VALUE'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$pr = CCatalogProduct::GetList(array('ID' => $p['PRODUCT_ID']))->Fetch();
|
$pr = CCatalogProduct::GetList(
|
||||||
|
array(),
|
||||||
|
array('ID' => $p['PRODUCT_ID']),
|
||||||
|
false,
|
||||||
|
array('nTopCount' => 1)
|
||||||
|
)->Fetch();
|
||||||
|
|
||||||
if ($pr)
|
if ($pr)
|
||||||
$pr = $pr['PURCHASING_PRICE'];
|
$pr = $pr['PURCHASING_PRICE'];
|
||||||
else
|
else
|
||||||
@ -1243,6 +1249,9 @@ class ICrmOrderActions
|
|||||||
if (!$propCancel) {
|
if (!$propCancel) {
|
||||||
$item['initialPrice'] = (double) $p['PRICE'] + (double) $p['DISCOUNT_PRICE'];
|
$item['initialPrice'] = (double) $p['PRICE'] + (double) $p['DISCOUNT_PRICE'];
|
||||||
$item['discount'] = $p['DISCOUNT_PRICE'];
|
$item['discount'] = $p['DISCOUNT_PRICE'];
|
||||||
|
if ($pr) {
|
||||||
|
$item['purchasePrice'] = $pr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$items[] = $item;
|
$items[] = $item;
|
||||||
|
Loading…
Reference in New Issue
Block a user