Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2008
    Posts
    9
    Plugin Contributions
    0

    Default Take a products attributes easily on/off for purchase - by sql/EP?

    Having a product with attributes (lets say a jersey, sizes S,M,L).

    Once a size is sold out, I need to set it as 'show only'), so customers cannot buy/select it - only see it.

    Easy Populate could work, but the columns in EP/fileformat does not make it easy to populate.

    We're using an external ERP system(Navision) that keeps the orders and keep track of inventory. Once sold out, I'd like to create a file/sql that could be used to update regularly, ie. per day. I can create this output from ERP/Navision, but EasyPopulate is fairly complicated with all the columns ..

    Any suggestions ?

  2. #2
    Join Date
    Dec 2008
    Posts
    9
    Plugin Contributions
    0

    Default Re: Take a products attributes easily on/off for purchase - by sql/EP?

    The are the rows i need to update :

    SELECT p.products_model, products_name, a.products_id, a.attributes_display_only, v.products_options_values_name
    FROM zen_products_attributes a, zen_products_description d, zen_products p, zen_products_options_values v
    WHERE a.products_id = p.products_id
    AND p.products_id = d.products_id
    AND v.products_options_values_id = a.options_values_id


    Gives me the solution;
    Update zen_products_attributes set attributes_display_only='0'
    where attributes_display_only='1'
    and ... the correct select again here ...

    I guess I need to run this manualy/once a day ..

 

 

Similar Threads

  1. Drop down menu for weight attributes… take II
    By eranariel in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 20 Jan 2011, 08:24 AM
  2. How can I give a $30 off NEXT purchase, when making a purchase today?
    By Nancy Fallat in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 3
    Last Post: 10 Dec 2009, 05:38 AM
  3. Take Products off site when they are sold out
    By milobloom in forum General Questions
    Replies: 3
    Last Post: 12 Oct 2009, 02:27 AM
  4. How do you take off the amount of products in the categorie?
    By pearson in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 22 Jun 2006, 04:56 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg