César68 Posted August 23, 2014 Share Posted August 23, 2014 (edited) Alguien me podia decir como aumentar o disminuir un porcentaje a todos los productos masivamente? Bajé el módulo gratuito massprice pero no me funciona en prestashop 1.6. Gracias Edited August 25, 2014 by César68 (see edit history) Link to comment Share on other sites More sharing options...
ventura Posted August 23, 2014 Share Posted August 23, 2014 Puedes hacerlo con phpMyAdmin http://www.inmotionhosting.com/support/edu/prestashop-15/340-mass-price-update Link to comment Share on other sites More sharing options...
rafaelamargo Posted August 23, 2014 Share Posted August 23, 2014 Alguien me podia decir como aumentar o disminuir un porcentaje a todos los productos masivamente? Bajé el módulo gratuito massprice pero no me funciona en prestashop 1.6. Gracias El modulo que comentas que has intentando, usar es este ¿http://catalogo-onlinersi.net/en/back-office-prestashop-modules/271-mass-price-update-prestashop.html? Link to comment Share on other sites More sharing options...
César68 Posted August 23, 2014 Author Share Posted August 23, 2014 Puedes hacerlo con phpMyAdmin http://www.inmotionhosting.com/support/edu/prestashop-15/340-mass-price-update Gracias,algún manual sencillo y en castellano? El modulo que comentas que has intentando, usar es este ¿http://catalogo-onlinersi.net/en/back-office-prestashop-modules/271-mass-price-update-prestashop.html? si,ese es exactamente el que tengo,pero no me hace nada.Alguna solución sobre el módulo? Link to comment Share on other sites More sharing options...
César68 Posted August 23, 2014 Author Share Posted August 23, 2014 Puedes hacerlo con phpMyAdmin http://www.inmotionhosting.com/support/edu/prestashop-15/340-mass-price-update De todas maneras visto más detalladamente está bien explicado.Para las combinaciones en que parte de la tabla habria que modificar? Gracias Link to comment Share on other sites More sharing options...
ventura Posted August 23, 2014 Share Posted August 23, 2014 Los impactos en el precio de los atributos estan en ps_attribute_impact Link to comment Share on other sites More sharing options...
César68 Posted August 23, 2014 Author Share Posted August 23, 2014 Los impactos en el precio de los atributos estan en ps_attribute_impact De momento ntenté hacer con el ejemplo que ponia y me sale lo siguiente y yo ahí ya no entiendo... Errorconsulta SQL: Ps_product_shop ACTUALIZACIÓN SET price = price * 1.20 MySQL ha dicho: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Ps_product_shop ACTUALIZACIÓN SET price = price * 1.20' at line 1i Link to comment Share on other sites More sharing options...
quimfrcr Posted August 24, 2014 Share Posted August 24, 2014 De momento ntenté hacer con el ejemplo que ponia y me sale lo siguiente y yo ahí ya no entiendo...Errorconsulta SQL: Ps_product_shop ACTUALIZACIÓN SET price = price * 1.20 MySQL ha dicho: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Ps_product_shop ACTUALIZACIÓN SET price = price * 1.20' at line 1i Creo que solo tienes que poner: UPDATE SET price=price*1.20 O solo SET price=price*1.20. Ayer hice una prueba y funciono, pero puse 100€ en un precio y al cambiarlo a *1.20 me hizo 144€ y no 120€.. Link to comment Share on other sites More sharing options...
ventura Posted August 24, 2014 Share Posted August 24, 2014 De momento ntenté hacer con el ejemplo que ponia y me sale lo siguiente y yo ahí ya no entiendo...Errorconsulta SQL: Ps_product_shop ACTUALIZACIÓN SET price = price * 1.20 MySQL ha dicho: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Ps_product_shop ACTUALIZACIÓN SET price = price * 1.20' at line 1i Tienes que hacerlo como se indica en el tutorial UPDATE ps_product_shop SET price = price*1.20 UPDATE ps_product SET price = price*1.20 Link to comment Share on other sites More sharing options...
César68 Posted August 24, 2014 Author Share Posted August 24, 2014 Creo que solo tienes que poner: UPDATE SET price=price*1.20 O solo SET price=price*1.20. Ayer hice una prueba y funciono, pero puse 100€ en un precio y al cambiarlo a *1.20 me hizo 144€ y no 120€.. Gracias pero tampoco me funciona,no se si estaré haciendo algo mal. UPDATE SET price=price*1.20 MySQL ha dicho: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SET price=price*1.20' at line 1 me funciona,no se si estaré haciendo algo mal. Si pongo lo otro: SET price=price*1.20 MySQL ha dicho: #1193 - Unknown system variable 'price' Link to comment Share on other sites More sharing options...
César68 Posted August 24, 2014 Author Share Posted August 24, 2014 Tienes que hacerlo como se indica en el tutorial UPDATE ps_product_shop SET price = price*1.20 UPDATE ps_product SET price = price*1.20 Gracias,pero me sigue saliendo igual: consulta SQL: UPDATE ps_product_shop SET price = price*1.20 UPDATE ps_product SET price = price*1.20 MySQL ha dicho: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'UPDATE ps_product SET price = price*1.20' at line 2 Link to comment Share on other sites More sharing options...
ventura Posted August 24, 2014 Share Posted August 24, 2014 (edited) Falta el ; (punto y coma) Hazlo asi UPDATE ps_product_shop SET price = price*1.20; UPDATE ps_product SET price = price*1.20 Edited August 24, 2014 by ventura (see edit history) Link to comment Share on other sites More sharing options...
Regef Posted August 24, 2014 Share Posted August 24, 2014 No es más fácil ir a Reglas de descuento > Reglas del catálogo y poner un % de dto? Link to comment Share on other sites More sharing options...
quimfrcr Posted August 24, 2014 Share Posted August 24, 2014 No es más fácil ir a Reglas de descuento > Reglas del catálogo y poner un % de dto? Pero de este modo aparece el precio asi y luego al lado el nuevo no? Lo que quiere es reducir toda la tienda de golpe, sin que sea "descuento" 1 Link to comment Share on other sites More sharing options...
César68 Posted August 25, 2014 Author Share Posted August 25, 2014 No es más fácil ir a Reglas de descuento > Reglas del catálogo y poner un % de dto? en reglas creo que solo te deja disminuir ,lo que queria era cambiar todos los productos. Link to comment Share on other sites More sharing options...
César68 Posted August 25, 2014 Author Share Posted August 25, 2014 Falta el ; (punto y coma) Hazlo asi UPDATE ps_product_shop SET price = price*1.20; UPDATE ps_product SET price = price*1.20 Así si salió bien.Muchas gracias. Link to comment Share on other sites More sharing options...
Recommended Posts