Jump to content
thirty bees forum

Deutsche Rechnungsvorlage


Recommended Posts

Hallo

ich habe gerade erst festgestellt, dass sobald Artikel gekauft wurden, die reduziert sind, eine weitere Spalte auf der Rechnung erscheint: Grundpreis (o. MwSt.) Ich denke sie sollte heißen Grundpreis vor Preisreduzierung oder ähnliches (lieber was kurzes).

Mein Schnippsel invoice.product-tab.tpl: ``` {l s='Reference' pdf='true'} {l s='Product' pdf='true'} {l s='MwSt.' pdf='true'}

    {if isset($layout.before_discount)}
        <th class="product header small" width="{$layout.unit_price_tax_excl.width}%">{l s='Base price' pdf='true'} <br /> {l s='(Tax excl.)' pdf='true'}</th>
    {/if}

    <th class="product header-right small" width="{$layout.unit_price_tax_excl.width}%">{l s='Unit Price' pdf='true'} <br /> {l s='(Tax excl.)' pdf='true'}</th>
    <th class="product header small" width="{$layout.quantity.width}%">{l s='Qty' pdf='true'}</th>
    <th class="product header-right small" width="{$layout.total_tax_incl.width}%">{l s='Total' pdf='true'} <br /> {l s='(inkl. MwSt.)' pdf='true'}</th>
</tr>
</thead>```

```

{if isset($layout.before_discount)} {l s='Base price' pdf='true'}
{l s='(Tax excl.)' pdf='true'} {/if}```

Inhalt der Spalte: {if isset($layout.before_discount)} <td class="product center"> {if isset($order_detail.unit_price_tax_excl_before_specific_price)} {displayPrice currency=$order->id_currency price=$order_detail.unit_price_tax_excl_before_specific_price} {else} -- {/if} </td> {/if}

Habt Ihr das besser oder eleganter gelöst?

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...