Changeset - 17526685afb7
[Not reviewed]
0 4 0
Bradley Kuhn (bkuhn) - 10 years ago 2013-11-14 17:42:48
bkuhn@ebb.org
Use a CSS class to avoid decoration on <a id=""> tags that don't have an href.
4 files changed with 11 insertions and 8 deletions:
0 comments (0 inline, 0 general)
UseCases/Collaborating.mdwn
Show inline comments
 
As an accountant that collaborates with other accountants I need:
 

	
 

	
 
- <a style="text-decoration: none" id="simultaneous-ledger-edits">Simultaneous editing of the same ledger</a>
 
- <a class="idOnly" id="simultaneous-ledger-edits">Simultaneous editing of the same ledger</a>
 
- 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
 

	
 
in order to efficiently and collaboratively perform accounting tasks.
UseCases/GeneratingReports.mdwn
Show inline comments
 
As an US-based NPO I need a way to *generate reports* in order to:
 

	
 
- Send the reports to an auditor
 
- Forward them to organization members.
 

	
 
The usual reports an NPO is expected to generate, and all of these should be generatable for any given date period:
 

	
 
- <a style="text-decoration: none" id="trial-balance"></a>[Trial balance](http://en.wikipedia.org/wiki/Trial_balance)
 
- <a style="text-decoration: none" id="bank-reconciliation"></a> [Bank Reconciliation Report](http://en.wikipedia.org/wiki/Bank_reconciliation)
 
- <a class="idOnly" 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)
 
    + 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 style="text-decoration: none" id="chart-of-accounts"></a> [Chart of accounts](http://en.wikipedia.org/wiki/Chart_of_accounts)
 
-  <a style="text-decoration: none" id="cash-disbursements">Cash Disbursements Journal</a>
 
- <a style="text-decoration: none" id="income-report">Income Report</a> (just a list/sum of all Income accounts for a period)
 
- <a style="text-decoration: none" id="expenses-report">Expenses Report</a>  (just a list/sum of all Expenses accounts for a period)
 
-  <a class="idOnly" 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 class="idOnly" id="income-report">Income Report</a> (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)
 
- [[Fund Report|UseCases/FundAccounting#FundReport]]
 

	
 
Also, To handle [[UseCases/FundAccounting]] all of these reports should be generatable narrowed to specific funds.
UseCases/WorkFlow.mdwn
Show inline comments
 
# Non-Profit Workflow
 

	
 
Many accounting systems seem to assume that the workflow fits a certain type
 
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
 
workflow), the  workflow should not be dictated.
 

	
 
## <a id="unaccrued-invoice">The "Unaccrued Invoice" Example</a>
 
## <a class="idOnly" id="unaccrued-invoice">The "Unaccrued Invoice" Example</a>
 

	
 

	
 
The easiest example I have of this relates to accruing income upon invoice
 
generation.  Non-profits very typically generate invoices as part of a
 
fundraising discussion *even though* the non-profit doesn't have a good faith
 
belief that the invoice will be paid.  Using an invoice to convince a donor
 
to make a donation is, in essence, just a fundraising strategy to pressure
 
for them to commit to a donation that the donor has hinted they might make.
 

	
 
Under GAAP, these invoices should **not** be accrued nor recognized, because
 
the organization doesn't have a good faith belief that the income is
 
forthcoming.
local.css
Show inline comments
...
 
@@ -18,12 +18,15 @@ footer {
 
.npoacct-navbar.navbar-default .navbar-nav > li > a,
 
.npoacct-navbar.navbar-default .navbar-brand,
 
.npoacct-navbar.navbar-default .navbar-text,
 
.npoacct-navbar {
 
  color: white;
 
}
 
.npoacct-navbar .createlink a:focus,
 
.npoacct-navbar .createlink a:active,
 
.npoacct-navbar .createlink a:hover,
 
.npoacct-navbar .createlink a {
 
  color: #ce1f1f;
 
}
 
a.idOnly {
 
text-decoration: none !important;
 
}
...
 
\ No newline at end of file
0 comments (0 inline, 0 general)