karelzemek Posted November 29, 2010 Share Posted November 29, 2010 Ahoj,potřeboval bych poradit. Chtěl bych, aby se mi v mailu, který mi přijde při nové objednávce (mě, jako obchodníkovi), zobrazovali ceny bez dph u jednotlivých produktů. A ještě lépe, aby se zobrazilo jen číslo, bez znaménka měny. (vystavuji totiž faktury v excelu a dost by mi to usnadnilo práci).Otevřel jsem si: ../modules/mailalerts/mails/cs/new_order.html, ale nenašel jsem, kde to upravit ? Link to comment Share on other sites More sharing options...
tuk66 Posted November 29, 2010 Share Posted November 29, 2010 Položky pro mail se chystají v ../modules/mailalerts/mailalerts.php, ve funkci hookNewOrder(), konkrétně $itemsTable. Link to comment Share on other sites More sharing options...
karelzemek Posted November 30, 2010 Author Share Posted November 30, 2010 A poradil bys mi prosím co změnit? Teda jestli to neni nějak náročný....Děkuju. Link to comment Share on other sites More sharing options...
tuk66 Posted December 1, 2010 Share Posted December 1, 2010 Jen podle kódu (nezkoušel jsem):zkus v hookNewOrder() zaměnit true za false (cena bude bez DPH) $unit_price = Product::getPriceStatic($product['id_product'], true, $product['id_product_attribute']); a o 6 řádků dále '.Tools::displayPrice($unit_price, $currency, false, false).' na '.$unit_price.' To řeší jednotkovou cenu. Podobné to je u celkové ceny, viz $price. Link to comment Share on other sites More sharing options...
karelzemek Posted December 1, 2010 Author Share Posted December 1, 2010 Zkusil jsem a podařilo se mi odstranit pouze jednotky. Cena je stále s dph. Podle kódů co si napsal to vypadá že máš soubor jinak napsaný. Mohl by ses prosím mrknout na ten můj (je to původní i s jednotkama).Díky! mailalerts.php 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