File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
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
+
5
11
## [ 0.7.0]
6
12
7
13
- Added SlickReportingListView: a Report Class to display content of the model (like a ModelAdmin ChangeList)
Original file line number Diff line number Diff line change @@ -21,14 +21,15 @@ Django Slick Reporting
21
21
22
22
A one stop reports engine with batteries included.
23
23
24
+ This is project is an extract of the reporting engine of `Django ERP Framework <https://github.com/RamezIssac/django-erp-framework >`_
24
25
25
26
Features
26
27
--------
27
28
28
29
- Effortlessly create Simple, Grouped, Time series and Crosstab reports in a handful of code lines.
29
30
- Create your Custom Calculation easily, which will be integrated with the above reports types
30
31
- 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.
32
33
33
34
Installation
34
35
------------
Original file line number Diff line number Diff line change 1
1
default_app_config = "slick_reporting.apps.ReportAppConfig"
2
2
3
- VERSION = (0 , 7 , 0 )
3
+ VERSION = (0 , 8 , 0 )
4
4
5
- __version__ = "0.7 .0"
5
+ __version__ = "0.8 .0"
Original file line number Diff line number Diff line change @@ -310,7 +310,6 @@ def test_productclientsalesmatrix_no_remainder(self):
310
310
data = report .get_report_data ()
311
311
self .assertEqual (data [0 ]["__total__CT%s" % self .client1 .pk ], 300 )
312
312
self .assertEqual (data [0 ]["__total__CT%s" % self .client2 .pk ], 600 )
313
- # self.assertEqual(data[0]["__total__CT----"], 900)
314
313
315
314
def test_show_empty_records (self ):
316
315
report = report_generators .ClientTotalBalance ()
You can’t perform that action at this time.
0 commit comments