Netsuite 账户报表 PDF/HTML 模板
Netsuite Account Statement PDF/HTML Template
我需要在 Netsuite 的 PDF 账户报表中显示以下信息;
- 客户姓名
- 客户联系人(或主要联系人)
- 默认电子邮件地址
- Phone / 传真号码
从表面上看,我无法编辑实际的 entry/transaction 表单,因此我需要一种使用 scriptID 来显示这些值的方法; ${record.customer}
* 或 ${statement.contactprimary}
* 等,包括模板中的内容..
*我知道这些是不正确的 ID,仅作为示例。
语句模板可以访问 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>
我需要在 Netsuite 的 PDF 账户报表中显示以下信息;
- 客户姓名
- 客户联系人(或主要联系人)
- 默认电子邮件地址
- Phone / 传真号码
从表面上看,我无法编辑实际的 entry/transaction 表单,因此我需要一种使用 scriptID 来显示这些值的方法; ${record.customer}
* 或 ${statement.contactprimary}
* 等,包括模板中的内容..
*我知道这些是不正确的 ID,仅作为示例。
语句模板可以访问 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>