Jump to content

Juhy

Members
  • Posts

    20
  • Joined

  • Last visited

Juhy's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, i just set warehouse and activated advanced stock management. Is there any way, to set existing products to this warehouse? (i have 3500+ products) Prestashop v1.6.1.4 Thnx for any tip Regards, G.
  2. I tried this solution, but in PS 1.6.1.4 it's not working. Coupons are not showing in cart also there in so reductons for non sales products
  3. Hi, i'm exploring code for 2 days, and i can't finde where to add extra data to category list of products in Admin. I have looked AdminCategories and AdminProduct, but no luck. Can anyone help me with this? I whant to add extra data "Condition: New,..." on category list. (as shown the picture) i'm using Prestashop 1.4.4.1 Regards, Gasper
  4. Hi, i have solved the problem, with your help Nemo1. I added this code to ProductControler. $supplier= new Supplier($this->product->id_supplier, (int)(self::$cookie->id_lang)); and the code to my .tpl module {$supplier->description|escape:'htmlall':'UTF-8'} Thnx. Regards, Juhy
  5. Hi, thnx for replay. I tryed to call $supplier2 = new Supplier($this->product->id_supplier, (int)(self::$cookie->id_lang)); direct from my module, where i assign variable to a smarty. $smarty->assign(array( 'product' => $product, 'product2' => $product2, 'supplier2' => $supplier2 With product2 i get image for product supplier and supplier name. With supplier2 still no luck.... Regards
  6. Hi, im trying to solve this "problem" for 3 days.... but no luck. I searched the forum... stil no solutions. I whant to show supplier description on pruduct page under the tab. I successfully add supplier name, supplier reference. I have used this for description in .tpl {$product->supplier_description|escape:'htmlall':'UTF-8'} - but no luck im using prestashop 1.4.4.1 thnx for any ideas or help Regards, Juhy
  7. Hi, thnx for response. Yes, my hosting run cron. So, i have to set new fild in BO on product tab for date_time_to and check with script every ex: 5min for that date_time_to and disabled it? (i had written the code when customer buy last product quantity on stock - it disable that product) Regards, Juhy
  8. Hi, can anyone help me with my case? I'll have the products, which will be time limited. How do I set the time for a specific product ex: from time 20-01-2012:12:00 to 20-01-2012:17:00. When the time is up the product is hidden. Thnx for any help and infos. I'm using PrestaShop 1.5.2 Regards, Juhy
  9. Hi, i found problem in module MailAlerts. i just unistall it and so far no problem with state order. Try for one week,.. Regards, Gasper
  10. Any idea? today i get 4 invalid orders... 12 was OK. Regards, Gasper
  11. Hi, i have problem with invalid new order state for orders ( i think, where products have quantity 1). I recived email notification (mailalerts) for last product on inventory. But i don't get mail notification for new order and i don't see order in BO (Orders),.. if i look in customer Cart i see products and state "Invalid order". Can please someone help me with this problem? I'm using 1.4.4.1 with smarty 2 regards, Gasper
  12. Hi, i set a category discount for default group. For example: -50% for iPad category. I would like to display the category reduction percent (50%) and origninal price on all products, that are in reduction category. (i attached prnScr) Any idea? i looked in product classes but its very complicated system thnx for all tips and help. (i don't whant to use any module) i have prestashop v1.4.4.1
  13. Hi, i need help for adding product "reference" field into "Stock Movement" (PS v1.4.4.1) Like this: ID | Reference | Name | Quantity | Reason | Employee this is original code: $this->_select = 'CONCAT(pl.name, \' \', GROUP_CONCAT(IFNULL(al.name, \'\'), \'\')) product_name, CONCAT(e.lastname, \' \', e.firstname) employee, mrl.name reason'; $this->_join = 'LEFT JOIN `'._DB_PREFIX_.'product_lang` pl ON (a.id_product = pl.id_product AND pl.id_lang = '.(int)$cookie->id_lang.') LEFT JOIN `'._DB_PREFIX_.'stock_mvt_reason_lang` mrl ON (a.id_stock_mvt_reason = mrl.id_stock_mvt_reason AND mrl.id_lang = '.(int)$cookie->id_lang.') LEFT JOIN `'._DB_PREFIX_.'employee` e ON (e.id_employee = a.id_employee) LEFT JOIN `'._DB_PREFIX_.'product_attribute_combination` pac ON (pac.id_product_attribute = a.id_product_attribute) LEFT JOIN `'._DB_PREFIX_.'attribute_lang` al ON (al.id_attribute = pac.id_attribute AND al.id_lang = '.(int)$cookie->id_lang.')'; $this->_group = 'GROUP BY a.id_stock_mvt'; parent::__construct(); Also good feature would be to export this data to CSV Thnx for any response or help. Bestregards Gasper
  14. Hi, i need a simple statistic list with this fields: (also for CSV export and date range) product reference, product name Customer name (who bought this product) I have searched integreted modules in PS,... but without any luck. does anybody have any idea how to do that? Thnx to any answers
×
×
  • Create New...