Jump to content
  • 0

Sumowanie zamówionych produktów


stomasz

Question

Cześć! 

powiedzcie mi czy jest jakiś sposób, żeby wyświetlić w BO ilość zamówionych produktów? Obecnie sklep wyświetla ilość pozycji, a nie sumuje sztuk... byłoby to dla mnie spore ułatwienie. 

Tak jak na screenie poniżej - pokazuje 10, a tak naprawdę zamówionych mam 12 sztuk.

 

 

Przechwytywanie.JPG

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 1

Dało by się :) Żeby to było zrobione dobrze to trzeba by skopiować plik "/admin/themes/default/template/controllers/orders/helpers/view/view.tpl" do "/override/controllers/admin/templates/orders/helpers/view/view.tpl". A następnie zmienić to:

{l s='Products' d='Admin.Global'} <span class="badge">{$products|@count}</span>

Np. na coś takiego:

{foreach from=$products item=product key=k}        
	{assign var="sum_products" value=$sum_products+$product['product_quantity']}
{/foreach}
{l s='Products' d='Admin.Global'} <span class="badge">{$sum_products}</span>
  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...