Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How to Link Invoice To Sales order in odoo 15

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
4 Réponses
6987 Vues
Avatar
Ahmed Gamal Khalil

i am doing migration to odoo 15 and i am uploading the Sales order and invoices separately 
so in there is any way to link sales order to the invoice after i uploading them ? 

 

0
Avatar
Ignorer
Julien Plaitin

Hello Ahmed,

Any answer ?

Thanks

Ahmed Gamal Khalil
Auteur

Hello Julien
unfortunately i got no answer
and for now i still don't have answer of this question

Micheal KARL

hello together, did you found a solution for linking a invoice to an existing SO?

thx, michael

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

Hi,

If you are familiar with code you can try the following.

In the sale order, we have a many2many field named invoice_ids. The invoice corresponding to the sale order is linked there.

So you can create a one-time running code and by searching the corresponding invoice id   and you can Update that to the sale order record

def update_invocie_ids(self):
sale_ids = self.env['sale.order'].search([])
for sale_id in sale_ids:
inovice_id = self.env['account.move'].search(["YOUR CONDITION TO MATCH THE RECORD"])
sale_id.write{(
'invoice_ids': [(4, "YOUR INVOICE IDS")],
)}

Regards

1
Avatar
Ignorer
Avatar
Jerome Sonnet - ITO MANAGEMENT FZCO
Meilleure réponse

Correct way to do this is if the sale order and the invoice has just one line that match is :

# Assume you already have the sale order and invoice records
so = self.env['sale.order'].browse(SALE_ORDER_ID)
inv = self.env['account.move'].browse(INVOICE_ID)

# 1. Link invoice to sale order
inv.invoice_origin = so.name

# 2. Get the only line from each
so_line = so.order_line[0]
inv_line = inv.invoice_line_ids[0]

# 3. Link invoice line to sale order line
inv_line.sale_line_ids = [(6, 0, [so_line.id])]

# 4. Optional: Set analytic account if needed
if so.analytic_account_id:
    inv_line.analytic_account_id = so.analytic_account_id.id

# 5. Optional: Link invoice back to sale order (inverse)
so.invoice_ids = [(4, inv.id)]

inv.message_post(body=f"Linked manually to SO <b>{so.name}</b>")
so.message_post(body=f"Linked manually to Invoice <b>{inv.name}</b>")

0
Avatar
Ignorer
Avatar
tony odoo
Meilleure réponse

 You cannot edit the invoice_ids field because it is a computed field.

It updates the order lines with the corresponding invoice lines.

it ensures that the invoices are correctly related to the sales

0
Avatar
Ignorer
Avatar
Fernando Huacuja Mena
Meilleure réponse

This is a very good question! actualy I have same problem... @julien did you find a way?


What I found in other  posts is the following:



Hi,

If you create sale order and  the invoice, Then to link the invoice with the sales, you can add the id's of the invoices you have created to the field name invoice_ids in sale.order model.  This is a many2many field.


0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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