Steve Reeder
Steve Reeder

Reputation: 1022

NetSuite Advanced PDF - Transaction footer print at bottom?

Does anyone know of a way to force the transaction footer (ie. totals) to print at the bottom of the page using NetSuite's Advanced PDF templates.

NetSuite uses BFO library out of the box.

Cheers

Steve

Upvotes: 1

Views: 4605

Answers (1)

michoel
michoel

Reputation: 3783

You can easily add content to the bottom of every page using a BFO "macro"

<pdf>

  <head>
    <macrolist>
      <macro id="footer">
        <p>This will print at the bottom of every page</p>
      </macro>
    </macrolist>
   </head>

   <body footer="footer" footer-height="20mm">
     Document contents here
   </body>

 </pdf>

For more info refer to the BFO User Guide page 16.

However, this won't work if you wanted the footer on only the final page of a possibly multi-page document.

http://bfo.com/support/faq/#17

At the moment we do not have a facility for explicitly assigning a footer or header to the last page in a document when the number of pages is unknown.

Upvotes: 4

Related Questions