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 register payments automatically trough python code?

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
v8pythonautomatedpayments
1 Responder
11108 Visualizações
Avatar
Sergej

Task: Given a csv file with payments, the customer payments have to be registred in odoo. 

I am not using RPC calls, everything happens in an Import Wizard that I have created. The Wizard reads the file and searches for the invoices.

First attempt: After importing the file I have the invoice code and the paid amount for every invoice. I've read the post https://www.odoo.com/forum/help-1/question/how-to-apply-payment-to-invoice-via-xml-rpc-37795. My implementation looked like this:

            invoice = self.env['account.invoice'].search([('number','=',invoice_name)])

partner_id = self.env['res.partner']._find_accounting_partner(invoice.partner_id).id
account_voucher = invoice.env['account.voucher'].create({
'amount':amount,
'account_id':invoice.account_id.id,
'partner_id':partner_id,
'type':invoice.type in ('out_invoice','out_refund') and 'receipt' or 'payment',
'journal_id':invoice.journal_id.id
})
for line in invoice.move_id.line_id:
if line.debit > 0.0:
account_voucher.env['account.voucher.line'].create({
'name':invoice.number,
'voucher_id':account_voucher.id,
'move_line_id':line.id,
'amount_unreconciled':abs(line.debit),
'amount_original':abs(line.debit),
'amount':abs(line.debit),
'account_id':invoice.account_id.id,
'partner_id':partner_id,
'type': 'cr',
})
account_voucher.signal_workflow('proforma_voucher')

Problem: Although payments are registred, the behaviour is different from the standard payment behaviour. The credit field in the customer accounting tab is not affected which means that the whole process isn't complete. Additionally, I don't need to have so much information for the standard payment operation. If the button Register Payment is pressed in an invoice only the amount and the journal_id are needed. Everything else gets computed by the system.

Is there a way to simulate the standard behaviour. My thought was to get the context from the invoice_pay_customer function, open a new voucher model with this context, set the amount, set the journal_id and to press the button Register Payment. My code:

invoice = self.env['account.invoice'].search([('number','=',invoice_name)])
test = invoice.invoice_pay_customer()
context_dict = {}
context_dict.update(invoice._context)
context_dict.update(test['context'])
account_voucher = invoice.env['account.voucher'].with_context(context_dict).new({'amount':amount,'journal_id':self.env['account.journal'].search([('code','=','BNK2')]).id})
account_voucher.button_proforma_voucher()

If I use create instead of new then I would need a lot of mandatory fields, which normally should be computed by the system. If I use new then it's not the same as creating a new view. Nothing happens if the button is pressed. The code runs without errors. The context is not available in the new object. (Debug prints in account.voucher only have the standard tz, id, .... context)

Is there a way to improve this thought or should it be done in a different way?


I appreciate any help and feedback!


3
Avatar
Cancelar
Avatar
Vysakh B Thottarath
Melhor resposta

Got the answer ?

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
creating automatic scheduled job to archive tasks
python automated scheduler
Avatar
Avatar
Avatar
2
fev. 23
4973
Studio Automated Actions Python Code
python automated studio
Avatar
Avatar
1
jan. 21
12340
Automated action : return another action Resolvido
action python automated
Avatar
Avatar
3
jul. 20
10848
Python expression in Automated Actions Resolvido
action python automated
Avatar
Avatar
1
abr. 20
14932
Manage field type file
crm python automated
Avatar
Avatar
3
jan. 20
3980
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