naptalky Posted September 1, 2015 Share Posted September 1, 2015 (edited) 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} Edited September 1, 2015 by naptalky (see edit history) Link to comment Share on other sites More sharing options...
Sasni Posted July 11, 2016 Share Posted July 11, 2016 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)); Link to comment Share on other sites More sharing options...
netychy Posted January 4, 2017 Share Posted January 4, 2017 Hmm chciałem zastosować twoją tabelę ale ona mi się nie chce pokazać. Czy mowisz o pliku product.js który znajduje sie w js w konkretnym szablonie? Czy możesz mi przesłać całą tą funkcję od początku do końca? Link to comment Share on other sites More sharing options...
Sasni Posted January 10, 2017 Share Posted January 10, 2017 (edited) 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 May 4, 2019 by Sasni (see edit history) Link to comment Share on other sites More sharing options...
Slawiszo Posted November 7, 2019 Share Posted November 7, 2019 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now