Procházet zdrojové kódy

ZF-7251: apply patch to support merchant name in offer details

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@21154 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew před 16 roky
rodič
revize
05e0495711

+ 5 - 0
documentation/manual/en/module_specs/Zend_Service_Amazon.xml

@@ -754,6 +754,11 @@ foreach ($results as $result) {
                             </row>
 
                             <row>
+                                <entry>MerchantName</entry>
+                                <entry>string</entry>
+                                <entry>Merchants Amazon Name.  Requires setting the <code>ResponseGroup</code> option to <code>OfferFull</code> to retrieve.</entry>
+                            </row>
+                            <row>
                                 <entry>GlancePage</entry>
                                 <entry>string</entry>
                                 <entry>URL for a page with a summary of the Merchant</entry>

+ 10 - 1
library/Zend/Service/Amazon/Offer.php

@@ -39,6 +39,11 @@ class Zend_Service_Amazon_Offer
     /**
      * @var string
      */
+    public $MerchantName;
+
+    /**
+     * @var string
+     */
     public $GlancePage;
 
     /**
@@ -82,6 +87,10 @@ class Zend_Service_Amazon_Offer
         $xpath = new DOMXPath($dom->ownerDocument);
         $xpath->registerNamespace('az', 'http://webservices.amazon.com/AWSECommerceService/2005-10-05');
         $this->MerchantId = (string) $xpath->query('./az:Merchant/az:MerchantId/text()', $dom)->item(0)->data;
+        $name = $xpath->query('./az:Merchant/az:Name/text()', $dom);
+        if ($name->length == 1) {
+          $this->MerchantName = (string) $name->item(0)->data;
+        }
         $this->GlancePage = (string) $xpath->query('./az:Merchant/az:GlancePage/text()', $dom)->item(0)->data;
         $this->Condition = (string) $xpath->query('./az:OfferAttributes/az:Condition/text()', $dom)->item(0)->data;
         $this->OfferListingId = (string) $xpath->query('./az:OfferListing/az:OfferListingId/text()', $dom)->item(0)->data;
@@ -99,4 +108,4 @@ class Zend_Service_Amazon_Offer
             $this->IsEligibleForSuperSaverShipping = (bool) $result->item(0)->data;
         }
     }
-}
+}

+ 111 - 0
tests/Zend/Service/Amazon/OfflineTest.php

@@ -147,6 +147,117 @@ class Zend_Service_Amazon_OfflineTest extends PHPUnit_Framework_TestCase
         $similarproduct = new Zend_Service_Amazon_SimilarProduct($product);
     }
 
+    /**
+     * @group ZF-7251
+     */
+    public function testFullOffersFromFile()
+    {
+        $xml = file_get_contents(dirname(__FILE__)."/_files/offers_with_names.xml");
+        $dom = new DOMDocument();
+        $dom->loadXML($xml);
+
+        $dataExpected = array(
+            '0439774098' => array(
+                'offers' => array(
+                    'A79CLRHOQ3NF4' => array(
+                        'name'  => 'PLEXSUPPLY',
+                        'price' => '5153'
+                    ),
+                    'A2K9NS8DSVOE2W' => array(
+                        'name'  => 'nangsuer',
+                        'price' => '5153'
+                    ),
+                    'A31EVTLIC13ORD' => array(
+                        'name'  => 'Wizard of Math',
+                        'price' => '7599'
+                    ),
+                    'A3SKJE188CW5XG' => array(
+                        'name'  => 'ReStockIt',
+                        'price' => '5299'
+                    ),
+                    'A1729W3053T57N' => array(
+                        'name'  => 'The Price Pros',
+                        'price' => '5487'
+                    ),
+                    'A29PHU0KPCGV8S' => array(
+                        'name'  => 'TheFactoryDepot',
+                        'price' => '5821'
+                    ),
+                    'AIHRRFGW11GJ8' => array(
+                        'name'  => 'Design Tec Office Products',
+                        'price' => '5987'
+                    ),
+                    'A27OK403WRHSGI' => array(
+                        'name'  => 'Kaplan Early Learning Company',
+                        'price' => '7595'
+                    ),
+                    'A25DVOZOPBFMAN' => array(
+                        'name'  => 'Deerso',
+                        'price' => '7599'
+                    ),
+                    'A6IFKC796Y64H' => array(
+                        'name'  => 'The Education Station Inc',
+                        'price' => '7599'
+                    ),
+                ),
+            ),
+            'B00000194U' => array(
+                'offers' => array(
+                    'A3UOG6723G7MG0' => array(
+                        'name'  => 'Efunctional',
+                        'price' => '480'
+                    ),
+                    'A3SNNXCKUIW1O2' => array(
+                        'name'  => 'Universal Mania',
+                        'price' => '531'
+                    ),
+                    'A18ACDNYOEMMOL' => array(
+                        'name'  => 'ApexSuppliers',
+                        'price' => '589'
+                    ),
+                    'A2NYACAJP9I1IY' => array(
+                        'name'  => 'GizmosForLife',
+                        'price' => '608'
+                    ),
+                    'A1729W3053T57N' => array(
+                        'name'  => 'The Price Pros',
+                        'price' => '628'
+                    ),
+                    'A29PHU0KPCGV8S' => array(
+                        'name'  => 'TheFactoryDepot',
+                        'price' => '638'
+                    ),
+                    'A3Q3IAIX1CLBMZ' => array(
+                        'name'  => 'ElectroGalaxy',
+                        'price' => '697'
+                    ),
+                    'A1PC5XI7QQLW5G' => array(
+                        'name'  => 'Long Trading Company',
+                        'price' => '860'
+                    ),
+                    'A2R0FX412W1BDT' => array(
+                        'name'  => 'Beach Audio',
+                        'price' => '896'
+                    ),
+                    'AKJJGJ0JKT8F1' => array(
+                        'name'  => 'Buy.com',
+                        'price' => '899'
+                    ),
+                ),
+            ),
+        );
+
+        $result = new Zend_Service_Amazon_ResultSet($dom);
+
+        foreach($result AS $item) {
+            $data = $dataExpected[$item->ASIN];
+            foreach($item->Offers->Offers as $offer) {
+                $this->assertEquals($data['offers'][$offer->MerchantId]['name'], $offer->MerchantName);
+                $this->assertEquals($data['offers'][$offer->MerchantId]['price'], $offer->Price);
+            }
+        }
+    }
+
     public function dataSignatureEncryption()
     {
         return array(

+ 602 - 0
tests/Zend/Service/Amazon/_files/offers_with_names.xml

@@ -0,0 +1,602 @@
+<?xml version="1.0"?>
+<ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2005-10-05">
+  <OperationRequest>
+    <HTTPHeaders>
+      <Header Name="UserAgent" Value="Zend_Http_Client"/>
+    </HTTPHeaders>
+    <RequestId>xxxxxxx-xxxx-424d-8ab9-14f856ee2bf1</RequestId>
+    <Arguments>
+      <Argument Name="Condition" Value="New"/>
+      <Argument Name="Operation" Value="ItemLookup"/>
+      <Argument Name="Service" Value="AWSECommerceService"/>
+      <Argument Name="Signature" Value="xxxxxxxxxxxxxxxxx"/>
+      <Argument Name="MerchantId" Value="All"/>
+      <Argument Name="Version" Value="2005-10-05"/>
+      <Argument Name="ItemId" Value="0439774098,B00000194U"/>
+      <Argument Name="IdType" Value="ASIN"/>
+      <Argument Name="AWSAccessKeyId" Value="xxxxxxxxxxxx"/>
+      <Argument Name="Timestamp" Value="2010-01-13T21:36:29Z"/>
+      <Argument Name="ResponseGroup" Value="OfferFull,ItemAttributes,Request"/>
+    </Arguments>
+    <RequestProcessingTime>0.4718690000000000</RequestProcessingTime>
+  </OperationRequest>
+  <Items>
+    <Request>
+      <IsValid>True</IsValid>
+      <ItemLookupRequest>
+        <Condition>New</Condition>
+        <DeliveryMethod>Ship</DeliveryMethod>
+        <IdType>ASIN</IdType>
+        <MerchantId>All</MerchantId>
+        <OfferPage>1</OfferPage>
+        <ItemId>0439774098</ItemId>
+        <ItemId>B00000194U</ItemId>
+        <ResponseGroup>OfferFull</ResponseGroup>
+        <ResponseGroup>ItemAttributes</ResponseGroup>
+        <ResponseGroup>Request</ResponseGroup>
+        <ReviewPage>1</ReviewPage>
+      </ItemLookupRequest>
+    </Request>
+    <Item>
+      <ASIN>0439774098</ASIN>
+      <DetailPageURL>http://www.amazon.com/Folk-Fairy-Tale-Easy-Readers/dp/0439774098%3FSubscriptionId%3D140PM2JXHSP8PD7D7ZR2%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0439774098</DetailPageURL>
+      <ItemAttributes>
+        <Author>a retelling by Violet Findley</Author>
+        <Binding>Paperback</Binding>
+        <Brand>Scholastic</Brand>
+        <Creator Role="Illustrator">Lynne Cravath</Creator>
+        <Department>Pens &amp; Desk Supplies</Department>
+        <EAN>9780439774093</EAN>
+        <Feature>Features 16 page storybook</Feature>
+        <Feature>Easy to read text</Feature>
+        <Feature>INcludes teaching guide</Feature>
+        <ISBN>0439774098</ISBN>
+        <ItemDimensions>
+          <Height Units="hundredths-inches">0</Height>
+          <Length Units="hundredths-inches">0</Length>
+          <Weight Units="hundredths-pounds">300</Weight>
+          <Width Units="hundredths-inches">0</Width>
+        </ItemDimensions>
+        <Label>Scholastic</Label>
+        <LegalDisclaimer>no_warning_applicable</LegalDisclaimer>
+        <ListPrice>
+          <Amount>7599</Amount>
+          <CurrencyCode>USD</CurrencyCode>
+          <FormattedPrice>$75.99</FormattedPrice>
+        </ListPrice>
+        <Manufacturer>Scholastic</Manufacturer>
+        <MPN>0439773911</MPN>
+        <NumberOfPages>16</NumberOfPages>
+        <PackageDimensions>
+          <Height Units="hundredths-inches">410</Height>
+          <Length Units="hundredths-inches">1230</Length>
+          <Weight Units="hundredths-pounds">580</Weight>
+          <Width Units="hundredths-inches">1190</Width>
+        </PackageDimensions>
+        <ProductGroup>Toy</ProductGroup>
+        <PublicationDate>2006</PublicationDate>
+        <Publisher>Scholastic</Publisher>
+        <Studio>Scholastic</Studio>
+        <Title>Folk and Fairy Tale Easy Readers</Title>
+        <UPC>078073773916</UPC>
+      </ItemAttributes>
+      <OfferSummary>
+        <LowestNewPrice>
+          <Amount>5153</Amount>
+          <CurrencyCode>USD</CurrencyCode>
+          <FormattedPrice>$51.53</FormattedPrice>
+        </LowestNewPrice>
+        <TotalNew>10</TotalNew>
+        <TotalUsed>0</TotalUsed>
+        <TotalCollectible>0</TotalCollectible>
+        <TotalRefurbished>0</TotalRefurbished>
+      </OfferSummary>
+      <Offers>
+        <TotalOffers>10</TotalOffers>
+        <TotalOfferPages>1</TotalOfferPages>
+        <Offer>
+          <Merchant>
+            <MerchantId>A79CLRHOQ3NF4</MerchantId>
+            <Name>PLEXSUPPLY</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A79CLRHOQ3NF4</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>arHE03690z1svVt8ru8psnwEb2xopClIw1rIclronh9EogSv2LbpkpVFK1qpCfo7BVsOm3EaBZ4NtRYIsbbeuHhEhX336%2BOrPTWph5JYg7Fy1dTIP4KZwNCxw7bzoic0CAOtuAjrh%2BA%3D</OfferListingId>
+            <ExchangeId>Y11M0201723M6610687</ExchangeId>
+            <Price>
+              <Amount>5153</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$51.53</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A2K9NS8DSVOE2W</MerchantId>
+            <Name>nangsuer</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2K9NS8DSVOE2W</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+            <ConditionNote>All orders ship from Florida each day. We value your satisfaction and our feedback! Thanks 22A</ConditionNote>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>5hsbYfTB98fWdej8OTlzhiipbB15%2FT3DewxrtC8bB0AH%2BLYidGjodOtQlq%2BK35C9JIhLtPHxB65X95lKA5zwNl9bsiQrIFMAGCHMkK1lIYilDOgmDk7U0TcMp%2BcBrKTH%2BJpPUg3aTuz9DLaa9tcPgA%3D%3D</OfferListingId>
+            <ExchangeId>Y11M5390024M2549072</ExchangeId>
+            <Price>
+              <Amount>5153</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$51.53</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A31EVTLIC13ORD</MerchantId>
+            <Name>Wizard of Math</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A31EVTLIC13ORD</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>K71ef%2FDkwirgYxs9klaNY7%2FXINJ6d%2BsJDQw1V0K%2FCZirOl9lyGAMQKOat6yWPrDhPnHwjBcLBD6UZEWCOJ45Ut%2BS4dtNR2u2z%2FQHDlqPdoWcuenlkIb%2FGswW4Ksi6uf0AYrp7LmJRTA%3D</OfferListingId>
+            <ExchangeId>Y11M2582888M3406164</ExchangeId>
+            <Price>
+              <Amount>7599</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$75.99</FormattedPrice>
+            </Price>
+            <SalePrice>
+              <Amount>5299</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$52.99</FormattedPrice>
+            </SalePrice>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A3SKJE188CW5XG</MerchantId>
+            <Name>ReStockIt</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3SKJE188CW5XG</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>2Z69gtUkoYkitzHfbC3yZeHf2htOelt8J%2F97d%2FLZ626nDSUSMljr2vYtVGRvuq3QzdIjaqhTtXAO8RZS0HtLjhzoNXN8fCI8Qr7Nao8WeMdGtvYXhFCExkGx3WdQqboFDKelsyE84FM%3D</OfferListingId>
+            <ExchangeId>Y11M0113967M1327691</ExchangeId>
+            <Price>
+              <Amount>5299</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$52.99</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A1729W3053T57N</MerchantId>
+            <Name>The Price Pros</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1729W3053T57N</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>Cq1toSGDUKPcdcS0gbDexyIg9vyHBBJovh1Zxr2%2FccJve3b9CSMCJmrdPqxq%2BYmg2Dpa1wKNtx3hSh6ouF57%2F6QaqP3bCrv8Lw84c2yOio3T43P%2Br%2BA56QxId%2BhcHgujU7paxUxlu2s%3D</OfferListingId>
+            <ExchangeId>Y12M0938195M5982264</ExchangeId>
+            <Price>
+              <Amount>5487</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$54.87</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A29PHU0KPCGV8S</MerchantId>
+            <Name>TheFactoryDepot</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A29PHU0KPCGV8S</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>rzFcf7pfWh9c%2B%2FhjfPlKyTVHm7JwFSH3ySSNpFxegoSlit8N%2BdUg6Z1nXu4oytpBZ%2BXBruFjRHG%2FqCMnzHUigvb1vaX915R%2BYoJ%2FTXa38xv7qJuQnrfvNXh8NwtSzIh2ldjhtfEVOJs%3D</OfferListingId>
+            <ExchangeId>Y14M0996254M0742534</ExchangeId>
+            <Price>
+              <Amount>5821</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$58.21</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>AIHRRFGW11GJ8</MerchantId>
+            <Name>Design Tec Office Products</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AIHRRFGW11GJ8</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>Rg1nRJ0ksv7M8HhQ2eo6y1Sw7wdrI8JXUSvIboZA0aNrrXYkWUQoZoAvIwc01mPHRpP6s%2Fwj%2FqucA38T96tmeQDXjj2KZRLotVRGwxA%2F3oLaDjEbJZgpHpQCrQUFefIIGXOLZfztRL90f4bRFmBPZQ%3D%3D</OfferListingId>
+            <ExchangeId>Y14M1008209M3912403</ExchangeId>
+            <Price>
+              <Amount>5987</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$59.87</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A27OK403WRHSGI</MerchantId>
+            <Name>Kaplan Early Learning Company</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A27OK403WRHSGI</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>8bjKifJMTTrNPYjb02hlOOP04ypVJ1tn7SE5Ky5nXJ8qjhPP7pUTIzfCM8jdvXiXHbNLOdPQF7Ioz8jelIEn5SE%2BEHn946W9PFjiLYFirY7LYYN8RJqKHYMqQWIBF9b%2Fs4p121K8JSl08KDEsptgKw%3D%3D</OfferListingId>
+            <ExchangeId>Y12M6611852M7296124</ExchangeId>
+            <Price>
+              <Amount>7595</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$75.95</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A25DVOZOPBFMAN</MerchantId>
+            <Name>Deerso</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A25DVOZOPBFMAN</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>Du47ofi%2BLI5weIbCKeSIM0BFnTAkQVQOzVXTt%2B7FsIPR7uF485oDlVG%2FFOJe6fYyuCwUjd69uh50L9eYkdJI0dtlBP2CpVlwyOVZbiwFPMrROXIlmLNAnSsMsxMk8bC5ENAUG1HhC0RHrxVs%2FhDhCA%3D%3D</OfferListingId>
+            <ExchangeId>Y14M1102156M0656871</ExchangeId>
+            <Price>
+              <Amount>7599</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$75.99</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A6IFKC796Y64H</MerchantId>
+            <Name>The Education Station Inc</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A6IFKC796Y64H</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>g41as4NDMJDKdfbbCAmQaTw7tir9aU6gLzoQ0PAo2nJTaVFQfb378nO9wSLcsW71KYBKYMiCaQw5eTkkwlNa74N18Kh5DHeCjc8KWVTIfaQzUDrhC56sag4nh30WiJQTHv4sn3%2Bme5SA4ht%2Bqp%2B%2F%2BA%3D%3D</OfferListingId>
+            <ExchangeId>Y13M0614645M8460461</ExchangeId>
+            <Price>
+              <Amount>7599</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$75.99</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+      </Offers>
+    </Item>
+    <Item>
+      <ASIN>B00000194U</ASIN>
+      <DetailPageURL>http://www.amazon.com/PowerLab-52010-Allsop-Organizer-Hold/dp/B00000194U%3FSubscriptionId%3D140PM2JXHSP8PD7D7ZR2%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB00000194U</DetailPageURL>
+      <ItemAttributes>
+        <Binding>Electronics</Binding>
+        <Brand>PowerLab</Brand>
+        <EAN>0035286520102</EAN>
+        <Feature>Sold Individually</Feature>
+        <IsAutographed>0</IsAutographed>
+        <IsMemorabilia>0</IsMemorabilia>
+        <ItemDimensions>
+          <Height Units="hundredths-inches">650</Height>
+          <Length Units="hundredths-inches">525</Length>
+          <Weight Units="hundredths-pounds">118</Weight>
+          <Width Units="hundredths-inches">1200</Width>
+        </ItemDimensions>
+        <Label>PowerLab</Label>
+        <LegalDisclaimer>Warranty does not cover misuse of product.</LegalDisclaimer>
+        <ListPrice>
+          <Amount>2500</Amount>
+          <CurrencyCode>USD</CurrencyCode>
+          <FormattedPrice>$25.00</FormattedPrice>
+        </ListPrice>
+        <Manufacturer>PowerLab</Manufacturer>
+        <Model>52010</Model>
+        <MPN>52010</MPN>
+        <NumberOfItems>1</NumberOfItems>
+        <PackageDimensions>
+          <Weight Units="hundredths-pounds">137</Weight>
+        </PackageDimensions>
+        <ProductGroup>CE</ProductGroup>
+        <Publisher>PowerLab</Publisher>
+        <ReleaseDate>1995-06-13</ReleaseDate>
+        <Studio>PowerLab</Studio>
+        <Title>Allsop CD Organizer Hold</Title>
+        <UPC>035286520102</UPC>
+        <Warranty>Limited lifetime warranty</Warranty>
+      </ItemAttributes>
+      <OfferSummary>
+        <LowestNewPrice>
+          <Amount>480</Amount>
+          <CurrencyCode>USD</CurrencyCode>
+          <FormattedPrice>$4.80</FormattedPrice>
+        </LowestNewPrice>
+        <TotalNew>28</TotalNew>
+        <TotalUsed>0</TotalUsed>
+        <TotalCollectible>0</TotalCollectible>
+        <TotalRefurbished>0</TotalRefurbished>
+      </OfferSummary>
+      <Offers>
+        <TotalOffers>28</TotalOffers>
+        <TotalOfferPages>3</TotalOfferPages>
+        <Offer>
+          <Merchant>
+            <MerchantId>A3UOG6723G7MG0</MerchantId>
+            <Name>Efunctional</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3UOG6723G7MG0</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>yJxQddhCOuzQnnN7dYjXhFI3no%2FrwD6pFJ%2BDIqAIlr4S5KECnY8mw%2F72BsArhDC0LO6DYmwVCI73UExtkGmKmdI9JeEpYSJJABFJ0%2F1ZvMZbPHNtAu0PrRmRakBsvpp8%2B6BtL%2B%2BP658pC8jd%2FZKpYQ%3D%3D</OfferListingId>
+            <ExchangeId>Y11M6929242M2865346</ExchangeId>
+            <Price>
+              <Amount>480</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$4.80</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A3SNNXCKUIW1O2</MerchantId>
+            <Name>Universal Mania</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3SNNXCKUIW1O2</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+            <ConditionNote>Brand New with Manufacturer's Warranty. 30 Day Money Back Guarantee. Customer Satisfaction Guaranteed.</ConditionNote>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>fMh64bCc0BZTTkGS%2BVnWdLNPWvBj4qdiJozj7assbn1UAHS%2F0ndOMxCkCpMUnOpKjR%2FKdIgfD52jAA8LAm0hYsz3BNsvgsdLovvWD1XpmlQ5%2BHTyhwJHVKRmqaXV7LBHByL0MnlW9%2BY%3D</OfferListingId>
+            <ExchangeId>Y13M0066978M2394682</ExchangeId>
+            <Price>
+              <Amount>531</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$5.31</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 2-3 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A18ACDNYOEMMOL</MerchantId>
+            <Name>ApexSuppliers</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A18ACDNYOEMMOL</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>gq5FQD1qNEsSXtUFCix2xNQ1cIn18eA7O4M6rp72rVuCU5JQ4wVjfEk02OKw%2F8%2BcjJ%2FQN%2BXGoGOIsL%2FJuI0wtGE4NP5OVoaZolyVovgH3WEBCcdkzkycA9kdhsSwTjdtMGUv733daUg%3D</OfferListingId>
+            <ExchangeId>Y13M2494869M4706198</ExchangeId>
+            <Price>
+              <Amount>589</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$5.89</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A2NYACAJP9I1IY</MerchantId>
+            <Name>GizmosForLife</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2NYACAJP9I1IY</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+            <ConditionNote>Brand New in Original Retail Packing. Ships same or next day. Customer Satisfaction Guaranteed. You will receive a tracking no after item is shipped.</ConditionNote>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>D9VIH0u1HD%2FYqiyYAdzpBPdm9GKX4chka0pRkMz%2F9oNXQY4CRLSZakmuA1egjHJriR16wHexUo0YS7IfZyTHgBXzwXGIDnTZVkO3%2F8c2JvB1K8uDV4xz855XUIyLaKCEF97Aq9RMFtpT%2BBO5B8nawA%3D%3D</OfferListingId>
+            <ExchangeId>Y11M0263400M1689368</ExchangeId>
+            <Price>
+              <Amount>608</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$6.08</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 3-4 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A1729W3053T57N</MerchantId>
+            <Name>The Price Pros</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1729W3053T57N</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>Jpj9K4lZIJP2aZywsub5C8FR3lrJ%2FL0NS8USedAkvqBeKJ7ruApUlZviA0ZtgzlC%2BXLxwdU3nY3b8M9PY40JHNSSRnnk7dtHPgwQLrMm5yu49szSQZMe6xscKRfzUr5CRYqXY5ERNlY%3D</OfferListingId>
+            <ExchangeId>Y12M0051210M8397966</ExchangeId>
+            <Price>
+              <Amount>628</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$6.28</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A29PHU0KPCGV8S</MerchantId>
+            <Name>TheFactoryDepot</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A29PHU0KPCGV8S</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>cjriZfMobVIWbKkJ3bqoPql1e9y6%2F%2FYX%2BpHbmHsj5D%2BSS0b0vs2DCYJ6TcsmJZetQVG0zFhgghXw86kFYxk08tW02DpWASFZjklbwYjPIz%2BSmiGS4RyRGmRzOY6iyY90gZ4OM5lgWbo%3D</OfferListingId>
+            <ExchangeId>Y14M0781666M9419447</ExchangeId>
+            <Price>
+              <Amount>638</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$6.38</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A3Q3IAIX1CLBMZ</MerchantId>
+            <Name>ElectroGalaxy</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3Q3IAIX1CLBMZ</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>8b6epAKiwTalSkBp%2F63GmP9M%2F7B8dN9%2FIGO1ZEdBtLyPIjBVSr3zim66RqUW6t09tCy%2FEUSohjuL3N1Wzl%2F9aFL76Eopw0JHSz3vMwQ95NuMnRVjD0eSAS4cIHMfOAXSU08HfK9ItU3j1Qxm%2FEU8tw%3D%3D</OfferListingId>
+            <ExchangeId>Y12M3335001M2898300</ExchangeId>
+            <Price>
+              <Amount>697</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$6.97</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A1PC5XI7QQLW5G</MerchantId>
+            <Name>Long Trading Company</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1PC5XI7QQLW5G</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>grcrSmvDVBzlTchqfhGNla0B8skYVnOqy9R9jsZi1s42G4%2BFWJUqELDGc5G1Xy8OLbgOvbKIOtwvOhymyNMe5%2BQbnFRJ47mUlIJQO5ZPbRxcQ7G2biJrSUF9OPtjd2wwRhrBaEl4cUbMq6gs6W4BZw%3D%3D</OfferListingId>
+            <ExchangeId>Y13M5953686M3162954</ExchangeId>
+            <Price>
+              <Amount>860</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$8.60</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>A2R0FX412W1BDT</MerchantId>
+            <Name>Beach Audio</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2R0FX412W1BDT</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>hGF9%2FDJ4fGEdRWXowkeuQKia70ARUEBtSHNVSrZHjg2Ceq4FT1cxD8VwDvtLGDqIpzn4ko%2BX6Z%2FAxoEWRpg1B0w9RiBlSiZttrVSdGZezZ5Lom%2BB7nzTe5o%2FqikC1ore98NN4cY91Ps%3D</OfferListingId>
+            <ExchangeId>Y11M1694666M7415801</ExchangeId>
+            <Price>
+              <Amount>896</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$8.96</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+        <Offer>
+          <Merchant>
+            <MerchantId>AKJJGJ0JKT8F1</MerchantId>
+            <Name>Buy.com</Name>
+            <GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AKJJGJ0JKT8F1</GlancePage>
+          </Merchant>
+          <OfferAttributes>
+            <Condition>New</Condition>
+            <SubCondition>new</SubCondition>
+          </OfferAttributes>
+          <OfferListing>
+            <OfferListingId>gAJB9Nd5wYWhz6Ct2bIhEKIJh96%2FPqdPxj0xopTp5NBG5Q0QGVYJ9Ko3WiVYPfGB1B%2B1MC70LQ4wTmjjh8aW%2BoXmzHjj2%2FeL8F8SkFRsMk%2B%2BR6O2OZ0psQ%2BoW%2BdMfkwJYD5frv4FcC0%3D</OfferListingId>
+            <ExchangeId>Y19M5468826M4135026</ExchangeId>
+            <Price>
+              <Amount>899</Amount>
+              <CurrencyCode>USD</CurrencyCode>
+              <FormattedPrice>$8.99</FormattedPrice>
+            </Price>
+            <Availability>Usually ships in 1-2 business days</Availability>
+            <IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
+          </OfferListing>
+        </Offer>
+      </Offers>
+    </Item>
+  </Items>
+</ItemLookupResponse>