Don't put any text in the <a> with only id so that the class isn't need in CSS.
<joar> you should change it to <a id="foo"></a>Generating reports <joar> so, just create an empty <a> tag before the anchor target <bkuhn> is that really the "right way" to do it? <joar> it's the generally accepted way <bkuhn> oh, ok. <joar> it's the way sphinx does it, for example <joar> I think wikipedia does the same
This commit is contained in:
parent
f360feb975
commit
45904d4a25
4 changed files with 8 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
||||||
As an accountant that collaborates with other accountants I need:
|
As an accountant that collaborates with other accountants I need:
|
||||||
|
|
||||||
|
|
||||||
- <a class="idOnly" id="simultaneous-ledger-edits">Simultaneous editing of the same ledger</a>
|
- <a id="simultaneous-ledger-edits"></a>Simultaneous editing of the same ledger
|
||||||
- FIXME: this should probably be stated differently: In the case of decentralized ledgers, such as ledger-cli files shared via DVCS
|
- FIXME: this should probably be stated differently: In the case of decentralized ledgers, such as ledger-cli files shared via DVCS
|
||||||
- Easy synchronization of entries from separate ledgers
|
- Easy synchronization of entries from separate ledgers
|
||||||
|
|
||||||
|
|
|
@ -5,13 +5,13 @@ As an US-based NPO I need a way to *generate reports* in order to:
|
||||||
|
|
||||||
The usual reports an NPO is expected to generate, and all of these should be generatable for any given date period:
|
The usual reports an NPO is expected to generate, and all of these should be generatable for any given date period:
|
||||||
|
|
||||||
- <a class="idOnly" id="trial-balance"></a>[Trial balance](http://en.wikipedia.org/wiki/Trial_balance)
|
- <a id="trial-balance"></a>[Trial balance](http://en.wikipedia.org/wiki/Trial_balance)
|
||||||
- <a class="idOnly" id="bank-reconciliation"></a> [Bank Reconciliation Report](http://en.wikipedia.org/wiki/Bank_reconciliation)
|
- <a id="bank-reconciliation"></a> [Bank Reconciliation Report](http://en.wikipedia.org/wiki/Bank_reconciliation)
|
||||||
+ This report often needs to be generated with input from the user, since [the subset sum problem](http://en.wikipedia.org/wiki/Subset_sum_problem) is [NP-complete](http://en.wikipedia.org/wiki/NP-complete), human intervention is often needed to identify the specific transactions to show on this report.
|
+ This report often needs to be generated with input from the user, since [the subset sum problem](http://en.wikipedia.org/wiki/Subset_sum_problem) is [NP-complete](http://en.wikipedia.org/wiki/NP-complete), human intervention is often needed to identify the specific transactions to show on this report.
|
||||||
- <a class="idOnly" id="chart-of-accounts"></a> [Chart of accounts](http://en.wikipedia.org/wiki/Chart_of_accounts)
|
- <a id="chart-of-accounts"></a> [Chart of accounts](http://en.wikipedia.org/wiki/Chart_of_accounts)
|
||||||
- <a class="idOnly" id="cash-disbursements">Cash Disbursements Journal</a>
|
- <a id="cash-disbursements"></a>Cash Disbursements Journal
|
||||||
- <a class="idOnly" id="income-report">Income Report</a> (just a list/sum of all Income accounts for a period)
|
- <a id="income-report"></a>Income Report (just a list/sum of all Income accounts for a period)
|
||||||
- <a class="idOnly" id="expenses-report">Expenses Report</a> (just a list/sum of all Expenses accounts for a period)
|
- <a id="expenses-report"></a>Expenses Report (just a list/sum of all Expenses accounts for a period)
|
||||||
- [[Fund Report|UseCases/FundAccounting#FundReport]]
|
- [[Fund Report|UseCases/FundAccounting#FundReport]]
|
||||||
|
|
||||||
Also, To handle [[UseCases/FundAccounting]] all of these reports should be generatable narrowed to specific funds.
|
Also, To handle [[UseCases/FundAccounting]] all of these reports should be generatable narrowed to specific funds.
|
||||||
|
|
|
@ -5,7 +5,7 @@ of uses. While the ability to impose a specific workflow (e.g., for a
|
||||||
bookkeeper who might make an error easily if the system doesn't require a
|
bookkeeper who might make an error easily if the system doesn't require a
|
||||||
workflow), the workflow should not be dictated.
|
workflow), the workflow should not be dictated.
|
||||||
|
|
||||||
## <a class="idOnly" id="unaccrued-invoice">The "Unaccrued Invoice" Example</a>
|
## <a id="unaccrued-invoice"></a>The "Unaccrued Invoice" Example
|
||||||
|
|
||||||
|
|
||||||
The easiest example I have of this relates to accruing income upon invoice
|
The easiest example I have of this relates to accruing income upon invoice
|
||||||
|
|
|
@ -27,6 +27,3 @@ footer {
|
||||||
.npoacct-navbar .createlink a {
|
.npoacct-navbar .createlink a {
|
||||||
color: #ce1f1f;
|
color: #ce1f1f;
|
||||||
}
|
}
|
||||||
a.idOnly {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
Loading…
Reference in a new issue