İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

Can I generate Customer Invoices directly from done / completed Delivery Orders?

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
invoicedeliveryorderfromgeneratequickstart
1 Cevapla
117 Görünümler
Avatar
Community Question

I have several Customers who place multiple Sales Orders during each month. 

We invoice them once a month.

Each Sales Order typically needs to be delivered via multiple Delivery Orders.

The standard Invoice does merge all Sales Orders but what we would really like is to show which lines were delivered from each Delivery and each Sales Order.

How can we do this?

0
Avatar
Vazgeç
Avatar
Ray Carnes (ray)
En İyi Yanıt
Here is something we have been prototyping, this may be improved as we test more cases, and may need to be modified.

First, create a field x_invoiced on the stock.picking model so Deliver Orders can be marked if they are Invoiced this way.

Next, create an Execute Code Server Action so you can add an option to the Action Menu when you select multiple Delivery Orders at month end.

if records.filtered(lambda p:p.picking_type_code != 'outgoing'):
raise UserError("Only Delivery Orders can be Invoiced!")
if records.filtered(lambda p:p.state != 'done'):
raise UserError("Only Done Delivery Orders can be Invoiced!")
delivered_moves = env['stock.move'].search([('picking_id', 'in', records.ids),('state', '=', 'done'),
('sale_line_id', '!=', False)], order='picking_id asc, id asc')

if not delivered_moves:
raise UserError("No delivered items found that are linked to a Sales Order Line.")

records = records.sorted(lambda p:p.date_done)

move_groups = {}
for move in delivered_moves:
partner = move.picking_id.partner_id
company = move.picking_id.company_id
currency = company.currency_id

key = (partner.id, currency.id, company.id)
if key not in move_groups:
move_groups[key] = {'moves': env['stock.move'], 'pickings': set()}
move_groups[key]['moves'] += move
move_groups[key]['pickings'].add(move.picking_id.id)

new_invoices = env['account.move']
sequence = 10

for key, data in move_groups.items():
partner_id, currency_id, company_id = key
partner = env['res.partner'].browse(partner_id)
company = env['res.company'].browse(company_id)
invoice_line_vals_list = []
pickings_in_group = env['stock.picking'].browse(list(data['pickings']))
sequential_pickings = records & pickings_in_group
for picking in sequential_pickings:
picking_moves = data['moves'].filtered(lambda m: m.picking_id.id == picking.id)
if not picking_moves:
continue
sale_order = picking.sale_id
picking_name = picking.name
comment_text = f'{picking_name}'
if sale_order:
comment_text += f' from {sale_order.name}'
comment_text += f' shipped {picking.date_done.day}/{picking.date_done.month}'
if picking.carrier_tracking_ref:
comment_text += f" via tracking# {picking.carrier_tracking_ref}"
comment_line_vals = {
'display_type': 'line_section',
'name': comment_text,
'sequence': sequence,
}
invoice_line_vals_list.append((0, 0, comment_line_vals))

sequence+=1
for move in picking_moves:
sale_line = move.sale_line_id
quantity_to_invoice = move.quantity
product_line_vals = sale_line._prepare_invoice_line(quantity=quantity_to_invoice)
product_line_vals.update({
'sequence': sequence,
'sale_line_ids': [(6, 0, [sale_line.id])],
})
invoice_line_vals_list.append((0, 0, product_line_vals))
sequence+=1

picking.write({'x_invoiced': True})
picking_names = sequential_pickings.mapped('name')
origin_string = ", ".join(picking_names)
order_names_with_duplicates = sequential_pickings.mapped('origin')
unique_order_names = list(set(order_names_with_duplicates))
unique_order_names.sort()
reference_string = ", ".join(unique_order_names)

invoice_vals = {
'move_type': 'out_invoice',
'partner_id': partner_id,
'currency_id': currency_id,
'company_id': company_id,
'invoice_origin': origin_string,
'ref': reference_string,
'invoice_user_id': env.user.id,
'invoice_line_ids': invoice_line_vals_list,
}

invoice = env['account.move'].create(invoice_vals)
new_invoices += invoice
if new_invoices:
if len(new_invoices) == 1:
invoice = new_invoices[0]
action = {
'type': 'ir.actions.act_window',
'name': 'Created Invoice',
'res_model': 'account.move',
'view_mode': 'form',
'res_id': invoice.id, # Specify the ID of the single record to open
}
else:
action = {
'type': 'ir.actions.act_window',
'name': 'Created Invoices',
'res_model': 'account.move',
'view_mode': 'list,form',
'domain': [('id', 'in', new_invoices.ids)],
}

Impact:

Both the Invoice PDF and the Portal View of the Invoice reflect this same breakdown.

Note: your Odoo Digital Advisor or Odoo Partner can help you if you don't have the skills to do this, or have further questions or concerns about this approach. This is a prototype and not a solution.

2
Avatar
Vazgeç
Enjoying the discussion? Don't just read, join in!

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
The delivery and paid checkbox do not marked
invoice delivery order
Avatar
Avatar
1
Mar 15
5085
Printing Delivery Order error
delivery order
Avatar
0
Mar 15
5869
Invoicing External Trade Mx_loc: How to show the number of reliable exporter on the pdfs and xml of customer invoices Çözüldü
invoice quickstart Mexico
Avatar
1
Nis 23
2928
[Odoo 16] Invoices go straight to "paid" when I register a payment Çözüldü
accounting invoice quickstart
Avatar
Avatar
Avatar
3
Kas 22
6361
From Sales order to Delivery and Invoice in one step Çözüldü
invoice delivery salesorder
Avatar
Avatar
Avatar
Avatar
3
Kas 22
5143
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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