Overview
Comment: | Remove deprecated colgroup |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | stable |
Files: | files | file ages | folders |
SHA1: |
be21a1fbe3bd485b5eb6bb9c2512ce10 |
User & Date: | bohwaz on 2020-12-10 15:59:16 |
Other Links: | manifest | tags |
Context
2020-12-10
| ||
18:05 | Allow to use date picker with something else than a text input check-in: 85e3cbbe5c user: bohwaz tags: trunk, stable | |
15:59 | Remove deprecated colgroup check-in: be21a1fbe3 user: bohwaz tags: trunk, stable | |
15:58 | Split transaction ID and transaction reference in ledger and journal check-in: 8d6bc3f102 user: bohwaz tags: trunk, stable | |
Changes
Modified src/templates/acc/reports/ledger.tpl from [4e2e2f36b6] to [a06ebc88ec].
︙ | ︙ | |||
9 10 11 12 13 14 15 | {foreach from=$ledger item="account"} <details open="open"> <summary><h2 class="ruler"><a href="{$admin_url}acc/accounts/journal.php?id={$account.id}&year={$account.id_year}">{$account.code} — {$account.label}</a></h2></summary> <table class="list"> | < < < < < < < < < | | | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | {foreach from=$ledger item="account"} <details open="open"> <summary><h2 class="ruler"><a href="{$admin_url}acc/accounts/journal.php?id={$account.id}&year={$account.id_year}">{$account.code} — {$account.label}</a></h2></summary> <table class="list"> <thead> <tr> <td></td> <td>N° pièce</td> <td>Réf. ligne</td> <td>Date</td> <th>Intitulé</th> <td class="money">Débit</td> <td class="money">Crédit</td> <td class="money">Solde</td> </tr> </thead> <tbody> {foreach from=$account.lines item="line"} <tr> <td class="num"><a href="{$admin_url}acc/transactions/details.php?id={$line.id}">#{$line.id}</a></td> <td>{$line.reference}</td> <td>{$line.line_reference}</td> <td>{$line.date|date_short}</td> <th>{$line.label}{if $line.line_label} <em>({$line.line_label})</em>{/if}</th> <td class="money">{$line.debit|raw|html_money}</td> <td class="money">{$line.credit|raw|html_money}</td> <td class="money">{$line.running_sum|raw|html_money:false}</td> </tr> {/foreach} |
︙ | ︙ |