Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

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

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

How to add Shipping address and Invoicing address to Delivery Slip

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
deliveryslip
2 Respostas
12471 Visualizações
Avatar
Mark

Hi all,


Can anyone tell me how I can add the shipping and invoicing addresses to the delivery slip?

At the moment it only displays the customer address.

I have managed to edit the other reports but the delivery slip is proving to be more difficult!

1
Avatar
Cancelar
Avatar
Ray Carnes
Melhor resposta

If you could post more details next time, it would help those of us trying to help you.  "my car is proving to be more difficult to drive" doesn't give a mechanic much to go by.  I bet you'd pay a lot to have that car fixed.  :)


The Shipping Address IS ALREADY the address on the Delivery Slip:


1. Sales Order:



2. Delivery Order:



3. Delivery Slip:



You just need to add something like this to your own view that inherits and overrides the default Odoo view report_delivery_document:

<div class="col-xs-4">

  <div>

      <strong><span>Ordered By:</span></strong>

  </div>

  <div>

      <div t-field="o.sale_id.partner_id" 

      t-options="{&quot;widget&quot;: &quot;contact&quot;, &quot;fields&quot;: [&quot;address&quot;, &quot;name&quot;, &quot;phone&quot;], &quot;no_marker&quot;: True}"/>

      </div>

  </div>

  <div class="col-xs-4">

      <div>

          <strong><span>Invoice To:</span></strong>

      </div>

      <div>

      <div t-field="o.sale_id.partner_invoice_id" 

              t-options="{&quot;widget&quot;: &quot;contact&quot;, &quot;fields&quot;: [&quot;address&quot;, &quot;name&quot;, &quot;phone&quot;], &quot;no_marker&quot;: True}"/>

      </div>

</div>


That will give you something like this:


3
Avatar
Cancelar
Avatar
Mark
Autor Melhor resposta

Thanks for your reply.

Sorry, I was not aware of any other information that you'd need to answer my query.

Funnily enough you managed to answer my question anyway, without any further information.

-1
Avatar
Cancelar
Ray Carnes

Lucky you that my guess at what you needed was actually what you needed. Next time you might not be so lucky - that's the only point I was trying to make - probably unsuccessfully. It might be relevant to tell us the VERSION of Odoo you are using and the EDITION. It is also generally more effective to tell us WHAT you have tried, so we can NARROW down our advice to a SPECIFIC solution to a WELL DEFINED problem. If you are happy with the quality of the answers you are getting here, then do nothing different. You are welcome to post exactly what you want, and ignore all the advice you get from people wanting to help you and the people who setup the forum who have taken the time to outline 'best practices'. See also https://www.odoo.com/forum/help-1/faq and https://www.odoo.com/forum/help-1/question/meta-why-do-some-questions-get-answers-and-others-do-not-25620

Mark
Autor

Thank you for your comments, I have taken them on board and I appreciate them and your help. However, the way you have answered my question and comment is quite patronising, it may be worth rethinking how you answer and remembering that others may not be as used to forums as much as you are.

Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Publicações relacionadas Respostas Visualizações Atividade
Custom product description on delivery slip Resolvido
deliveryslip
Avatar
1
jan. 23
3115
Delivery Slip
deliveryslip
Avatar
Avatar
2
nov. 19
8354
Create pos module that will bring the product_packaging_id and product_packaging_qty in the pos in order to get it in the deliveryslip
qty deliveryslip
Avatar
0
out. 23
1407
Modified Deliverey slip from Technical->external Indentifiers->report_delivery_document Resolvido
Technical deliveryslip
Avatar
Avatar
1
set. 23
2501
How to show a barcode of a product on pro-forma invoice and delivery slip
barcode deliveryslip
Avatar
Avatar
2
mar. 21
3053
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة 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 é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

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