有没有人知道如何使用NetSuite的高级PDF模板强制在页面底部打印交易页脚(即总计)。
NetSuite开箱即用BFO库。
干杯
史蒂夫
答案 0 :(得分:3)
您可以使用BFO“宏”轻松地将内容添加到每个页面的底部
<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>
有关详细信息,请参阅BFO User Guide第16页。
但是,如果您只想在可能的多页文档的最后一页上打开页脚,这将无效。
http://bfo.com/support/faq/#17
目前,当页数未知时,我们没有明确指定页脚或标题到文档最后一页的工具。