<!DOCTYPE html>
<html v-bind:lang="$i18n.locale">
    <body>
        <table class="grid">
            <tbody>
                <tr>
                    <td>
                        <!-- Header block -->
                        <report-header v-bind="$props"
                            v-bind:company-code="ticket.companyCode">
                        </report-header>
                        <!-- Block -->
                        <div class="grid-row">
                            <div class="grid-block">
                                <div class="columns">
                                    <div class="size50">
                                        <div class="size75 vn-mt-lg">
                                            <h1 class="title uppercase">{{$t('title')}}</h1>
                                            <table class="row-oriented ticket-info">
                                                <tbody>
                                                    <tr>
                                                        <td class="font gray uppercase">{{$t('clientId')}}</td>
                                                        <th>{{client.id}}</th>
                                                    </tr>
                                                    <tr>
                                                        <td class="font gray uppercase">{{$t('ticketId')}}</td>
                                                        <th>{{ticket.id}}</th>
                                                    </tr>
                                                    <tr>
                                                        <td class="font gray uppercase">{{$t('date')}}</td>
                                                        <th>{{ticket.shipped | date('%d-%m-%Y')}}</th>
                                                    </tr>
                                                </tbody>
                                            </table>
                                        </div>
                                    </div>
                                    <div class="size50">
                                        <div class="panel">
                                            <div class="header">{{$t('deliveryAddress')}}</div>
                                            <div class="body">
                                                <h3 class="uppercase">{{address.nickname}}</h3>
                                                <div>
                                                    {{address.street}}
                                                </div>
                                                <div>
                                                    {{address.postalCode}}, {{address.city}} ({{address.province}})
                                                </div>
                                            </div>
                                        </div>
                
                                        <div class="panel">
                                            <div class="header">{{$t('fiscalData')}}</div>
                                            <div class="body">
                                                <div>
                                                    {{client.socialName}}
                                                </div>
                                                <div>
                                                    {{client.street}}
                                                </div>
                                                <div>
                                                    {{client.fi}}
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                
                                <!-- Sales block -->
                                <h2>{{$t('saleLines')}}</h2>
                                <table class="column-oriented">
                                    <thead>
                                        <tr>
                                            <th width="5%">{{$t('reference')}}</th>
                                            <th class="number">{{$t('quantity')}}</th>
                                            <th width="50%">{{$t('concept')}}</th>
                                            <th class="number">{{$t('price')}}</th>
                                            <th class="centered" width="5%">{{$t('discount')}}</th>
                                            <th class="centered">{{$t('vat')}}</th>
                                            <th class="number">{{$t('amount')}}</th>
                                        </tr>
                                    </thead>
                                    <tbody v-for="sale in sales" class="no-page-break">
                                        <tr>
                                            <td width="5%">{{sale.itemFk | zerofill('000000')}}</td>
                                            <td class="number">{{sale.quantity}}</td>
                                            <td width="50%">{{sale.concept}}</td>
                                            <td class="number">{{sale.price | currency('EUR', $i18n.locale)}}</td>
                                            <td class="centered" width="5%">{{(sale.discount / 100) | percentage}}</td>
                                            <td class="centered">{{sale.vatType}}</td>
                                            <td class="number">{{sale.price * sale.quantity * (1 - sale.discount / 100) | currency('EUR', $i18n.locale)}}</td>
                                        </tr>
                                        <tr class="description font light-gray">
                                            <td colspan="7">
                                                <span v-if="sale.value5">
                                                    <strong>{{sale.tag5}}</strong> {{sale.value5}}
                                                </span> 
                                                <span v-if="sale.value6">
                                                    <strong>{{sale.tag6}}</strong> {{sale.value6}}
                                                </span> 
                                                <span v-if="sale.value7">
                                                    <strong>{{sale.tag7}}</strong> {{sale.value7}}
                                                </span> 
                                            </td>
                                        </tr>
                                    </tbody>
                                    <tfoot>
                                        <tr>
                                            <td colspan="6" class="font bold">
                                                <span class="pull-right">{{$t('subtotal')}}</span>
                                            </td>
                                            <td class="number">{{getSubTotal() | currency('EUR', $i18n.locale)}}</td>
                                        </tr>
                                    </tfoot>
                                </table>
                                <!-- End of sales block -->
                
                                <div class="columns">
                                    <!-- Services block-->
                                    <div class="size100 no-page-break" v-if="services.length > 0">
                                        <h2>{{$t('services')}}</h2>
                                        <table class="column-oriented">
                                            <thead>
                                                <tr>
                                                    <th width="5%"></th>
                                                    <th class="number">{{$t('quantity')}}</th>
                                                    <th width="50%">{{$t('concept')}}</th>
                                                    <th class="number">{{$t('price')}}</th>
                                                    <th class="centered" width="5%"></th>
                                                    <th class="centered">{{$t('vat')}}</th>
                                                    <th class="number">{{$t('amount')}}</th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr v-for="service in services">
                                                    <td width="5%"></td>
                                                    <td class="number">{{service.quantity}}</td>
                                                    <td width="50%">{{service.description}}</td>
                                                    <td class="number">{{service.price | currency('EUR', $i18n.locale)}}</td>
                                                    <td class="centered" width="5%"></td>
                                                    <td class="centered">{{service.taxDescription}}</td>
                                                    <td class="number">{{service.price | currency('EUR', $i18n.locale)}}</td>
                                                </tr>
                                            </tbody>
                                            <tfoot>
                                                <tr>
                                                    <td colspan="6" class="font bold">
                                                        <span class="pull-right">{{$t('subtotal')}}</span>
                                                    </td>
                                                    <td class="number">{{serviceTotal | currency('EUR', $i18n.locale)}}</td>
                                                </tr>
                                            </tfoot>
                                        </table>
                                    </div>
                                    <!-- End of services block -->
                                </div>
                                <div class="columns">
                                    <!-- Packages block -->
                                    <div id="packagings" class="size100 no-page-break" v-if="packagings.length > 0">
                                        <h2>{{$t('packagings')}}</h2>
                                        <table class="column-oriented">
                                            <thead>
                                                <tr>
                                                    <th>{{$t('reference')}}</th>
                                                    <th class="number">{{$t('quantity')}}</th>
                                                    <th wihth="75%">{{$t('concept')}}</th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr v-for="packaging in packagings">
                                                    <td>{{packaging.itemFk | zerofill('000000')}}</td>
                                                    <td class="number">{{packaging.quantity}}</td>
                                                    <td width="85%">{{packaging.name}}</td>
                                                </tr>
                                            </tbody>
                                        </table>
                                    </div>
                                    <!-- End of packages block -->
                                </div>
                                <div class="columns vn-mt-xl">
                                    <!-- Taxes block -->
                                    <div id="taxes" class="size50 pull-right no-page-break" v-if="taxes">
                                        <!-- <h2>{{$t('taxBreakdown')}}</h2> -->
                                        <table class="column-oriented">
                                            <thead>
                                                <tr>
                                                    <th colspan="4">{{$t('taxBreakdown')}}</th>
                                                </tr>
                                            </thead>
                                            <thead class="light">
                                                <tr>
                                                    <th width="45%">{{$t('type')}}</th>
                                                    <th width="25%" class="number">
                                                        {{$t('taxBase')}}
                                                    </th>
                                                    <th>{{$t('tax')}}</th>
                                                    <th class="number">{{$t('fee')}}</th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr v-for="tax in taxes">
                                                    <td width="45%">{{tax.name}}</td>
                                                    <td width="25%" class="number">
                                                        {{tax.Base | currency('EUR', $i18n.locale)}}
                                                    </td>
                                                    <td>{{tax.vatPercent | percentage}}</td>
                                                    <td class="number">{{tax.tax | currency('EUR', $i18n.locale)}}</td>
                                                </tr>
                                            </tbody>
                                            <tfoot>
                                                <tr class="font bold">
                                                    <td width="45%">{{$t('subtotal')}}</td>
                                                    <td width="20%" class="number">
                                                        {{getTotalBase() | currency('EUR', $i18n.locale)}}
                                                    </td>
                                                    <td></td>
                                                    <td class="number">{{getTotalTax()| currency('EUR', $i18n.locale)}}</td>
                                                </tr>
                                                <tr class="font bold">
                                                    <td colspan="2">{{$t('total')}}</td>
                                                    <td colspan="2" class="number">{{getTotal() | currency('EUR', $i18n.locale)}}</td>
                                                </tr>
                                            </tfoot>
                                        </table>
                                    </div>
                                    <!-- End of taxes block -->

                                    <!-- Phytosanitary block -->
                                    <div id="phytosanitary" class="size50 pull-left no-page-break">
                                        <div class="panel">
                                            <div class="body">
                                                <div class="flag">
                                                    <div class="columns">
                                                        <div class="size25">
                                                            <img v-bind:src="getReportSrc('europe.png')"/>
                                                        </div>
                                                        <div class="size75 flag-text">
                                                            <strong>{{$t('plantPassport')}}</strong><br/>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="phytosanitary-info">
                                                    <div>
                                                        <strong>A</strong> 
                                                        <span>{{getBotanical()}}</span>
                                                    </div>
                                                    <div>
                                                        <strong>B</strong> 
                                                        <span>ES17462130</span>                                                        
                                                    </div>
                                                    <div>
                                                        <strong>C</strong> 
                                                        <span>{{ticket.id}}</span>                                                        
                                                    </div>
                                                    <div>
                                                        <strong>D</strong>
                                                        <span>ES</span>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <!-- End of phytosanitary block -->
                                </div>
                                <div class="columns">
                                    <!-- Signature block -->
                                    <div class="size50 pull-left no-page-break">
                                        <div id="signature" class="panel" v-if="signature && signature.id">
                                            <div class="header">{{$t('digitalSignature')}}</div>
                                            <div class="body centered">
                                                <img v-bind:src="dmsPath"/>
                                                <div>{{signature.created | date('%d-%m-%Y')}}</div>
                                            </div>
                                        </div>
                                    </div>
                                    <!-- End of signature block -->
                                </div>
                            </div>
                        </div>
                        <!-- Footer block -->
                        <report-footer id="pageFooter"
                            v-bind:company-code="ticket.companyCode"
                            v-bind:left-text="$t('ticket', [ticket.id])"
                            v-bind:center-text="client.socialName"
                            v-bind="$props">
                        </report-footer>
                    </td>
                </tr>
            </tbody>
        </table>
    </body>
</html>