Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How can I add the shipping address to invoice report?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
invoicev7reportshipping
2 Respostes
12350 Vistes
Avatar
Erick Dyck

Hey guys,

i have a problem with adding the shipping/delivery address from the sale_order to the invoice report. I already saw this post (link below) and edited the files as descripted, but it doesn't worked for me. Can someone please help me? I use openERP version 7. Best regards

Dyck

Link: help.openerp.com/question/10304/how-can-i-display-the-delivery-address-on-the-invoice

0
Avatar
Descartar
le_dilem

Hi, have you check in settings/sales/ check Allow a different address for delivery and invoicing.

Erick Dyck
Autor

Yes, this option is checked.

le_dilem

the delivery address is indicated on the order, no use to put in the invoice.

Avatar
kaynis
Best Answer

You can create a module that inherits invoice and add the shipping address field to the invoice this way. After, you can edit the print out from invoice with Open Office report editor to include the field you just added. That should do it

        'deli_add': fields.many2one('res.partner.address', 'Delivery Address', select=True) add this to the columns of python code

and add to the form view of the module you want this field to show just after the invoice address field

        <field name="deli_add" />

this will give you your field and you will be able to select the shipping address but it will not auto fill when you select a client name. This should give you an idea of what you need to do.

0
Avatar
Descartar
kaynis

Remember you have to reload the server when you make changes to .py files and upgrade when you make changes to the xml files for new changes to take effect

Erick Dyck
Autor

Many thanks to you, that looks right :D I will check it tomorrow when I'm at work. Maybe it's the xml file, I forgot them. I will post tomorrow if it works or not.

Avatar
Erick Dyck
Autor Best Answer

I skipped the step to create a module and edited for testing the file addons/account/account_invoice.py. There I added this piece of code:

'partner_shipping_id': fields.many2one('res.partner', 'Delivery Address'),

Then I added following line in the account_print_invoice.rml:

<para style="tableAngebotContent">[[ display_address(o.partner_shipping_id) or 'No delivery address' ]]</para>

Now it's funny. Neither the street of the shipping address nor the text 'No delivery address' are visible. Is the code wrong or did I forgot something? Best regards

Dyck

0
Avatar
Descartar
kaynis

this is a very wrong move because if you mess up a base module the application may not open properly anymore. would advise to build a module with inherited invoice view and add you field there. You have to understand that there is an on_change function on the address in the python code and you need to add the shipping address to be affected by this function. Thus, the on_change function of address in invoice module should also change the shipping address which will also affect the view. This is why it is better to create a module of your own to incorporate all this

Erick Dyck
Autor

I know it's not good to edit base modules. How I already wrote, only for testing. The openERP is installed on a developmentserver, so if it crashes, who cares ;). For me, it's important to know, what is wrong with the code above. When I get it to work, then we do it the "clean way". But thanks for your answer.

kaynis

Ok then. Firstly, I believe you need to make changes to the _view.xml file to make your field visible in a module on webclient. The xml file manages the view. If your field is not declared in the xml then you will not see it eg <field name="name" position="after"> <field name="partner_shipping_id"/></field> or something like that need to be somewhere in the xml form view. That determine where the field is displayed since you said you cannot see your field

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
[18.0] invoice report looks OK when previewing but fonts scaled up and sections overlap when printed Solved
invoice report
Avatar
Avatar
Avatar
2
de juny 25
3237
Group Invoice Lines by Sales Order
invoice report
Avatar
Avatar
Avatar
Avatar
Avatar
4
de maig 24
6908
Display report only in form view?
v7 report
Avatar
Avatar
1
de gen. 24
5455
Issue with header & footer of the invoice
invoice report
Avatar
Avatar
1
de maig 23
4687
Invoice report error
invoice report
Avatar
0
de jul. 17
3685
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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