<report-body v-bind="$props">
    <template v-slot:header>
        <report-header v-bind="$props" v-bind:company-code="entry.companyCode"></report-header>
    </template>
    <div class="grid-row">
        <div class="grid-block">
            <div class="columns">
                <div class="size50">
                    <div class="body">
                        <h1 class="title uppercase">{{$t('title')}}</h1>
                        <table class="row-oriented report-info">
                            <tbody>
                                <tr>
                                    <td class="font gray uppercase">{{$t('entryId')}}</td>
                                    <th>{{entry.id}}</th>
                                </tr>
                                <tr>
                                    <td class="font gray uppercase">{{$t('date')}}</td>
                                    <th>{{formatDate(entry.landed,'%d-%m-%Y')}}</th>
                                </tr>
                                <tr>
                                    <td class="font gray uppercase">{{$t('ref')}}</td>
                                    <th>{{entry.invoiceNumber}}</th>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
                <div class="size50">
                    <div class="panel">
                        <div class="header">{{$t('supplierData')}}</div>
                        <div class="body">
                            <h3 class="uppercase">{{supplier.name}}</h3>
                            <div>{{supplier.street}}</div>
                            <div>{{supplier.postCode}}, {{supplier.city}}, ({{supplier.province}})</div>
                            <div>{{supplier.nif}}</div>
                        </div>
                    </div>
                </div>
            </div>
            <table class="column-oriented vn-mt-ml">
                <thead>
                    <tr>
                        <th class="number">{{$t('boxes')}}</th>
                        <th class="number">{{$t('packing')}}</th>
                        <th width="50%">{{$t('concept')}}</th>
                        <th width="10%" class="number">{{$t('quantity')}}</th>
                        <th width="15%" class="number">{{$t('price')}}</th>
                        <th width="15%" class="number">{{$t('amount')}}</th>
                    </tr>
                </thead>
                <tbody v-for="buy in buys">
                    <tr>
                        <td class="number">{{buy.box}}</td>
                        <td class="number">{{buy.packing}}</td>
                        <td width="50%">{{buy.itemName}}</td>
                        <td width="10%" class="number">{{buy.quantity | number($i18n.locale)}}</td>
                        <td width="15%" class="number">{{buy.buyingValue | currency('EUR', $i18n.locale)}}</td>
                        <td width="15%" class="number">
                            {{buy.buyingValue * buy.quantity | currency('EUR', $i18n.locale)}}
                        </td>
                    </tr>
                    <tr class="description font light-gray">
                        <td colspan="7">
                            <span v-if="buy.value5"> <strong>{{buy.tag5}}</strong> {{buy.value5}} </span>
                            <span v-if="buy.value6"> <strong>{{buy.tag6}}</strong> {{buy.value6}} </span>
                            <span v-if="buy.value7"> <strong>{{buy.tag7}}</strong> {{buy.value7}} </span>
                        </td>
                    </tr>
                </tbody>
                <tfoot>
                    <tr>
                        <td colspan="5" class="font bold">
                            <span class="pull-right">{{$t('total')}}</span>
                        </td>
                        <td class="number">{{getTotal() | currency('EUR', $i18n.locale)}}</td>
                    </tr>
                </tfoot>
            </table>
        </div>
    </div>
    <template v-slot:footer>
        <report-footer
            id="pageFooter"
            v-bind:left-text="$t('entry', [entry.id])"
            v-bind:company-code="entry.companyCode"
            v-bind:center-text="supplier.name"
            v-bind:="$props"
        >
        </report-footer>
    </template>
</report-body>