Netsuite帐户对帐单PDF / HTML模板

时间:2017-01-11 22:38:46

标签: pdf scripting freemarker netsuite

我需要在Netsuite中显示有关PDF帐户对帐单的以下信息;

  • 客户名称
  • 帐户联系人(或主要联系人)
  • 默认电子邮件地址
  • 电话/传真号码

从它的外观来看,我无法编辑实际的入口/交易表单,所以我需要一种方法来使用scriptID来显示这些值; ${record.customer} *或${statement.contactprimary} *等,包括模板上的内容。

*我知道这些是不正确的ID,仅举例说明。

1 个答案:

答案 0 :(得分:3)

语句模板可以访问customer记录,因此您可以打印大部分字段:

<p>
    Customer Name: ${customer.companyname} <br/>
    Email: ${customer.email} <br/>
    Phone: ${customer.phone} <br/>
    Fax: ${customer.fax} <br/>
    Primary Contact: ${customer.contact} <br/>
</p>