Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

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

Odoberať

Get notified when there's activity on this post

This question has been flagged
messageinvoicesale.orderwarning13
1261 Zobrazenia
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
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Create invoice from sales order using xml-rpc (python)
invoice sale.order
Avatar
Avatar
1
okt 22
4903
Different Sale Order and Invoice description for one Product
invoice sale.order
Avatar
Avatar
1
feb 17
3763
Different sales orders on a single invoice Solved
invoice sale.order
Avatar
Avatar
2
jan 17
7874
Prevent Sale Order Creation if an item is not in stock
stock sale.order warning
Avatar
Avatar
Avatar
2
apr 25
7526
Copy Checkbox state from Sales Order to Invoice
invoice sale.order v17
Avatar
0
apr 24
2389
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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