gpt4 book ai didi

php - 发票平面 : List Payment Transaction on Invoice

转载 作者:行者123 更新时间:2023-11-29 20:54:09 30 4
gpt4 key购买 nike

我已经安装了InvoicePlane v1.4.6 在我的共享主机帐户上。能够执行常规任务,例如制作报价并将其转换为发票以及几乎所有预期的功能。
现在,我的发票需要显示该特定发票发生的交易,例如。已收到预付款,已收到额外预付款。
我们正在将收到的每笔付款和评论注册到应用程序的“付款”部分。
以下是我已采取并尝试查看是否可以使此选项发挥作用的步骤。
在文件 application/helpers/pdf_helper.php 中添加了几行代码,如下所示:

$CI->load->model('quotes/mdl_quotes');
$quote = $CI->mdl_quotes->where('ip_quotes.invoice_id', $invoice_id)->get()->result();
$CI->load->model('payments/mdl_payments');
$payment = $CI->mdl_payments->where('ip_payments.invoice_id', $invoice_id)->get()->result();
$data = array(
'invoice' => $invoice,
'invoice_tax_rates' => $CI->mdl_invoice_tax_rates->where('invoice_id', $invoice_id)->get()->result(),
'quote' => (isset($quote[0]) ? $quote[0] : null),
'payment' => (isset($payment[0]) ? $payment[0] : null),
'items' => $items,
'payment_method' => $payment_method,
'output_type' => 'pdf',
'show_discounts' => $show_discounts,
);

然后,我将一些代码作为表格格式添加到发票 PDF 模板文件 application/views/invoice_templates/pdf/InvoicePlane.php 中,如下所示:

<table class="item-table">
<thead>
<tr>
<th>Date of Payment</th>
<th>Payment Method</th>
<th>Amount Paid</th>
<th>Payment Journal</th>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo $payment->payment_date; ?></td>
<td><?php echo $payment->payment_method_name; ?></td>
<td><?php echo $payment->payment_amount; ?></td>
<td><?php echo $payment->payment_note; ?></td>
</tr>
</tbody>
</table>

现在,付款详细信息开始显示在发票上,但仅显示收到的第一笔付款交易。
我想我缺少一些循环迭代来获取此特定发票的付款交易的所有行项目。
我请求帮助和指导,看看我们如何才能显示该特定发票的所有付款收据交易。

PS:我也在 InvoicePlane 论坛上问过这个问题,但没有回复 - https://community.invoiceplane.com/t/topic/2771 .
我也使用了他们的维基 - https://wiki.invoiceplane.com/en/1.0/templates/using-templateshttps://wiki.invoiceplane.com/en/1.0/templates/customize-templates

最佳答案

在尝试了多种选择后,我找到了解决方案。
应用了 foreach 循环并让它工作。

关于php - 发票平面 : List Payment Transaction on Invoice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37767007/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com