Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

confirmation message when creating an invoice from the sales order, odoo 13

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
messageinvoicesale.orderwarning13
1286 Vues
Avatar
Adrian Porras

I'm trying to create a function based on a field that I have in sale.order.line called lot_id, if a product does not have information in the lot_id field, it should send a warning message to the user BEFORE creating the invoice, until now only I carry this:


import logging
from odoo import models, api, _
from odoo.exceptions import UserError

# Definir un logger para el módulo
_logger = logging.getLogger(__name__)

class SaleAdvancePaymentInv(models.TransientModel):
_inherit = 'sale.advance.payment.inv'

def create_invoices(self):
"""
Antes de crear la factura, verifica si hay productos sin pedimento (sin lot_id).
Si existen, muestra una advertencia con el mensaje "Vas a crear la factura sin pedimento. ¿Deseas continuar?".
"""
orders = self.env['sale.order'].browse(self._context.get('active_ids', []))

# Agregar log para verificar los pedidos que estamos procesando
_logger.info("Procesando las órdenes de venta: %s", orders.ids)

for order in orders:
# Filtrar productos sin pedimento (lot_id vacío)
productos_sin_pedimento = order.order_line.filtered(lambda line: not line.lot_id)

# Log para mostrar los productos sin pedimento
_logger.info("Productos sin pedimento en la orden %s: %s", order.name, productos_sin_pedimento.ids)

if productos_sin_pedimento:
# Si hay productos sin pedimento, mostrar un warning
_logger.warning("¡Advertencia! La orden %s tiene productos sin pedimento.", order.name)

# Mostrar un mensaje de advertencia (sin bloquear el proceso)
return {
'warning': {
'title': _("Advertencia"),
'message': _("Vas a crear la factura sin pedimento. ¿Deseas continuar?"),
}
}

# Log para verificar si pasamos a la creación de la factura
_logger.info("Creando la factura para las órdenes: %s", orders.ids)

# Si todos los productos tienen pedimento (lot_id lleno), continuar con la creación de la factura
return super(SaleAdvancePaymentInv, self).create_invoices()

But I have not been able to display the message, I only want the user to be shown the message that has products that contain that empty field, but the user will be able to create the invoice for the order without problems...

Can you help me? I would appreciate it, greetings.

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Create invoice from sales order using xml-rpc (python)
invoice sale.order
Avatar
Avatar
1
oct. 22
4908
Different Sale Order and Invoice description for one Product
invoice sale.order
Avatar
Avatar
1
févr. 17
3770
Different sales orders on a single invoice Résolu
invoice sale.order
Avatar
Avatar
2
janv. 17
7884
Prevent Sale Order Creation if an item is not in stock
stock sale.order warning
Avatar
Avatar
Avatar
2
avr. 25
7563
Copy Checkbox state from Sales Order to Invoice
invoice sale.order v17
Avatar
0
avr. 24
2394
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

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