All Projects → moneymanagerex → general-reports

moneymanagerex / general-reports

Licence: MIT License
Bunch of general reports for Money Manager Ex

Programming Languages

lua
6591 projects
HTML
75241 projects
python
139335 projects - #7 most used programming language
CMake
9771 projects
go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to general-reports

Squid
A Ruby library to plot charts in PDF files
Stars: ✭ 205 (+225.4%)
Mutual labels:  chart, report
wp-statistics
Complete WordPress Analytics and Statistics for your site!
Stars: ✭ 83 (+31.75%)
Mutual labels:  chart, report
datart
Datart is a next generation Data Visualization Open Platform
Stars: ✭ 1,042 (+1553.97%)
Mutual labels:  chart, report
HCLineChartView
HCLineChartView is a beautiful iOS library for drawing line charts. It is highly customizable and easy to use.
Stars: ✭ 22 (-65.08%)
Mutual labels:  chart
ahr999-mixin
一个提供实时更新的Ahr999指数的mixin机器人,与一个提供历史ahr999指数的web页面。
Stars: ✭ 23 (-63.49%)
Mutual labels:  chart
hustreport
📓 An Unofficial Graduate Report Template in LaTeX for Huazhong University of Science and Technology
Stars: ✭ 18 (-71.43%)
Mutual labels:  report
time chart
A scrollable time chart in Flutter.
Stars: ✭ 21 (-66.67%)
Mutual labels:  chart
OLAP-cube
is an hypercube of data
Stars: ✭ 23 (-63.49%)
Mutual labels:  report
better-access-charts
Better charts for Access with chart.js
Stars: ✭ 19 (-69.84%)
Mutual labels:  chart
awesome-tools
Open-source list of awesome data visualization tools (e.g., charting libraries) for software developers 📊📈
Stars: ✭ 47 (-25.4%)
Mutual labels:  chart
android-charts
A curated list of Android Chart libraries.
Stars: ✭ 69 (+9.52%)
Mutual labels:  chart
WTKit
HTTP Codable Request/Swift extensions
Stars: ✭ 48 (-23.81%)
Mutual labels:  chart
BarChart
SwiftUI Bar Chart
Stars: ✭ 156 (+147.62%)
Mutual labels:  chart
charts
☸️ Helm Charts for YOURLS
Stars: ✭ 12 (-80.95%)
Mutual labels:  chart
survey-analytics
SurveyJS Analytics Pack
Stars: ✭ 56 (-11.11%)
Mutual labels:  chart
HTML-Crypto-Currency-Chart-Snippets
💹 Simple HTML Snippets to create Tickers / Charts of Cryptocurrencies with the TradingView API 💹
Stars: ✭ 89 (+41.27%)
Mutual labels:  chart
LMGraphView
LMGraphView is a simple and customizable graph view for iOS.
Stars: ✭ 61 (-3.17%)
Mutual labels:  chart
britecharts-react
Britecharts-react is a React wrapper for the Britecharts charting library. It allows the use of Britecharts charts within a React application.
Stars: ✭ 110 (+74.6%)
Mutual labels:  chart
stacked-gantt
JQuery Gantt-like chart with stacked activities/tasks, providing conciser information.
Stars: ✭ 19 (-69.84%)
Mutual labels:  chart
bar-horizontal
Create beautiful horizontal charts, that fit your terminal.
Stars: ✭ 36 (-42.86%)
Mutual labels:  chart

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.

Demo Doccou alpha

Build Status

Report structure

Typically, one general report contains:

  1. sqlcontent.sql (MMEX will execute this SQL first to return one result set)

    select * from assets;
  2. 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
  3. 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
  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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].