Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

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

Subscriure's

Get notified when there's activity on this post

This question has been flagged
invoicedeliveryorderfromgeneratequickstart
1 Respondre
105 Vistes
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
Descartar
Avatar
Ray Carnes (ray)
Best Answer
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
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
The delivery and paid checkbox do not marked
invoice delivery order
Avatar
Avatar
1
de març 15
5083
Printing Delivery Order error
delivery order
Avatar
0
de març 15
5867
Invoicing External Trade Mx_loc: How to show the number of reliable exporter on the pdfs and xml of customer invoices Solved
invoice quickstart Mexico
Avatar
1
d’abr. 23
2928
[Odoo 16] Invoices go straight to "paid" when I register a payment Solved
accounting invoice quickstart
Avatar
Avatar
Avatar
3
de nov. 22
6361
From Sales order to Delivery and Invoice in one step Solved
invoice delivery salesorder
Avatar
Avatar
Avatar
Avatar
3
de nov. 22
5143
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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