Feedback 4576: Dokumentenvorlagen - Rechnung, Testfeedback FD 07.02.2018
parent
edda5283c6
commit
17532135bd
|
|
@ -68,7 +68,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template id="external_layout_footer">
|
<template id="external_layout_footer">
|
||||||
<div class="footer" style="font-size:9pt;">
|
<div class="footer">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<hr class="red-line-1"/>
|
<hr class="red-line-1"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -94,12 +94,15 @@
|
||||||
<div class="col-xs-12 text-center">
|
<div class="col-xs-12 text-center">
|
||||||
<strong>
|
<strong>
|
||||||
IBAN:
|
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>
|
||||||
·
|
·
|
||||||
BIC:
|
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>
|
||||||
·
|
·
|
||||||
<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>
|
||||||
·
|
·
|
||||||
UID-Nr.:
|
UID-Nr.:
|
||||||
<span t-esc="company.vat"/>
|
<span t-esc="company.vat"/>
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,10 @@ body.container {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
font-size:7pt;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
.header-logo {
|
.header-logo {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
||||||
|
|
@ -68,8 +68,9 @@
|
||||||
<th class="text-center">Pos.</th>
|
<th class="text-center">Pos.</th>
|
||||||
<th class="text-center">Anzahl</th>
|
<th class="text-center">Anzahl</th>
|
||||||
<th class="text-right">Gewicht</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-left">Artikel</th>
|
||||||
|
<th class="text-right">EP</th>
|
||||||
<th class="text-right" t-if="discount_is_set">Rabatt</th>
|
<th class="text-right" t-if="discount_is_set">Rabatt</th>
|
||||||
<th class="text-right">Gesamtpreis</th>
|
<th class="text-right">Gesamtpreis</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -90,7 +91,6 @@
|
||||||
<span t-field="invoice_line.product_id.weight"/> kg
|
<span t-field="invoice_line.product_id.weight"/> kg
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<span t-field="invoice_line.price_unit"/>
|
|
||||||
</td>
|
</td>
|
||||||
<td rowspan="2" class="text-left">
|
<td rowspan="2" class="text-left">
|
||||||
<t t-if="invoice_line.product_id.default_code">
|
<t t-if="invoice_line.product_id.default_code">
|
||||||
|
|
@ -106,6 +106,9 @@
|
||||||
<br/>
|
<br/>
|
||||||
<span t-field="invoice_line.name"/>
|
<span t-field="invoice_line.name"/>
|
||||||
</td>
|
</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">
|
<td rowspan="2" class="text-right" t-if="discount_is_set">
|
||||||
<span t-field="invoice_line.discount"/>
|
<span t-field="invoice_line.discount"/>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue