valueflows

valueflows docs
git clone https://s.sonu.ch/~srfsh/valueflows.git
Log | Files | Refs | README

accounting.md (3521B)


      1 # Accounting
      2 
      3 ### Recording Basic Economic Activity
      4 
      5 The ValueFlows vocabulary is based on the REA ontology (Resources, Events and Agents) the ISO Accounting and Economic Ontology, which was evolved for that purpose. (See Appendix for links.)
      6 
      7 Since all the data is recorded as the economic activity happens and is represented in its most basic form, you can get separate accounting views for: a network, each group in the network, each project, each individual. In other words, people in the network log events as they occur and the accounting *Just Happens*.
      8 
      9 All of the views can emerge from subsets of the same data.  Any standard (or non-standard) accounting report can be created.
     10 
     11 Or potentially, views for a global value system economy (really).
     12 
     13 
     14 ### Accounting as in Accountability...
     15 
     16 * from peers to each other
     17 * from members to a network
     18 * from a network to the members
     19 * from one network to another
     20 * from a network to the community
     21 * from a network to the ecosystem
     22 
     23 Accounting isn't always just counting beans.  It will be important for community economies: what resources do we have, what happened with them, how are they doing? What resources do we need? Who needs what? Who can provide what?  What waste have we generated and how can we improve?
     24 
     25 
     26 ### But if you want to count beans...
     27 
     28 The standard set of accounting reports are needed by many organizations. A standard General Ledger, Balance Sheet, and Income Statement can be generated automatically from ValueFlows data. No need to create a Chart of Accounts or post double-entries, those can all be created by a computer program on request.
     29 
     30 ![GL](https://raw.githubusercontent.com/valueflows/valueflows/master/release-doc-in-process/std-accounting.png)
     31 
     32 Moreover, General Ledgers and accounting reports can be created automatically for each agent in an economic network using the VF vocabulary.  The accounting views use the Dependent or Individual Agent view of ValueFlows. See also [Independent vs Dependent views](core.md#independent-vs-dependent-views).
     33 
     34 Accounting statements can also be updated instantly for each participant in any economic event as soon as the event is recorded. For example, consider an economic exchange, where one agent transfers some goods to another, and the other agent transfers some money in return. The inventory of the goods-providing agent will be instantly decremented, and the receiving agent's incremented. Likewise the money accounts of the money-providing and receiving agents will immediately change. Income statements, balance sheets, and cash flow reports can reflect the new changes immediately. The financial positions of each agent can always be up-to-date as of the last recorded event.
     35 
     36 This article describes how to generate General Ledgers etc from REA data using procedural code: [Operation of a Relational Accounting System, Graham Gal and Bill McCarthy](https://www.researchgate.net/publication/292781264_Operation_of_a_relational_accounting_system)
     37 
     38 Wim Laurier is working on how to do it declaratively. [This paper](http://ceur-ws.org/Vol-2383/paper8.pdf) gives an early view of how Wim and Satoshi Horiuchi intend to do it.
     39 
     40 The difference between doing it procedurally and doing it declaratively:
     41 * A procedural program defines a step-by-step method of getting the desired results.
     42 * A declarative program describes the desired results and hands it to another program that can generate the desired results from your description. The person who desires the results writes much less code.