Overview
Comment: | Alert message if statement is unbalanced |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f5f8777028a73f012551217438e86ee6 |
User & Date: | bohwaz on 2020-12-08 18:14:31 |
Other Links: | manifest | tags |
Context
2020-12-08
| ||
18:16 | Clearly mark as disabled custom disabled radio inputs check-in: ae9abae8f8 user: bohwaz tags: trunk | |
18:14 | Alert message if statement is unbalanced check-in: f5f8777028 user: bohwaz tags: trunk | |
18:04 | Fix count for simple tracking check-in: 3db9fbfa3d user: bohwaz tags: trunk | |
Changes
Modified src/templates/acc/reports/balance_sheet.tpl from [585b776364] to [a7a5928f43].
1 2 3 4 5 6 7 8 9 10 | {include file="admin/_head.tpl" title="Bilan" current="acc/years"} {include file="acc/reports/_header.tpl" current="balance_sheet" title="Bilan"} <table class="statement"> <colgroup> <col width="50%" /> <col width="50%" /> </colgroup> <tbody> | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {include file="admin/_head.tpl" title="Bilan" current="acc/years"} {include file="acc/reports/_header.tpl" current="balance_sheet" title="Bilan"} {if $asset_sum != $liability_sum} <p class="alert block"> <strong>Le bilan n'est pas équilibré !</strong><br /> Vérifiez que vous n'avez pas oublié de reporter des soldes depuis le précédent exercice. </p> {/if} <table class="statement"> <colgroup> <col width="50%" /> <col width="50%" /> </colgroup> <tbody> |
︙ | ︙ |