1.7.25. 송장 드롭 (위로)


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. 상태
1.7.25.1.5. 비용

두 개의 10진수로 숫자를 반환합니다.

23.00
1.7.25.1.6. 통화
1.7.25.1.7. cost_without_vat

ROI(총소유비용)로 비용 회수

1.7.25.1.8. vat_amount

vat ammount 반환

1.7.25.1.9. exists_pdf?

true가 생성된 경우 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. 계정

AccountDrop 반환

1.7.25.1.18. 구매자(_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

송장의 리소스 URL 반환

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

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.