Browse Source

Preparation for 8.0 branch

pull/6/head
Pedro M. Baeza 10 years ago
parent
commit
834c3fc277
  1. 56
      .gitignore
  2. 23
      .travis.yml
  3. 11
      README
  4. 24
      README.md
  5. 0
      __unported__/base_report_assembler/__init__.py
  6. 2
      __unported__/base_report_assembler/__openerp__.py
  7. 0
      __unported__/base_report_assembler/assembled_report.py
  8. 0
      __unported__/base_report_assembler/i18n/base_report_assembler.pot
  9. 0
      __unported__/base_report_assembler/i18n/fr.po
  10. 0
      __unported__/base_report_assembler/ir_report.py
  11. 0
      __unported__/base_report_assembler/report_assembler.py
  12. 0
      __unported__/report_xls/__init__.py
  13. 2
      __unported__/report_xls/__openerp__.py
  14. 0
      __unported__/report_xls/report_xls.py
  15. 0
      __unported__/report_xls/static/src/img/icon.png
  16. 0
      __unported__/report_xls/utils.py

56
.gitignore

@ -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

@ -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

@ -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

@ -0,0 +1,24 @@
[![Build Status](https://travis-ci.org/OCA/reporting-engine.svg?branch=8.0)](https://travis-ci.org/OCA/reporting-engine)
[![Coverage Status](https://img.shields.io/coveralls/OCA/reporting-engine.svg)](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/

0
base_report_assembler/__init__.py → __unported__/base_report_assembler/__init__.py

2
base_report_assembler/__openerp__.py → __unported__/base_report_assembler/__openerp__.py

@ -43,7 +43,7 @@ the folling module(s):
'depends': ['base'],
'data': [],
'test': [],
'installable': True,
'installable': False,
'auto_install': False,
'application': False,
}

0
base_report_assembler/assembled_report.py → __unported__/base_report_assembler/assembled_report.py

0
base_report_assembler/i18n/base_report_assembler.pot → __unported__/base_report_assembler/i18n/base_report_assembler.pot

0
base_report_assembler/i18n/fr.po → __unported__/base_report_assembler/i18n/fr.po

0
base_report_assembler/ir_report.py → __unported__/base_report_assembler/ir_report.py

0
base_report_assembler/report_assembler.py → __unported__/base_report_assembler/report_assembler.py

0
report_xls/__init__.py → __unported__/report_xls/__init__.py

2
report_xls/__openerp__.py → __unported__/report_xls/__openerp__.py

@ -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:

0
report_xls/report_xls.py → __unported__/report_xls/report_xls.py

0
report_xls/static/src/img/icon.png → __unported__/report_xls/static/src/img/icon.png

Before

Width: 88  |  Height: 85  |  Size: 11 KiB

After

Width: 88  |  Height: 85  |  Size: 11 KiB

0
report_xls/utils.py → __unported__/report_xls/utils.py

Loading…
Cancel
Save