我正在尝试在 WHMCS 的发票中添加产品 ID,但似乎没有任何效果。这是我现在对该行代码的内容:
<span class="title">{$LANG.invoicenumber}{*{else}{$LANG.proformainvoicenumber}{/if}*}{$invoicenum} - Service ID #{$invoiceitems.relid}</span><br />
这就是我添加的部分,但不起作用:
- Service ID #{$invoiceitems.relid}
当我运行调试以查看与使用不同的变量时,它表明{$invoiceitems}
可用于显示如下项目:
Array (2)
0 => Array (6)
id => 1830
type => Hosting
relid => 801
description => My Hosting Services - dsdjsjd....
amount => $295.00 USD
taxed =>
1 => Array (6)
id => 1831
type => PromoHosting
relid => 801
description => Promotional Code: FREETRIAL - $0.01 U...
amount => $-294.99 USD
taxed =>
我想要得到的是数字 801,以便该行显示如下:
发票 #7691 - 服务 ID #801
任何帮助将不胜感激。提前致谢!