<!DOCTYPE html>
<html v-bind:lang="$i18n.locale">
    <body>
        <table class="grid">
            <tbody>
                <tr>
                    <td>
                        <!-- Header block -->
                        <report-header v-bind="$props"></report-header>
                        <!-- Block -->
                        <div class="grid-row">
                            <div class="grid-block">
                                <div class="columns">
                                    <div class="size50">
                                        <h1 class="title uppercase">{{$t('title')}}</h1>
                                        <div class="size75">
                                            <table class="row-oriented">
                                                <tbody>
                                                    <tr>
                                                        <td class="font gray">{{$t('Supplier')}}</td>
                                                        <th>{{supplier.id}}</th>
                                                    </tr>
                                                    <tr>
                                                        <td class="font gray">{{$t('From')}}</td>
                                                        <th>{{from | date('%d-%m-%Y')}}</th>
                                                    </tr>
                                                    <tr>
                                                        <td class="font gray">{{$t('To')}}</td>
                                                        <th>{{to | date('%d-%m-%Y')}}</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.supplierName}}</h3>
                                                <div>
                                                    {{supplier.street}}
                                                </div>
                                                <div>
                                                    {{supplier.postcode}}, {{supplier.city}} ({{supplier.province}})
                                                </div>
                                                <div>
                                                    {{supplier.country}}
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div v-for="entry in entries" v-if="entry.buys">
                                    <h2>
                                        <span>{{$t('entry')}} {{entry.id}}</span>
                                        <span>{{$t('dated')}} {{entry.shipped | date('%d-%m-%Y')}}</span>
                                        <span class="pull-right">{{$t('reference')}} {{entry.ref}}</span>
                                    </h2>
                                    <table class="column-oriented repeatable">
                                        <thead>
                                            <tr>
                                                <th width="50%">{{$t('itemName')}}</th>
                                                <th>{{$t('Quantity')}}</th>
                                                <th>{{$t('price')}}</th>
                                                <th>{{$t('total')}}</th>
                                            </tr>
                                        </thead>
                                        <tbody v-for="buy in entry.buys" class="no-page-break">
                                            <tr>
                                                <td width="50%">{{buy.itemName}}</td>
                                                <td>{{buy.quantity}}</td>
                                                <td>{{buy.price | currency('EUR', $i18n.locale)}}</td>
                                                <td>{{buy.quantity * buy.price | 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>
                                    </table>

                                </div>
                            </div>
                        </div>
                        <!-- Footer block -->
                        <report-footer id="pageFooter"
                            v-bind:left-text="$t('supplier', [supplier.id])"
                            v-bind:center-text="supplier.supplierName"
                            v-bind="$props">
                        </report-footer>
                    </td>
                </tr>
            </tbody>
        </table>
    </body>
</html>