SANYOLED Posted July 22, 2014 Share Posted July 22, 2014 Habe ein Problem mit den generierten PDF Rechnungen für Presta 1.6.0.8 Im Feld links Zahlungsweise erscheint folgendes:genau so Sofort Ü 365 € (Der Betrag) berweisung Hier ist ein Fehler im Zeilenumbruch vom Text, wie und wo kann uch das ändern ? Link to comment Share on other sites More sharing options...
eleazar Posted July 22, 2014 Share Posted July 22, 2014 (edited) Wenn du unbedingt das Formular von Prestashop benutzen willst - schön ist es ja nun wirklich nicht -, dann öffne mal mit einem Editor die /pdf/invoice.tpl und ersetz die Tabelle in Zeile 82 - 93 <table style="width: 100%;"> {foreach from=$order_invoice->getOrderPaymentCollection() item=payment} <tr> <td style="width: 50%">{$payment->payment_method}</td> <td style="width: 50%">{displayPrice price=$payment->amount currency=$order->id_currency}</td> </tr> {foreachelse} <tr> <td>{l s='No payment' pdf='true'}</td> </tr> {/foreach} </table> durch folgende: <table style="width: 100%;"> {foreach from=$order_invoice->getOrderPaymentCollection() item=payment} <tr> <td>{$payment->payment_method}</td> </tr> <tr> <td>{displayPrice price=$payment->amount currency=$order->id_currency}</td> </tr> {foreachelse} <tr> <td>{l s='No payment' pdf='true'}</td> </tr> {/foreach} </table> Für diese linksgequetsche Darstellung mag es aber sein, dass eine Zahlungsart immer noch zu lang ist und einen Umbruch erzwingt. Aber hier im Forum gibt es ja auch Alternativen zum Original-Formular ... Edited July 22, 2014 by eleazar (see edit history) 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