Jump to content

Problem: Atrybuty a rabaty ilościowe.


naptalky

Recommended Posts

Witam wszystkich prestowiczów!

Jestem świeżakiem w Prestashopie, choć programowanie nieco znam i mniej więcej "wiem co czytam". Jednakże mam problem nurtujący mnie od pewnego czasu. Otóż w podglądzie produktu (product.tpl - domyślny szablon) dokonałem zmian w tabeli rabatów ilościowych tak, by pokazywały [ilość] - [koszt całościowy] - [koszt/1szt.] . Dodatkowo obróciłem kolejność na ASC, ponieważ domyślnie było DESC. Dodam, że te zmiany robiłem w kodzie (product.tpl) OK, śmiga. Tylko teraz mam problem, ponieważ gdy tylko dodam atrybut do jakiegoś produktu, tabelka szaleje i w ostatniej kolumnie, gdzie jest [koszt/1szt.] pokazuje "Do [jakaś liczba zł]" (tak jak pokazywało pierwotnie oszczędność), jednakże nie byłem w stanie znaleźć w kodzie algorytmu odpowiadającego za przeliczanie tej dziwnej liczby. Czy ktoś mógłby mi powiedzieć, co mogę robić źle? Dodatkowo, wolałbym uniknąć zmian w rdzeniu systemu. Poniżej zamieszczam screenshoty co konkretnie się dzieje.

 

Z góry dzięki za pomoc,

Talky.

 

PS: Przez atrybuty mam na myśli kombinacje.

 

EDIT: Kod odpowiadający za kolejne kolumny tabelki:

 

Ilość:

{$quantity_discount.quantity|intval}

Cena za pakiet:

{convertPrice price = ($productPrice-($productPrice*$quantity_discount.reduction))*$quantity_discount.quantity|floatval}

Cena jednostkowa:

{convertPrice price = $productPrice-($productPrice*$quantity_discount.reduction)|floatval}

post-1084973-0-93269400-1441101277_thumb.jpg

post-1084973-0-17172700-1441101279_thumb.jpg

Edited by naptalky (see edit history)
Link to comment
Share on other sites

  • 10 months later...

W wersji 1,6 cała kolumna (a właściwie <td> ) jest nadpisywany w js.

Szukaj w pliku product.js funkcji:  function updateDiscountTable(newPrice)

 

tam będziesz miał warunki : if (displayDiscountPrice != 0)

u mnie wygląda to tak i działa: 

if (displayDiscountPrice != 0)
			$(this).children('td').eq(1).text( formatCurrency(discountedPrice * currencyRate, currencyFormat, currencySign, currencyBlank) );
			$(this).children('td').eq(2).text(/*upToTxt + ' ' +*/ formatCurrency(discountedPrice, currencyFormat, currencySign, currencyBlank));
			$(this).children('td').eq(3).text( upToTxt + ' ' + formatCurrency(Math.round(discountUpTo * currencyRate), currencyFormat, currencySign, currencyBlank));

332_jednostka.png

Link to comment
Share on other sites

  • 5 months later...

Domyślnie plik js jest  /themes/default-bootstrap/js ale jak używasz innego szablonu to tylko podmieniasz nazwę.

 

funkcja o której piszę powinna się zaczynać w 926 linijce 

function updateDiscountTable(newPrice)
{
	$('#quantityDiscount tbody tr').each(function(){
		var type = $(this).data("discount-type");
		var discount = $(this).data("discount");
		var quantity = $(this).data("discount-quantity");

		if (type == 'percentage')
		{
			var discountedPrice = newPrice * (1 - discount/100);
			var discountUpTo = newPrice * (discount/100) * quantity;
		}
		else if (type == 'amount')
		{
			var discountedPrice = newPrice - discount;
			var discountUpTo = discount * quantity;
		}

		if (displayDiscountPrice != 0)
			$(this).children('td').eq(1).text( formatCurrency(discountedPrice * currencyRate, currencyFormat, currencySign, currencyBlank) );
			$(this).children('td').eq(2).text(/*upToTxt + ' ' + */formatCurrency(discountedPrice, currencyFormat, currencySign, currencyBlank));
			$(this).children('td').eq(3).text(upToTxt + ' ' + formatCurrency(Math.round(discountUpTo * currencyRate), currencyFormat, currencySign, currencyBlank));
	});
}

 

Edited by Sasni (see edit history)
Link to comment
Share on other sites

  • 2 years later...

Witam,
Odkopuje temat :
Więc samo edytowanie pliku product.js - nic nie da, prawda? W takim razie jak konkretnie powinien wyglądać kod w pliku product.tpl, żeby dodać kolumnę "cena jednostkowa" (oczywiście po obniżce) do tabelki rabaty ilościowe?

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...