Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

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

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
messageinvoicesale.orderwarning13
1256 Tampilan
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
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Create invoice from sales order using xml-rpc (python)
invoice sale.order
Avatar
Avatar
1
Okt 22
4902
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 Diselesaikan
invoice sale.order
Avatar
Avatar
2
Jan 17
7872
Prevent Sale Order Creation if an item is not in stock
stock sale.order warning
Avatar
Avatar
Avatar
2
Apr 25
7524
Copy Checkbox state from Sales Order to Invoice
invoice sale.order v17
Avatar
0
Apr 24
2388
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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