Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramez Ashraf committed May 28, 2023
1 parent 47d73ca commit c3172ba
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.8.0]

- Breaking: [Only if you use Crosstab reports] renamed crosstab_compute_reminder to crosstab_compute_remainder
- Breaking : [Only if you set the templates statics by hand] renamed slick_reporting to ra.hightchart.js and ra.chartjs.js to
erp_framework.highchart.js and erp_framework.chartjs.js respectively

## [0.7.0]

- Added SlickReportingListView: a Report Class to display content of the model (like a ModelAdmin ChangeList)
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ Django Slick Reporting

A one stop reports engine with batteries included.

This is project is an extract of the reporting engine of `Django ERP Framework <https://github.com/RamezIssac/django-erp-framework>`_

Features
--------

- Effortlessly create Simple, Grouped, Time series and Crosstab reports in a handful of code lines.
- Create your Custom Calculation easily, which will be integrated with the above reports types
- Optimized for speed.
- Batteries included! Chart.js , DataTable.net & a Bootstrap form.
- Batteries included! Highcharts & Chart.js charting capabilities , DataTable.net & easily customizable Bootstrap form.

Installation
------------
Expand Down
4 changes: 2 additions & 2 deletions slick_reporting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_app_config = "slick_reporting.apps.ReportAppConfig"

VERSION = (0, 7, 0)
VERSION = (0, 8, 0)

__version__ = "0.7.0"
__version__ = "0.8.0"
1 change: 0 additions & 1 deletion tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,6 @@ def test_productclientsalesmatrix_no_remainder(self):
data = report.get_report_data()
self.assertEqual(data[0]["__total__CT%s" % self.client1.pk], 300)
self.assertEqual(data[0]["__total__CT%s" % self.client2.pk], 600)
# self.assertEqual(data[0]["__total__CT----"], 900)

def test_show_empty_records(self):
report = report_generators.ClientTotalBalance()
Expand Down

0 comments on commit c3172ba

Please sign in to comment.