58 lines
2.0 KiB
PHP
Raw Normal View History

2020-12-24 01:28:38 +03:00
<div class="card">
<div class="document-loading" v-if="!page_loaded">
<div><i class="fas fa-spinner fa-pulse fa-7x"></i></div>
</div>
2020-12-24 01:28:38 +03:00
<div class="card-body">
<x-documents.form.metadata
type="{{ $type }}"
:document="$document"
hide-contact="{{ $hideContact }}"
contact-type="{{ $contactType }}"
:contact="$contact"
:contacts="$contacts"
:search_route="$contactSearchRoute"
:create_route="$contactCreateRoute"
2020-12-24 01:28:38 +03:00
hide-issue-at="{{ $hideIssuedAt }}"
text-issue-at="{{ $textIssuedAt }}"
issue-at="{{ $issuedAt }}"
2020-12-24 01:28:38 +03:00
hide-document-number="{{ $hideDocumentNumber }}"
text-document-number="{{ $textDocumentNumber }}"
document-number="{{ $documentNumber }}"
2020-12-24 01:28:38 +03:00
hide-due-at="{{ $hideDueAt }}"
text-due-at="{{ $textDueAt }}"
due-at="{{ $dueAt }}"
2020-12-24 01:28:38 +03:00
hide-order-number="{{ $hideOrderNumber }}"
text-order-number="{{ $textOrderNumber }}"
order-number="{{ $orderNumber }}"
2020-12-24 01:28:38 +03:00
/>
<x-documents.form.items
type="{{ $type }}"
:document="$document"
2020-12-28 16:21:09 +03:00
hide-edit-item-columns="{{ $hideEditItemColumns }}"
hide-items="{{ $hideItems }}"
hide-name="{{ $hideName }}"
hide-description="{{ $hideDescription }}"
2020-12-28 16:21:09 +03:00
text-items="{{ $textItems }}"
hide-quantity="{{ $hideQuantity }}"
text-quantity="{{ $textQuantity }}"
hide-price="{{ $hidePrice }}"
text-price="{{ $textPrice }}"
hide-discount="{{ $hideDiscount }}"
hide-amount="{{ $hideAmount }}"
text-amount="{{ $textAmount }}"
2020-12-24 01:28:38 +03:00
/>
<x-documents.form.totals
type="{{ $type }}"
:document="$document"
/>
<x-documents.form.note
type="{{ $type }}"
:document="$document"
/>
</div>
</div>