Skip to content

Commit c3172ba

Browse files
author
Ramez Ashraf
committed
version bump
1 parent 47d73ca commit c3172ba

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [0.8.0]
6+
7+
- Breaking: [Only if you use Crosstab reports] renamed crosstab_compute_reminder to crosstab_compute_remainder
8+
- Breaking : [Only if you set the templates statics by hand] renamed slick_reporting to ra.hightchart.js and ra.chartjs.js to
9+
erp_framework.highchart.js and erp_framework.chartjs.js respectively
10+
511
## [0.7.0]
612

713
- Added SlickReportingListView: a Report Class to display content of the model (like a ModelAdmin ChangeList)

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@ Django Slick Reporting
2121

2222
A one stop reports engine with batteries included.
2323

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

2526
Features
2627
--------
2728

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

3334
Installation
3435
------------

slick_reporting/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
default_app_config = "slick_reporting.apps.ReportAppConfig"
22

3-
VERSION = (0, 7, 0)
3+
VERSION = (0, 8, 0)
44

5-
__version__ = "0.7.0"
5+
__version__ = "0.8.0"

tests/tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,6 @@ def test_productclientsalesmatrix_no_remainder(self):
310310
data = report.get_report_data()
311311
self.assertEqual(data[0]["__total__CT%s" % self.client1.pk], 300)
312312
self.assertEqual(data[0]["__total__CT%s" % self.client2.pk], 600)
313-
# self.assertEqual(data[0]["__total__CT----"], 900)
314313

315314
def test_show_empty_records(self):
316315
report = report_generators.ClientTotalBalance()

0 commit comments

Comments
 (0)