Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

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

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
invoicedeliveryorderfromgeneratequickstart
1 Răspunde
161 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Ray Carnes (ray)
Cel mai bun răspuns
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
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
The delivery and paid checkbox do not marked
invoice delivery order
Imagine profil
Imagine profil
1
mar. 15
5094
Printing Delivery Order error
delivery order
Imagine profil
0
mar. 15
5886
Invoicing External Trade Mx_loc: How to show the number of reliable exporter on the pdfs and xml of customer invoices Rezolvat
invoice quickstart Mexico
Imagine profil
1
apr. 23
2933
[Odoo 16] Invoices go straight to "paid" when I register a payment Rezolvat
accounting invoice quickstart
Imagine profil
Imagine profil
Imagine profil
3
nov. 22
6379
From Sales order to Delivery and Invoice in one step Rezolvat
invoice delivery salesorder
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
nov. 22
5143
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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