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

Implementing Warehouse Logic with Automated Actions and Python Code in Odoo

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
warehousesAutomatedActionsdeliveries-warehouseodoo16featuresPythonCode
2419 Visualizações
Avatar
Skander Ghamgui

Hello Odoo Community,


I'm currently working on optimizing my delivery and picking processes in Odoo, and I'm seeking guidance on implementing a specific logic using Automated Actions and Python code.


Objective:

When a customer places an order, I want Odoo to intelligently determine from which warehouse the order should be picked based on the availability of the products in different warehouses.


Logic Overview:

I've already devised a Python function that efficiently distributes the order quantity among different warehouses based on their availability. Here's a simplified version of the logic:


def fulfill_order(main_qty, C_qty, B_qty, A_qty, order_qty):
    def find_most_products(warehouses):
        # Prioritize C > B > A
        warehouse_order = [C_qty, B_qty, A_qty]
        max_index = max(range(len(warehouses)), key=lambda i: (warehouses[i], -warehouse_order[i]))
        return max_index

    total_available_qty = main_qty + C_qty + B_qty + A_qty

    print(f"Order Quantity: {order_qty}")
    print("Initial product availability:")
    print(f"- Main Warehouse: {main_qty}")
    print(f"- Warehouse C: {C_qty}")
    print(f"- Warehouse B: {B_qty}")
    print(f"- Warehouse A: {A_qty}\n")

    main_taken = min(main_qty, order_qty)
    main_qty -= main_taken
    order_qty -= main_taken

    def distribute_from_warehouses(qty, warehouses):
        distributed = [0, 0, 0]
        for _ in range(qty):
            if sum(warehouses) == 0:
                break
            most_products_index = find_most_products(warehouses)
            distributed[most_products_index] += 1
            warehouses[most_products_index] -= 1

        return distributed

    distributed_qty = distribute_from_warehouses(order_qty, [C_qty, B_qty, A_qty])

    C_qty -= distributed_qty[0]
    B_qty -= distributed_qty[1]
    A_qty -= distributed_qty[2]

    print("Products distributed:")
    if main_taken > 0:
        print(f"- {main_taken} products from Main Warehouse")
    if distributed_qty[0] > 0:
        print(f"- {distributed_qty[0]} products from Warehouse C")
    if distributed_qty[1] > 0:
        print(f"- {distributed_qty[1]} products from Warehouse B")
    if distributed_qty[2] > 0:
        print(f"- {distributed_qty[2]} products from Warehouse A")

    print(f"\nRemaining product availability:")
    print(f"- Main Warehouse: {main_qty}")
    print(f"- Warehouse C: {C_qty}")
    print(f"- Warehouse B: {B_qty}")
    print(f"- Warehouse A: {A_qty}")

    remaining_qty = order_qty - sum(distributed_qty)
    if remaining_qty > 0:
        print(f"\n{remaining_qty} products are not available")

# Example usage
main_qty = int(input("How many products are available in Main Warehouse? "))
C_qty = int(input("How many products are available in Warehouse C? "))
B_qty = int(input("How many products are available in Warehouse B? "))
A_qty = int(input("How many products are available in Warehouse A? "))
order_qty = int(input("How many products did the customer order? "))

fulfill_order(main_qty, C_qty, B_qty, A_qty, order_qty)


Scenario: I have multiple warehouses where A, B, and C also function as points of sale with a depot inside, while the main warehouse is solely for storage and not a point of sale.

Question: How can I integrate this Python logic into Odoo using Automated Actions? Specifically, I want Odoo to automatically execute this Python function whenever a new order is placed, so the system can determine the optimal warehouse for picking.

Additional Notes:

  • I understand that Automated Actions allow for triggering actions based on specific events in Odoo.
  • I'm not entirely sure about the process of executing custom Python code within an Automated Action in Odoo.
  • Any insights, examples, or pointers on how to achieve this integration would be greatly appreciated.
  • You can copy paste the code and try it for your self with different scenarios so you can better understand the logic I want to impliment
  • You can ask me any questions for more clarifications I'll answer as soon as I can
  • Any help is greatly appreciated

Thank you in advance for your assistance!

Best regards,

Skander

1
Avatar
Cancelar
Ricardo Gross

very good question! did you find the solution "to intelligently determine from which warehouse the order should be picked based on the availability of the products in different warehouses"?

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
Odoo16: where is Automated Actions in Technical menu Resolvido
AutomatedActions odoo16features
Avatar
Avatar
Avatar
Avatar
3
out. 23
4541
ValueError: <class 'psycopg2.ProgrammingError'>: "can't adapt type 'mail.activity.type'" Resolvido
activity AutomatedActions odoo16features
Avatar
1
ago. 23
3823
ValueError: [class 'psycopg2.ProgrammingError']: "can't adapt type 'ir.model'" while evaluating Resolvido
activity AutomatedActions odoo16features
Avatar
Avatar
1
ago. 23
4615
Automated Action to clone a task and adding days to due date Resolvido
project.task AutomatedActions odoo16features
Avatar
1
nov. 22
3719
default value of fied based on another field odoo16
sales warehouses product odoo16features
Avatar
Avatar
Avatar
Avatar
3
jul. 25
5263
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