我在 NetSuite 中有一个包含多个图像的富文本字段。不幸的是,不适合第一页/同一页的图像在生成高级 PDF 后不会被推到第二页。相反,BFO 只是在分页符处截断图像。关于如何解决这个问题的任何建议?建议我将数据放入表格中,以及使用page-break-inside
,但相同的图像仍然在分页符处截断。
高级PDF:
<table page-break-inside="auto">
<tr>
<td>${result.custevent_images?replace('&', '&')?replace('">', '"/>')}</td>
</tr>
</table>
NetSuite 富文本字段:
<table page-break-inside="auto">
<tr>
<td>
<img1...>
</td>
</tr>
<tr>
<td>
<img2...>
</td>
</tr>
<tr>
<td>
<img3...>
</td>
</tr>
</table>