1.7.25. Invoice drop (up)


1.7.25.1. 方法

1.7.25.1.1. 错误

如果在提交失败后呈现此模型,这将返回发生的错误。

{{ invoice.errors.name | inline_errors }}
1.7.25.1.2. friendly_id

返回友好 ID

<td> {{ invoice.id }} </td>
<td> {{ invoice.name }} </td>
<td> {{ invoice.state }} </td>
<td> {{ invoice.cost }} {{ invoice.currency }} </td>
1.7.25.1.3. name

由月份和年份组成的字符串

1.7.25.1.4. state
1.7.25.1.5. cost

返回带有两个十进制的数字

23.00
1.7.25.1.6. currency
1.7.25.1.7. cost_without_vat

返回没有 VAT 的费用

1.7.25.1.8. vat_amount

返回带有 vat 的费用

1.7.25.1.9. exists_pdf?

如果生成了 pdf,则返回 true

1.7.25.1.10. period_begin
{{ invoice.period_begin | date: i18n.short_date }}
1.7.25.1.11. period_end
{{ invoice.period_end | date: i18n.long_date }}
1.7.25.1.12. issued_on
{{ invoice.issued_on | date: i18n.long_date }}
1.7.25.1.13. due_on
{{ invoice.due_on | date: i18n.long_date }}
1.7.25.1.15. vat_code
1.7.25.1.16. fiscal_code
1.7.25.1.17. account

返回 AccountDrop

1.7.25.1.18. buyer_account
1.7.25.1.19. line_items

返回 LineItemDrop 数组

{% for line_item in invoice.line_items %}
  <tr class="line_item {% cycle 'odd', 'even' %}">
    <th>{{ line_item.name }}</th>
    <td>{{ line_item.description }}</td>
    <td>{{ line_item.quantity }}</td>
    <td>{{ line_item.cost }}</td>
  </tr>
{% endfor %}
1.7.25.1.20. payment_transactions

返回 PaymentTransactionDrop 数组

{% for payment_transaction in invoice.payment_transactions %}
  <tr>
    <td> {% if payment_transaction.success? %} Success {% else %} Failure {% endif %} </td>
    <td> {{ payment_transaction.created_at }} </td>
    <td> {{ payment_transaction.reference }} </td>
    <td> {{ payment_transaction.message }} </td>
    <td> {{ payment_transaction.amount }} {{ payment_transaction.currency }} </td>
  </tr>
{% endfor %}
1.7.25.1.21. url

返回发票的资源 URL

{{ "Show" | link_to: invoice.url }}
1.7.25.1.22. pdf_url

返回发票 pdf 的资源 URL

{{ "PDF" | link_to: invoice.pdf_url }}
Red Hat logoGithubRedditYoutubeTwitter

学习

尝试、购买和销售

社区

关于红帽文档

通过我们的产品和服务,以及可以信赖的内容,帮助红帽用户创新并实现他们的目标。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

© 2024 Red Hat, Inc.