Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Bulk Update Extended Prices

  1. #1
    Airstrike is offline Junior Member
    Join Date
    Mar 2006
    Location
    Cape Canaveral, FL
    Posts
    5

    Question Bulk Update Extended Prices

    Is there an easy way to bulk update the extended prices without writing a sql script to the database? I have wholesale and retail customer levels and over 1200 products that need wholesale extended pricing. The only way I can see to update it is to go into every product detail page and click the extended prices link and a popup allows me to add the price.

    My product types are all the same price so if I could update the product type with the same price in one bulk edit it would save me countless hours.

    I do not know sql very well, and thought maybe a mod on the bulk edit update prices xml could include a column for the extended prices and that would save a lot of time.

    Anybody have any ideas?
    Are you a Good Person? click here to find out:
    http://www.airstrikeinc.com/Flash/AreYouGood.swf

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    You can do this via WSI and create a request that looks something like below.

    Code:
    <AspDotNetStorefrontImport>
      <Product Action="Update">
        <Name>Simple Product 1</Name>
        <SKU>01-0001</SKU>
        <Variants>
          <Variant Action="Update">
             <ExtendedPrices AutoCleanup="true">
              <CustomerLevel ID="1" Price="1.95" />
            </ExtendedPrices>
          </Variant>
        </Variants>
      </Product>
    </AspDotNetStorefrontImport>

  3. #3
    citrus is offline Junior Member
    Join Date
    Jun 2010
    Posts
    1

    Default

    Hi Alfred,

    How about a way to bulk IMPORT Extended Prices? I have to import a couple thousand SKU's and can do this through SQL, however I don't know what I would append into the ExtendedPriceGUID column.