Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Guest House
    • Drankenhandelaar
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Solar Energy Systems
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC Services
    Others
    • Nonprofit Organization
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Edit invoice document (report) - Odoo16

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
invoiceinvoicesreportreportsodoo16features
3 Antwoorden
4517 Weergaven
Avatar
Thomas

Hello, I need help and I have a question about invoice editing (report) : 

So basically as you may know via the settings in Odoo, we can choose and web external layout for all documents (light - striped - bold - boxed), so I use the striped that uses the "web.external_layout_striped" view for all reports pdf (purchase order, invoice document...)

But I want to apply modifications on the "web.external_layout_striped" that are only visible for invoice documents, how can I do that by inheriting in XML the view  "web.external_layout_striped" ? Maybe with a specific "IF" statement?

Example : If I inherit the "web.external_layout_striped" view and add a div on it, the div will appear on all documents, I don't want that, I want the div to only be visible for invoice documents.

Thanks ! 

0
Avatar
Annuleer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Beste antwoord

Hi,

To make any customization in the report layout striped you can inherit the template "web.external_layout_striped" and if you want to add the customization only for the invoice module please try with adding a condition "t-if="o._name == 'account.move'""


example


<template id="inherit_external_layout_striped"
inherit_id="web.external_layout_striped">

             <div t-if=o._name == 'account.move'>

         

            # Your custom code

              

            </div>
<xpath expr="//t[@t-call='web.external_layout_striped']" position="replace">

        </xpath>

</template>


Hope it helps

0
Avatar
Annuleer
Avatar
Thomas
Auteur Beste antwoord

Hello Jort, first thanks for your answer, 

Can't i do that by inheriting the web.external_layout_striped view? I prefer to use this model for all reports (especially the grids), because as I understand your post on your blog, we create another custom layout, is it not possible to inherit an existant layout? 

Sincerly yours

0
Avatar
Annuleer
Jort de Vreeze

The web.external_layout_striped view layout uses the attribute t-att-data-oe-model="o and o._name", e.g., <span t-field="o.name"/>. So you could try to use (e.g., t-if) specific invoice related items using o.item. But this really depends on your use case.

Avatar
Jort de Vreeze
Beste antwoord

The items displayed on the invoice are specified in the report_invoice_document​ template from the account module: https://github.com/odoo/odoo/blob/16.0/addons/account/views/report_invoice.xml. So you would need to extend this template to add your modifications. See this post: https://www.odoo.com/forum/help-1/add-bank-account-number-under-company-details-of-a-invoice-odoo-16-community-edition-236599#answer-236603

I hope this helps!

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Odoo 16. Report same report has two different faces.
invoice reports odoo16features
Avatar
Avatar
1
dec. 23
2627
Layout problem with multipage invoices Opgelost
invoice layout report reports
Avatar
Avatar
Avatar
3
mrt. 15
6506
Error when printing an Invoice
invoice error invoices report
Avatar
0
mrt. 15
4345
How can i print my invoice from a server action
pdf invoice report serveraction odoo16features
Avatar
0
mrt. 24
2128
Quotation report crashes when adding 2 products
report quotation reports Studio odoo16features
Avatar
0
nov. 23
1418
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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