62 lines
2.2 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-31 13:08:50 +06:00
hide-issued-at="{{ $hideIssuedAt }}"
text-issued-at="{{ $textIssuedAt }}"
issued-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
/>
2020-12-31 13:08:50 +06:00
<x-documents.form.items
2020-12-24 01:28:38 +03:00
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 }}"
is-sale-price="{{ $isSalePrice }}"
is-purchase-price="{{ $isPurchasePrice }}"
2021-07-27 17:56:35 +03:00
search-char-limit="{{ $searchCharLimit }}"
2020-12-24 01:28:38 +03:00
/>
<x-documents.form.totals
type="{{ $type }}"
:document="$document"
/>
<x-documents.form.note
type="{{ $type }}"
:document="$document"
notes-setting="{{ $notesSetting }}"
2020-12-24 01:28:38 +03:00
/>
</div>
</div>