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

Custom Label Format as print_format

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
reportinglabellabelsodoo16features
2 Respostas
5091 Visualizações
Avatar
Wolfgang Kern

I am trying to create a new label format in my Odoo v.16 online version.

I would like this option format to appear as an option when I use the "print labels" (action_open_label_layout) button.

From what I learned I need some python code for that and so I created everything by a custom module.

In the module I define:

  • the new paper format (as record)
  • 2 actions to open the report from product.product and product.template (as records)
  • 3 views (as templates)
    • 1 view for the label desing
    • 1 view that hands over data if triggered by action of product.product
    • 1 view that hands over data if triggered by action of product.template
  • 1 python code model to add the new report as print_format

The module is successfully imported. Paper format is there, the action_reports are there, the views are there.

If I go to the action_reports and use the button "add to print menu" (method: create_action) the reports appear as a print button on my product overviews and they work. So I would suppose this is all fine.

But no matter what I try I cannot add this reports to the "print_format" selection.

This is the code of the python module that I use to activate (and I have already changed  altered it many times without success so there is some unneccessary stuff imported still)


Of course the part "my_module_name" is replaced with my actual module name.

Can anybody help me solve this issue?


import datetime
from collections import defaultdict
from itertools import groupby
from odoo import api, fields, models, _
from odoo.exceptions import AccessError, UserError
from odoo.tools import date_utils, float_round, float_is_zero


class ProductLabelLayout(models.TransientModel):
    _inherit = 'product.label.layout'

    print_format = fields.Selection(selection_add=[
        ('label_62x29', 'Brother 62x29'), ], ondelete={'label_62x29': 'set default'})

    def _prepare_report_data(self):
        xml_id, data = super()._prepare_report_data()

        if 'label_62x29' in self.print_format:
            xml_id = 'my_module_name.action_report_62x29'

            data = {
                'active_model': active_model,
                'product_tmpl_name': self.product_tmpl_ids.name,
                'product_tmpl': self.product_tmpl_ids,
                'product_name': self.product_ids.name,
                'product_id': self.product_ids,
            }
        return xml_id, data

    def process(self):
        action = super(ProductLabelLayout, self).process()
        self.ensure_one()
        xml_id, data = self._prepare_report_data()
        if not xml_id:
            raise UserError(_('Unable to find report template for %s format', self.print_format))
        report_action = self.env.ref(xml_id).report_action(None, data=data)
        report_action.update({'close_on_report_download': True})
        return action
       

class ReportProductLabelTag(models.AbstractModel):
    _name = 'my_module_name.action_report_62x29'
    _description = 'Brother 62x29'

    def _get_report_values(self, docids, data):
        if data.get('active_model') == 'product.template':
            Product = self.env['product.template']
        elif data.get('active_model') == 'product.product':
            Product = self.env['product.product']
        else:
            raise UserError(
                _('Product model not defined, Please contact your administrator.'))
        return {
            'doc_ids': docids,
            'data': data,
        }
0
Avatar
Cancelar
Avatar
Wolfgang Kern
Autor Melhor resposta

Yeah…

This is  one of the threads where I copied the code of.

And I tried this very code examples as well.

0
Avatar
Cancelar
Avatar
Nikhil Nakrani
Melhor resposta

Hi can you check this,

https://www.odoo.com/forum/help-1/additional-label-formats-204953

Thanks

0
Avatar
Cancelar
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
Adding a Labels Template to Print Labels Menu
inventory label labels odoo16features
Avatar
Avatar
1
nov. 23
3348
get value of field in report odoo16
reporting odoo16features
Avatar
Avatar
1
abr. 23
2876
I`m trying to create a qweb pdf report in odoo16 community version but I got an error: AssertionError: Call _get_view_id, expected 'ir.ui.view', got 'ir.actions.report' Resolvido
qweb reporting odoo16features
Avatar
Avatar
Avatar
3
ago. 24
4184
Where is the docs variable used in the template defined?
templates reporting odoo16features
Avatar
Avatar
1
mar. 24
2388
Put 3 fields with their respective labels on a single line, odoo 16
fields label odoo16features
Avatar
Avatar
Avatar
2
jan. 24
4481
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