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

Sync/Copy data between models in Odoo 8

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
hron_changeemployeeinheritapplicants
4848 Visualizações
Avatar
Franz Bautista

I have a customized model that inherits from hr.applicant and hr.employee. I was already able to customize the web form to automatically fill up my applicant form. What I need is once I "create and employee" from this applicant the data will automatically copy/sync to employee form?

Is this on_change or inherit. Its only one way as once data is copied from applicant to employee I don't need to update applicant information anymore even when changed directly from employee files.

This is my inherit class for recruitment:

class hrRecruitment(models.Model):
    _inherit = 'hr.applicant'
    
    #gender = fields.Char(string = 'Gender')
    gender = fields.Selection(selection= [('male', 'MALE'),
                                          ('female', 'FEMALE')],
                                  string = 'Gender', default = 'male')
    birthdate = fields.Date('Birthdate')
    birthplace = fields.Char(string='Birthplace')
    height = fields.Char(string='Height', size = 5)
    weight = fields.Char(string='Weight', size = 3)
    religion = fields.Char(string='Religion')
    civil_status = fields.Selection(selection=[('married', 'Married'),
                                               ('single','Single')],
                                        string='Civil Status', default= 'single')

This is the xml for inherit recruitment:

	<!-- inherit hr.applicant -->
        <record id="hr_applicant_data_inherit" model="ir.ui.view">
            <field name="name">hr.applicant.data.inherit</field>
            <field name="model">hr.applicant</field>
            <field name="inherit_id" ref="hr_recruitment.crm_case_form_view_job" />
            <field name="arch" type="xml">
                <field name ="partner_mobile" position="after">
                	<field name ="gender" />
                	<field name ="birthdate" />
                	<field name ="birthplace" />
                	<field name ="height" />
                	<field name ="weight" />
                	<field name ="religion" />
                	<field name ="civil_status" />
                	<field name ="father_name" />
                	<field name ="mother_name" />	
                	<field name ="dependents" />
                	<field name ="facebook" />
                	<field name ="complete_address" />
                	<field name ="other_number" />
                	<field name ="other_email" />
                	<field name ="emer_contact_name" />
                	<field name ="emer_contact_number" />
                </field>

This works fine for recruitment to applicant.

Now I need to get this filled up data to the employee form on creation of an employee.

I tried below code:

<!-- inherit data to hr.employee from hr.applicant -->
        <record id="hr_applicant_data_inherit" model="ir.ui.view">
            <field name="name">hr.applicant.data.inherit</field>
            <field name="model">hr.applicant</field>
            <field name="inherit_id" ref="hr_contract.hr_hr_employee_view_form2" /> This is from the hr.employee view
            <field name="arch" type="xml">
                <field name ="partner_mobile" position="after">
                	<field name ="gender" />
                	<field name ="birthdate" />
                	<field name ="birthplace" />
                	<field name ="height" />
                	<field name ="weight" />
                	<field name ="religion" />
                	<field name ="civil_status" />
                	<field name ="father_name" />
                	<field name ="mother_name" />	
                	<field name ="dependents" />
                	<field name ="facebook" />
                	<field name ="complete_address" />
                	<field name ="other_number" />
                	<field name ="other_email" />
                	<field name ="emer_contact_name" />
                	<field name ="emer_contact_number" />
                </field>

Am using Odoo 8 and the error I get is address_id not found, but there is no address_id field anywhere that I can see.

Anyway, I think i am applying it wrong.  Need help to push in right direction Tks.











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
Odoo 8 Onchange query from web to form
hr on_change inherit hrmodule hr_recruitment
Avatar
0
jul. 18
4820
Call a field value from hr_employee to hr_attendance?
hr employee attendance inherit odoo8.0
Avatar
0
out. 17
8013
How to create an auto increment ID Number field in HR Employee? Resolvido
hr employee
Avatar
Avatar
Avatar
Avatar
Avatar
7
nov. 20
26112
I want create menu that show list of employee birthday in current month. Resolvido
hr employee
Avatar
Avatar
Avatar
Avatar
Avatar
11
jan. 19
10820
Employee Resume - Department Changes (V17)
hr employee department
Avatar
Avatar
1
jun. 24
2376
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