dcPropelReportsPlugin
0.1.1beta
for sf 1.2 and Propel
MIT
This plugin provides a custom generation of reports in a graphical fashion, allowing end users to build ang get their custom reports.
Report creation is done by a Query by Example way, and some restrictions are imposed, but it seems to be very useful in many scenarios.
Developers
License
Copyright (c) 2009 Juan Pablo Perez
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Releases for sf 1.2
| Version |
License |
API |
Released |
|
0.1.1beta
|
MIT license |
1.2.0beta
|
11/01/2010 |
|
0.1.0beta
|
MIT license |
1.2.0beta
|
06/01/2010 |
Changelog for release 0.1.1 - 11/01/2010
- Fixed problem in dc_report_table module, when add first table to query
Other releases
Release 0.1.1 - 11/01/2010
- Fixed problem in dc_report_table module, when add first table to query
Release 0.1.0 - 06/01/2010
dcPropelReportsPlugin
Introduction
This plugin provides a custom generation of reports in a graphical fashion,
allowing end users to build ang get their custom reports.
Report creation is done by a Query by Example way, and some restrictions are
imposed, but it seems to be very useful in many scenarios.
Requirements
- This plugin, as its name suggest it only works with Propel Objects.
- Prototype JS
- sfPhpExcelPlugin to export report results to Excel file.
Installation
For report creation and administration you should enable the followoing modules:
- dc_report_query: main report administration module
- dc_report_table: table and relations administration for a single report
- dc_report_condition: condition filtering administration (Query by Example) for a single report
- dc_report_field: columns to be shown fo a single report
- dc_report_filter: filters that will be aplied to the list of report query.
For accessing reports created you should only enable the following modules:
- dc_report_list: report renderization
- dc_report_public: browse published reports
Cofiguration
The default number of rows to display in a dc_report_list module is 20. If you wanna change this number add the next parameter in your app.yml
app_dc_report_query:
list_rows: 20
The default number of rows to export to excel in a dc_report_list module is 20. If you wanna change this number add the next parameter in your app.yml
app_dc_report_query:
export_rows: 20
Usage
The way to access a generated report is by the following symfony route:
dc_report_list/:name:
where :name: is the unique name of a report previously created
Authors
AC. Juan Pablo Perez jpablop@cespi.unlp.edu.ar
Lic. Christian A. Rodriguez car@cespi.unlp.edu.ar