|
@@ -89,12 +89,12 @@ class Zend_Service_Amazon_OfferSet
|
|
|
|
|
|
|
|
$offer = $xpath->query('./az:OfferSummary', $dom);
|
|
$offer = $xpath->query('./az:OfferSummary', $dom);
|
|
|
if ($offer->length == 1) {
|
|
if ($offer->length == 1) {
|
|
|
- $lowestNewPrice = $xpath->query('./az:OfferSummary/az:LowestNewPrice', $dom);
|
|
|
|
|
|
|
+ $lowestNewPrice = $xpath->query('./az:OfferSummary/az:LowestNewPrice/az:Amount', $dom);
|
|
|
if ($lowestNewPrice->length == 1) {
|
|
if ($lowestNewPrice->length == 1) {
|
|
|
$this->LowestNewPrice = (int) $xpath->query('./az:OfferSummary/az:LowestNewPrice/az:Amount/text()', $dom)->item(0)->data;
|
|
$this->LowestNewPrice = (int) $xpath->query('./az:OfferSummary/az:LowestNewPrice/az:Amount/text()', $dom)->item(0)->data;
|
|
|
$this->LowestNewPriceCurrency = (string) $xpath->query('./az:OfferSummary/az:LowestNewPrice/az:CurrencyCode/text()', $dom)->item(0)->data;
|
|
$this->LowestNewPriceCurrency = (string) $xpath->query('./az:OfferSummary/az:LowestNewPrice/az:CurrencyCode/text()', $dom)->item(0)->data;
|
|
|
}
|
|
}
|
|
|
- $lowestUsedPrice = $xpath->query('./az:OfferSummary/az:LowestUsedPrice', $dom);
|
|
|
|
|
|
|
+ $lowestUsedPrice = $xpath->query('./az:OfferSummary/az:LowestUsedPrice/az:Amount', $dom);
|
|
|
if ($lowestUsedPrice->length == 1) {
|
|
if ($lowestUsedPrice->length == 1) {
|
|
|
$this->LowestUsedPrice = (int) $xpath->query('./az:OfferSummary/az:LowestUsedPrice/az:Amount/text()', $dom)->item(0)->data;
|
|
$this->LowestUsedPrice = (int) $xpath->query('./az:OfferSummary/az:LowestUsedPrice/az:Amount/text()', $dom)->item(0)->data;
|
|
|
$this->LowestUsedPriceCurrency = (string) $xpath->query('./az:OfferSummary/az:LowestUsedPrice/az:CurrencyCode/text()', $dom)->item(0)->data;
|
|
$this->LowestUsedPriceCurrency = (string) $xpath->query('./az:OfferSummary/az:LowestUsedPrice/az:CurrencyCode/text()', $dom)->item(0)->data;
|