Jump to content

Posible bug con PACK de productos


Recommended Posts

Con la actualizacion de prestashop 1.6.0.9 a 1.6.0.11, he notado un cambio en el manejo de los pack de producto. Antes el contenido de un pack se listaba, actualmente en mi tienda solo lista 1 unico item, el ultimo agregado.

 

Revisando el tema, al editar el archivo product.tpl de mi plantilla encuentro el siguiente codigo:

 

<!--{if $packItems|@count > 0}
<div class="short_description_pack">
<h3>{l s='Pack content'}</h3>
{foreach from=$packItems item=packItem}
 
<div class="pack_content">
{$packItem.pack_quantity} x <a href="{$link->getProductLink($packItem.id_product, $packItem.link_rewrite, $packItem.category)|escape:'html':'UTF-8'}">{$packItem.name|escape:'html':'UTF-8'}</a>
<p>{$packItem.description_short}</p>
</div>
{/foreach}
</div>
{/if}-->
 
Que veo esta comentado hasta en la plantilla por defecto de prestashop, pero al descomentarla unicamente muestra 1 item del pack, y no los demas.
 
Entiendo $packItems es un arreglo, pero noto que este arreglo solo contiene un elemento... es por ello que al colocar el siguiente codigo no muestra ningun producto:
 
{if $packItems|@count > 1}
.....
 
 
Alguien conoce si existe un nuevo array que maneje los contenidos de un paquete? o esto es un bug y este array ya no se genera correctamente? dado que hasta la version 1.6.0.9, no tenia este problema...
 
Gracias por vuestra atencion.
Link to comment
Share on other sites

the problem is in the script classes/Pack.php

 

in an older version (like 1.6.0.9) you can insert the added function in 1.6.0.14 the should be 'allUsesAdvancedStockManagement' and 'noPackWholesapePrice', and then replace the script

 

Of course you make a backup copies of the originals if this don't work

 

the attached script is what works for me

 

 

Pack.php

Link to comment
Share on other sites

  • 1 month later...
  • 2 months later...
  • nadie locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...