Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How to install Aeroo Reports?

Subscribe

Get notified when there's activity on this post

This question has been flagged
installationv7reportingaeroo
3 Replies
56916 Views
Avatar
Ahmet Altinisik

How to install Aeroo Reports on OpenERP V7.0 ?

Aeroo Reports is a reporting engine for OpenERP. With the help of a openoffice instance runnig at server side you can have reports in many formats like. PDF XLS DOC ODT ODS TXT CSV.

6
Avatar
Discard
evon_dun

Can anyone tell the step by step procedure to start with aeroo reports with openoffice on Windows?

Gt01

I have installed this as per the instructions but now i cannot access Openerp - mozilla says "problem loading the page" - this is since i rebooted the server. Help! :)

Luke Branch

Hi Ahmet, Have you had any luck installing Aeroo reports with the 8.0 branch? I'm very interested in being able to export reports to XLS, DOC, ODS, etc, but cannot get it to work with the instructions for v7.0 and the new modules being ported to 8.0 (https://github.com/jamotion/aeroo).

Pascal Tremblay

Hey Ahmet Altinisik! How do you do to have red characters in your text below?

Avatar
Ahmet Altinisik
Author Best Answer

I installed Aeroo Reports after installing OpenERP on my Ubuntu 12.04 x64 Server.

If you are a newbie and want to copy paste all of the commands you should install your OpenERP server according to my installation answer.

You can find installation answer to of OpenERP on this page : How to install OpenERP V7.0 on Ubuntu 12.04 from launchpad repository?

Or you need to change the path names

Install required packages and openoffice. (Around 500 mb installation)

sudo apt-get install openoffice.org python-genshi python-cairo python-openoffice python-lxml python-uno
sudo apt-get install zip bzr python-setuptools

Download aeroo library from launchpad and install as a python module

cd ~
bzr branch lp:aeroolib
cd aeroolib/aeroolib/
sudo python ./setup.py install

Create a new folder and download aeroo modules from launchpad to this folder with bzr.

sudo su openerp
cd /opt/openerp/v7/
bzr branch lp:aeroo
exit

Add aeroo directory to the module search path of openerp by editing the config file

sudo nano /etc/openerp-server.conf

change the addons_path as

addons_path = /opt/openerp/v7/addons,/opt/openerp/v7/web/addons,/opt/openerp/v7/aeroo

create an init script for openoffice

sudo nano /etc/init.d/office

Paste this to your script

#!/bin/sh
/usr/bin/soffice --nologo --nofirststartwizard --headless --norestore --invisible "--accept=socket,host=localhost,port=8100,tcpNoDelay=1;urp;" &

Make the file executable and add init script to the startup

sudo chmod +x /etc/init.d/office
sudo update-rc.d office defaults

Run OpenOffice

sudo /etc/init.d/office

You can test your openoffice installation by connecting to openoffice from port 8100

telnet localhost 8100

If you see an output like below it means openoffice is working ok.

Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
e--'com.sun.star.bridge.XProtocolPropertiesUrpProtocolProperties.UrpProtocolPropertiesTidE--L

Restart openerp server to be able to check the additional module directory

sudo /etc/init.d/openerp-server restart

Now you can install aeroo modules from openerp interface.

I also recorded installation from openerp interface you can watch it in Youtube. (since interface is different you may not find where to install at first) http://youtu.be/S1bKPUL6nUU

You can find detailed information about aeroo reports from alistek's web page http://www.alistek.com/

AEROO REPORTS WIKI

To install report_aeroo_ooo on windows, check this answer for OpenOffice and PyUno setup.

15
Avatar
Discard
Miguel Fernández

Can I install LibreOffice instead OpenOffice? Is it posible?

Ahmet Altinisik
Author

OpenOffice replaced with LibreOffice in ubuntu. when you try to install openoffice so it is in fact installing Libre Office in 12.04 version

Miguel Fernández

Maybe my question must be: All the lines about OpenOffice works fine with LibreOffice or must be change something?

Ahmet Altinisik
Author

Nothing to change just write the commands as it is it will install Libre. It is %100 compatible

Miguel Fernández

Thank you. I'll try it.

Markku Luosto

If you hit the following error after installing Aeroo reports (at least Ubuntu 12.04)

Traceback (most recent call last):

File "/opt/openerp/software/70/aeroo/report_aeroo/report_aeroo.py", line 439, in create_aeroo_report

data = basic.generate(**oo_parser.localcontext).render().getvalue()

check the Genshi version. It should be 0.6. Version 0.7 did not work for me.

Kevin Shenk

Thanks for the great tutorial! Lots of good info!

Kevin Shenk

One question, I'm new to bzr, so I can't say for sure, but isn't 'bzr checkout --lightweight' better for this purpose than 'bzr branch'? My understanding is that a lightweight checkout will download less information and take less time but can still be updated...

Kevin Shenk

As noted, the http://openoffice.org package is a metapackage that installs libreoffice. Running 'apt-get install openoffice.org' installs a TON of packages. I've replaced that with 'apt-get install libreoffice-writer libreoffice-calc'. This gives a much lighter install and Aeroo is working great.

Zakaria Boulouard

I followed these instructions and when I restarted the server, it gave me this error "No handler found.". What's the problem? Thanks!

Gt01

I keep getting: root@cloudgrippa:~# telnet localhost 8100 Trying 127.0.0.1... telnet: Unable to connect to remote host: Connection refused

Group ODOO

Excellent!

Johny Doe

I run sudo /etc/init.d/office nothing happen and run telnet localhost 8100 connection refused. I don't know what went wrong. Any idea? Thanks

Dale

Thanks Ahmet

This saved the day for me. I have voted for this answer

Luke Branch

If anyone is looking for how to install this in Odoo 8.0 please refer to the following forum post (*includes an installation script): https://www.odoo.com/forum/help-1/question/8-0-how-can-i-install-the-official-aeroo-reports-alistek-for-odoo-version-8-solved-76044

Avatar
Julien Mousseaux
Best Answer

For those encountering "Connection refused" when trying to telnet to their soffice headless, you can try this alternative command (it worked for me):

/usr/bin/soffice -headless -accept="socket,host=localhost,port=8100;urp;" -nofirststartwizard &
2
Avatar
Discard
Avatar
Agence Aramis SIA
Best Answer

Hello,

I'am struggling to install report_aeroo_ooo on OpenERP 7.0 on Ubunut 12.04, here is the message of error I've got :
Warning! Unmet python dependencies!

No module named uno
No module named unohelper
No module named com.sun.star.beans
No module named com.sun.star.uno
No module named com.sun.star.connection
No module named com.sun.star.beans
No module named com.sun.star.lang
No module named com.sun.star.io
No module named com.sun.star.io

My Ubuntu 12.04 server is on bitnami amazon cloud server, I've installed it using OpenERP stack provided by bitnami.

Thank you for help!

0
Avatar
Discard
NetbeamERP Technology

use command sudo apt-get install uno. this is the error of dependencies.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
Aeroo Reports Issue
modules v7 reporting aeroo
Avatar
Avatar
Avatar
Avatar
Avatar
4
Feb 24
22455
Aeroo as an installable module out of the box?
installation module v7 aeroo
Avatar
Avatar
1
Mar 15
5109
How to disable Google Analytics?
installation v7
Avatar
Avatar
Avatar
Avatar
3
Apr 16
10350
OpenERP python package (PyPI) dependency list Solved
installation v7
Avatar
Avatar
Avatar
2
Dec 23
17893
Standalone Installation Of OpenERP 7.0
installation v7
Avatar
Avatar
Avatar
Avatar
3
Mar 15
9046
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now