Jump to content

Notes not displaying on invoice Prestashop 1.6.1.0


Recommended Posts

  • 3 weeks later...

It looks like the note is used only in the invoice-b2b.tpl template.

But unfortunately it seems that the notes are no longer saved in ps_order_invoice in 1.6.1. At least I did not succeed in forcing PrestaShop to do this.

 

Instead of this both invoice and delivery address are now saved here in full html. But without any chance to update these entries once the invoice is generated! I really wonder who had this crazy idea!

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

It's working for me just fine.  Once I modified the invoice template and added a notes section, whenever I add a note it saves, and will display on the invoice regardless of  when I create the note.

 

Then maybe your version of 1.6.1. is different. Mine (July-8-2015) does not show (or save) the notes like it did before, and I meanwhile got feedback from other users in the German forum who have the same problem.

Would you please you tell me which version exactly you use?

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

  • 2 months later...
  • 1 month later...

Thanks.  I actually modified the invoice.tpl and added that section in for notes. 

Hello Ernie,

Whate did you modifie in the invoice.tpl to get this working?

what code did you use?

 

Mine  note in the invoice is not working to i use Prestashop 1.6.1.2.

 

Thanks in advance.

.

Thanks in advance.

Link to comment
Share on other sites

  • 2 months later...

I had this problem with 1.6.1.4 and fixed it by adding this to invoice.tpl right above <!-- Hook -->

 

{if isset($order_invoice->note) && $order_invoice->note}
<div style="line-height: 1pt"> </div>
<table style="width: 100%">
    <tr>
        <td style="width: 15%"></td>
        <td style="width: 85%">{$order_invoice->note|nl2br}</td>
    </tr>
</table>
{/if}

Link to comment
Share on other sites

  • 4 years later...

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