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 do I create a field with a running count?

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
3 Respostas
11639 Visualizações
Avatar
philjun

In the product.product module, I wish to create a field (or edit an existing field) which displays an unique numeric value for each product. I want the module to automatically keep count and suggest the next number in the series. For instance, when I create a new product, I want the field to be automatically assigned the number '20000', and when I create the next product the number '20001' etc. Is there an easy way to handle this?

2
Avatar
Cancelar
Yenthe Van Ginneken (Mainframe Monkey)

Thank you, Nimesh. Do you know if there is a guide to creating and assigning sequences?

Avatar
Anil Kesariya
Melhor resposta

Hello philjun,

Here you go!

You need to follow these two steps.

Solution : 1 (In this solution your sequence field will be editable)

Step1 : Add sequence record in your module.


     <!-- Record for your seuqence type -->
        <record id="your_custom_sequence_type" model="ir.sequence.type">
            <field name="name">Label of your sequence code.</field>
            <field name="code">test.test.code</field>   <!-- Unique sequence code.-->
        </record>
        
    <!-- Record for Sequence-->
        <record id="student_reg_sequence" model="ir.sequence">
            <field name="name">Student Unique ID</field>
            <field name="code">test.test.code</field>  <!-- Apply the same you applied above-->
            <field name="prefix">%(year)s/</field> <!-- optional-->
            <field name="suffix">%(month)s/</field> <!-- optional-->
            <field name="number_next_actual">20000</field> <!-- optional, if you not add this field by default 1 will be starting no. -->
            <field name="padding">5</field> <!-- optional-->
            <field name="implementation">no_gap</field>
        </record>


Step 2: Add field in your model, in your case product is model

    _inherit = 'product.product'
    
    _columns = {
    'sequence':fields.char("Sequence")

    }

    _defaults = {
    'sequence':lambda self, cr, uid, context:self.pool.get('ir.sequence').get(cr, uid, 'test.test.code'),

    }


Solution : 2 (If you want to make your sequence field readonly than you can follow this solution.)


Step 1 : This is same as Solution 1.
 
Step 2 : # inherit model and addd field with readonly attribute

    _inherit = 'product.product'
    
    _columns = {
    'sequence':fields.char("Sequence", readonly=True)

    }


    def generate_sequence(self, cr, uid, ids, context=None):
            
        # This line will generate next sequence number from your seuqence.
        next_seq = self.pool.get('ir.sequence').get(cr, uid, 'test.test.code')

        self.write(cr, uid, ids, {'sequence':next_seq}, context=context)

        return True

Step 3: add button in product form


      <button name="generate_sequence" type="object" string="Generate Sequence"/>


There are many more option to create sequence these two solution will satisfied your needs.

Hope this will helps you.

Regards
Anil Kesariya

5
Avatar
Cancelar
ABU K

The sequence incrementing 2 ,4 ,6,etc.. .I want to generate 1 ,2 ,3 etc..Then How to change this code

ABU K

Also one more problem is if I am not saving any record its incremented automatically to next id .

Anil Kesariya

check you have applied : no_gap

Anil Kesariya

Once the sequence is generated is will always move to next sequence, so choose the second option generate it on button click and hide the button once it is generated.

ABU K

Here What is the excecution and what is the use of this test.test.code

ABU K

Here What is the excecution flow and what is the use of test.test.code means

Anil Kesariya

it is sequence code, you can give any name here, make sure that code is unique not used for any other sequence.

Avatar
Nimesh
Melhor resposta

You can create sequence starting with 20000 and assign to that field.

 

Thanks,

Nimesh.

2
Avatar
Cancelar
Avatar
philjun
Autor Melhor resposta

Thank you, Anil. I have done as specified in option 1, except that I have added the code to the existing product module rather than creating a new module. I have added the field and the default setting to the product.py file.

Regarding step 1, adding the sequence record to the module, I have created the file product_sequence.xml with the xml-code you specified, placed the file in the Product-module-folder, and added this file in the 'data' section of the __openerp__.py-file pertaining to the Product-module. Is it necessary to do something else to add the sequence record? In any case, my sequence is still not working.
 

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
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