Skip to content

siena123/general-reports

This branch is 165 commits behind moneymanagerex/general-reports:master.

Folders and files

NameName
Last commit message
Last commit date
Oct 27, 2014
Oct 27, 2014
Oct 27, 2014
Oct 27, 2014
Oct 27, 2014
May 8, 2014
Feb 28, 2015
Jun 25, 2014
Jun 25, 2014
Feb 3, 2016
Jul 26, 2014
Feb 11, 2016
Apr 5, 2014
Oct 30, 2014
Jan 11, 2015
Apr 9, 2015
Apr 9, 2015
Apr 9, 2015
Aug 17, 2014
Dec 24, 2014
Dec 18, 2014
Jan 14, 2015
Oct 30, 2014
Jan 11, 2015
Oct 30, 2014
Oct 30, 2014
Apr 12, 2015
Oct 12, 2014
Mar 11, 2014
Jul 26, 2014
Mar 11, 2014
Nov 12, 2014
Jul 26, 2014
Jul 16, 2014
Jul 26, 2014
Jul 26, 2014

Repository files navigation

general-reports

General reports for Money Manager Ex which can be downloaded and imported easily. Reports can be created using Money Manager Ex as well.

compose general report

Build Status

Typically, one general report contains:

  1. sqlcontent.sql (MMEX will execute this sql first to return one result set)
  • sql
select * from assets_v1;
  1. luacontent.lua (There are two APIs here)
  • handle_record
function handle_record(record)
    // Your logic to modify a record and apply this function against every record from SQL.
   record:set("extra_value", record::get("VALUE") * 2);
end
  • complete
function complete(result)
   // Put some accumulated value and apply this function after SQL completes.
   result:set("TOTAL", 1000);
end
  1. template.htt (a plain text template file powered by html template which shares the same syntax with Perl's HTML::Template)

Contributing

  1. Fork the [repository] (http://github.com/moneymanagerex/general-reports)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new pull request

Donations

  1. Star it
  2. Donate to my Ripple address: rUY7DvWqNnSYCYiVr986W71tuaKtDCMNz3
  3. PayPal

About

bunch of general reports for Money Manager Ex

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 96.6%
  • Python 2.2%
  • Go 1.2%