我需要在Netsuite中显示有关PDF帐户对帐单的以下信息;
从它的外观来看,我无法编辑实际的入口/交易表单,所以我需要一种方法来使用scriptID来显示这些值; ${record.customer}
*或${statement.contactprimary}
*等,包括模板上的内容。
*我知道这些是不正确的ID,仅举例说明。
答案 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>