Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Food & Hospitality
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Guest House
    • Distributor nápojů
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Trades
    • Údržbář
    • IT hardware a podpora
    • Solar Energy Systems
    • Výrobce obuvi
    • Úklidové služby
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

What are the steps to add a report?

Odebírat

Get notified when there's activity on this post

This question has been flagged
v7report
2 Odpovědi
13884 Zobrazení
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
Zrušit
Avatar
Gilles Lehoux
Autor Nejlepší odpověď

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
Zrušit
Christophe MILLARD

Hi,Where is the "Print Menu" ?

Avatar
tvazac
Nejlepší odpověď

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
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Display report only in form view?
v7 report
Avatar
Avatar
1
led 24
5412
General Ledger for individual accounts Vyřešeno
v7 report
Avatar
Avatar
1
led 24
14858
Can you explain me the meaning of fields in ir.actions.report.xml object form?
v7 report
Avatar
0
bře 15
5890
Change report in a custom module?
v7 report
Avatar
Avatar
1
bře 15
10749
What are the main differences between report_sxw, report_rml and report_custom?
v7 report
Avatar
0
bře 15
3928
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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