PrestaDuszek Posted January 27, 2019 Share Posted January 27, 2019 Witam, Czy ktoś zna sposób w jaki mogę zmodyfikować szablon listu przewozowego PDF tak abym mógł wyświetlić kwotę kwota jaka ma zostać pobrana przy kurierze? lub jaka kwota pozostała do zapłaty w sytuacji niepełnej listy wpłat? <table id="payment-tab" width="100%" cellpadding="4" cellspacing="0"> <tr> <td class="payment center small grey bold" width="44%">{l s='Payment Method' d='Shop.Pdf' pdf='true'}</td> <td class="payment left white" width="56%"> <table width="100%" border="0"> {foreach from=$order_invoice->getOrderPaymentCollection() item=payment} <tr> <td class="right small">{$payment->payment_method}</td> <td class="right small">{displayPrice currency=$payment->id_currency price=$payment->amount}</td> </tr> {foreachelse} <tr> <td>{l s='No payment' d='Shop.Pdf' pdf='true'}</td> </tr> {/foreach} </table> </td> </tr> </table> Problem polega na tym że obecny fragment drukuje listę wpłat jaka została dokonana, jednak w sytuacji gdy żadna wpłata nie jest dokonana to dostaję informację o braku płatności, a chciałbym wyświetlić w sytuacji braku wpłat kwotę jaka ma zostać opłacona przy kurierze lub kwotę finalną zamówienia, którą próbowałem już na siłę wklepać z faktur, ale mi nie wyszło. 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