mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
Preparation for 8.0 branch
This commit is contained in:
56
.gitignore
vendored
Normal file
56
.gitignore
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
env/
|
||||
bin/
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.coverage
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
|
||||
# Pycharm
|
||||
.idea
|
||||
|
||||
# Mr Developer
|
||||
.mr.developer.cfg
|
||||
.project
|
||||
.pydevproject
|
||||
|
||||
# Rope
|
||||
.ropeproject
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# Backup files
|
||||
*~
|
||||
*.swp
|
||||
23
.travis.yml
Normal file
23
.travis.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
language: python
|
||||
|
||||
python:
|
||||
- "2.7"
|
||||
|
||||
env:
|
||||
- VERSION="8.0" ODOO_REPO="odoo/odoo"
|
||||
- VERSION="8.0" ODOO_REPO="OCA/OCB"
|
||||
|
||||
virtualenv:
|
||||
system_site_packages: true
|
||||
|
||||
install:
|
||||
- pip install xlwt
|
||||
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
|
||||
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
|
||||
- travis_install_nightly ${VERSION}
|
||||
|
||||
script:
|
||||
- travis_run_tests ${VERSION}
|
||||
|
||||
after_success:
|
||||
coveralls
|
||||
11
README
11
README
@@ -1,11 +0,0 @@
|
||||
This repository hosts alternative reporting engines to the ones included on OpenERP core (RML and Webkit). It is complemented with the ones that host the reports theirself:
|
||||
|
||||
https://launchpad.net/account-financial-report
|
||||
https://launchpad.net/purchase-report
|
||||
https://launchpad.net/sale-reports
|
||||
...
|
||||
|
||||
The convention is to use a suffix to each module to indicate that it's for using with that report engine (for example, account_invoice_report_birt or sale_order_report_pentaho).
|
||||
|
||||
It can contain also another utilities directly involved with reports (like merge/split utils, checkers, signing tools and so on).
|
||||
|
||||
24
README.md
Normal file
24
README.md
Normal file
@@ -0,0 +1,24 @@
|
||||
[](https://travis-ci.org/OCA/reporting-engine)
|
||||
[](https://coveralls.io/r/OCA/reporting-engine?branch=8.0)
|
||||
|
||||
OCA alternative reporting engines and reporting utilities for Odoo
|
||||
==================================================================
|
||||
|
||||
This repository hosts alternative reporting engines to the ones included on Odoo core (RML, QWeb and Webkit). It is complemented with the ones that host the reports theirself:
|
||||
|
||||
https://github.com/OCA/account-financial-reporting
|
||||
https://github.com/OCA/purchase-reporting
|
||||
https://github.com/OCA/sale-reporting
|
||||
...
|
||||
|
||||
The convention is to use a suffix to each module to indicate that it's for using with that report engine (for example, account_invoice_report_birt or sale_order_report_pentaho).
|
||||
|
||||
It can contain also another utilities directly involved with reports (like merge/split utils, checkers, signing tools and so on).
|
||||
|
||||
----
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
http://odoo-community.org/
|
||||
@@ -43,7 +43,7 @@ the folling module(s):
|
||||
'depends': ['base'],
|
||||
'data': [],
|
||||
'test': [],
|
||||
'installable': True,
|
||||
'installable': False,
|
||||
'auto_install': False,
|
||||
'application': False,
|
||||
}
|
||||
@@ -75,6 +75,6 @@ Contact info@noviat.com for help with the development of Excel reports in OpenER
|
||||
'demo': [],
|
||||
'data': [],
|
||||
'active': False,
|
||||
'installable': True,
|
||||
'installable': False,
|
||||
}
|
||||
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Reference in New Issue
Block a user