Feedback 4576: Dokumentenvorlagen - Rechnung, Testfeedback FD 07.02.2018

develop
Roman Widmann 2018-02-08 09:39:09 +01:00
parent edda5283c6
commit 17532135bd
3 changed files with 16 additions and 6 deletions

View File

@ -68,7 +68,7 @@
</template>
<template id="external_layout_footer">
<div class="footer" style="font-size:9pt;">
<div class="footer">
<div class="row">
<hr class="red-line-1"/>
</div>
@ -94,12 +94,15 @@
<div class="col-xs-12 text-center">
<strong>
IBAN:
<span t-if="company.bank_ids" t-esc="company.bank_ids[0].acc_number"/>
<!-- <span t-if="company.bank_ids" t-esc="company.bank_ids[0].acc_number"/> -->
<span>AT463 250 100 002 009 306</span>
&#183;
BIC:
<span t-if="company.bank_ids" t-esc="company.bank_ids[0].bank_id.bic"/>
<!-- <span t-if="company.bank_ids" t-esc="company.bank_ids[0].bank_id.bic"/> -->
<span>RLN WAT WW MIB</span>
&#183;
<span t-if="company.bank_ids" t-esc="company.bank_ids[0].bank_id.name"/>
<!-- <span t-if="company.bank_ids" t-esc="company.bank_ids[0].bank_id.name"/> -->
<span>Raiffeisenbank Spannberg</span>
&#183;
UID-Nr.:
<span t-esc="company.vat"/>

View File

@ -17,6 +17,10 @@ body.container {
position: relative;
}
.footer {
font-size:7pt;
}
/*
.header-logo {
position: absolute;

View File

@ -68,8 +68,9 @@
<th class="text-center">Pos.</th>
<th class="text-center">Anzahl</th>
<th class="text-right">Gewicht</th>
<th class="text-right">EP</th>
<th class="text-right"></th>
<th class="text-left">Artikel</th>
<th class="text-right">EP</th>
<th class="text-right" t-if="discount_is_set">Rabatt</th>
<th class="text-right">Gesamtpreis</th>
</tr>
@ -90,7 +91,6 @@
<span t-field="invoice_line.product_id.weight"/> kg
</td>
<td class="text-right">
<span t-field="invoice_line.price_unit"/>
</td>
<td rowspan="2" class="text-left">
<t t-if="invoice_line.product_id.default_code">
@ -106,6 +106,9 @@
<br/>
<span t-field="invoice_line.name"/>
</td>
<td rowspan="2" class="text-right">
<span t-field="invoice_line.price_unit"/>
</td>
<td rowspan="2" class="text-right" t-if="discount_is_set">
<span t-field="invoice_line.discount"/>
</td>