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

What are the steps to add a report?

Subscribe

Get notified when there's activity on this post

This question has been flagged
v7report
2 Replies
13877 Views
Avatar
Gilles Lehoux

What are the steps to add a report? For example, a second version of the Delivery Order. In the for view for the Delivery Order, under the Print menu, there would be 2 entries instead of 1.

0
Avatar
Discard
Avatar
Gilles Lehoux
Author Best Answer

To add a report you can follow these steps. We'll use the Delivery Order as an example:

  • Go to Settings/Users/Admin/Rights, and enable Technical Features
  • Go to Settings/Actions/Reports
  • Find and Click on the Delivery Order
  • In the More menu, click Duplicate. This will put you in edit mode.
  • Change the Name to Delivery Order Test
  • Click Save
  • In the Print menu, Click "Add Print Button"

Note: This is a draft of an answer - it does not work in the end because instead of adding a report it replaces the existing one. I hope someone can improve this answer and delete this note. Maybe there needs to be a step where the "Report File" must also be duplicated and renamed in the file system. The objective of this question is to create a report and then edit it in OpenOffice using the plugin. The "Open a new report" option in the plugin doesn't work - it crashes OpenOffice after you click "send to server". But, the "Modify existing report" does work.

0
Avatar
Discard
Christophe MILLARD

Hi,Where is the "Print Menu" ?

Avatar
tvazac
Best Answer

I think, the best options is creating new module. You have to do following steps.

  • Create new folder (mysaleorder_report)
  • Create folder report
  • In root folder create __init__.py, __openerp__.py (with related content, inside init don't forgot to import report) and xml file sale_report.xml with following

  <openerp>
      <data>
        <report id="report_mysaleorder_report" model="sale.order" name="sale.order.myreport" rml="mysaleorder_report/report/mysaleorder_report.rml" string="My sale order report" auto="False" header="False"/>
      </data>
    </openerp>
  • Enter into report directory and creates __init__.py and sale_order_myreport.py which should have following skeleton:

    class sale_order_myreport(report_sxw.rml_parse):
            def __init__(self, cr, uid, name, context):
                super(sale_order_myreport, self).__init__(cr, uid, name, context=context)
                self.localcontext.update({
                    'time': time,
                })
    
    report_sxw.report_sxw(
        'report.sale.order.myreport',
        'sale.order',
        'addons/mysaleorder_report/report/mysaleorder_report.rml',
        parser=sale_order_myreport
    
  • Last step is creating mysaleorder_report.rml. You can do it with many ways, create sxw file and generate rml, copy rml from another report and customize it, or write your own.

If I wrote it without errors you should have new report under sale orders menu. You can look into documentation, there is at least some info. And another very usefull source is http://wyden.com/openerp/customizing/reports

0
Avatar
Discard
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
Display report only in form view?
v7 report
Avatar
Avatar
1
Jan 24
5407
General Ledger for individual accounts Solved
v7 report
Avatar
Avatar
1
Jan 24
14856
Can you explain me the meaning of fields in ir.actions.report.xml object form?
v7 report
Avatar
0
Mar 15
5889
Change report in a custom module?
v7 report
Avatar
Avatar
1
Mar 15
10746
What are the main differences between report_sxw, report_rml and report_custom?
v7 report
Avatar
0
Mar 15
3923
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