This commit is contained in:
iyzoer 2017-06-02 15:33:05 +03:00
parent 1484071122
commit 647d5e8427

View File

@ -188,12 +188,14 @@ class ModelExtensionRetailcrmIcml extends Model
}
$offerId = implode('_', $offerId);
$e = $this->eOffers->appendChild($this->dd->createElement('offer'));
if(!empty($offerId))
if(!empty($offerId)) {
$e->setAttribute('id', $product['product_id'].'#'.$offerId);
else
$e->setAttribute('quantity', $optionsValues['qty']);
}
else {
$e->setAttribute('id', $product['product_id']);
$e->setAttribute('productId', $product['product_id']);
$e->setAttribute('quantity', $product['quantity']);
$e->setAttribute('quantity', $product['quantity']);
}
/**
* Offer activity
*/