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

Create an invoice from a sales order using XML-RPC (Python)

Abonare

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

Această întrebare a fost marcată
many2manysales.orderjournal_entry
2 Răspunsuri
9940 Vizualizări
Imagine profil
Ahmad S

Hi, I'm following the external APIs documentation : https://www.odoo.com/documentation/13.0/webservices/odoo.html

to implement our companies requirements. I'm required to create a sales order and automatically create an invoice after that. The sales order part is done but I cant seem to be able to attach the Invoice to the Sales order

I've tried linking it via the 'invoice_ids' field but the documentation does not mention how to provide a many2many field in it. here is the code:


    many2manyInvoice =  [(4, invoice_id)]   

    common = xmlrpc.client.ServerProxy('{}/xmlrpc/2/common'.format(url))
    print(common)

    #Admin user Id
    uid = common.authenticate(db, username, password, {})
    
    models = xmlrpc.client.ServerProxy('{}/xmlrpc/2/object'.format(url))

    models.execute_kw(db, uid, password, 'sale.order', 'write', [[sales_order_id],     {'invoice_ids':many2manyInvoice}])


The response returned is 200 , but nothing is happening on the sales order level. I think its the way. I think its the way that I defined the field that might be incorrect.

Can someone help with this issue ? Thanks in advance




0
Imagine profil
Abandonează
Imagine profil
Aditya Irri
Cel mai bun răspuns

This might help you

@app.route('/createInvoice', methods=['POST'])
def createInvoice():
    try:
        models = xmlrpc.client.ServerProxy('{}/xmlrpc/2/object'.format(url))
        data = request.get_json()
        if not data:
            return jsonify({'message': 'No data received.'}), 400
        
        sale_order_id = int(data.get('sale_order_id'))
        product_id = int(data.get('product_variant_id'))
        
        if not sale_order_id or not product_id:
            return jsonify({'message': 'Invalid input data.'}), 400
        
        # Fetch data related to the sale order
        sale_order_data = models.execute_kw(db, uid, password, 'sale.order', 'read', 
                                            [sale_order_id], 
                                            {'fields': ['partner_id', 'invoice_status', 'name', 'order_line', 'picking_ids']})
        
        if not sale_order_data:
            return jsonify({'message': 'Sale order not found.'}), 404
        
        invoice_id = None
        
        # Iterate through each picking related to the sale order
        for picking_line in sale_order_data[0].get('picking_ids', []):
            picking_line_data = models.execute_kw(db, uid, password, 'stock.picking', 'search_read', 
                                                [[['id', '=', int(picking_line)],['product_id','=', int(product_id)]]], {})
            # If picking data is found
            if picking_line_data:
                stock_picking_validate = models.execute_kw(db, uid, password, 'stock.picking', 'button_validate', [[picking_line]])
        
        # Iterate through each line of the sale order
        for lineId in sale_order_data[0].get('order_line', []):
            sale_order_line = models.execute_kw(db, uid, password, 'sale.order.line', 'search_read', 
                                                [[["id", "=", lineId],['product_id','=', product_id]]], {})
            if sale_order_line:
                # Generate invoice for the sale order line
                current_date = datetime.now().strftime('%Y-%m-%d')
                context = {
                    'move_type': 'out_invoice',
                    'partner_id': sale_order_data[0]['partner_id'][0],
                    'invoice_origin': sale_order_data[0]['name'],
                    'invoice_date': current_date,
                    'partner_bank_id': 164, #Keep your bank ID
                    'l10n_in_gst_treatment': 'consumer', #Keep your GST treatment (Consumer or Supplier)
                    'ref': '',
                    'l10n_in_type_id': 1, #Eway Bill Document type - ID
                    'l10n_in_mode': '1', #Mode Of Transport - ID
                    'l10n_in_distance': 11, #Distance travelled by vehicle
                    'l10n_in_vehicle_type': 'R', #Vehicle Type - Char
                    'l10n_in_vehicle_no': 'AP00AA0000' #Vehicle Number - Char
                }
                # Create invoice in the system
                invoice_id = models.execute_kw(db, uid, password, 'account.move', 'create', [context])
                invoice_lines = []
                # Populate invoice lines
                for lineId in sale_order_data[0].get('order_line', []):
                    sale_order_line = models.execute_kw(db, uid, password, 'sale.order.line', 'read', [lineId], {})
                    invoice_lines.append((0, 0, {
                        'move_id': int(invoice_id),
                        'product_id': int(sale_order_line[0]['product_id'][0]),
                        'quantity': float(sale_order_line[0]['product_uom_qty']),
                        'price_unit': float(sale_order_line[0]['price_unit']),
                        'name': sale_order_line[0]['name']
                    }))
                # Write invoice lines to the invoice
                models.execute_kw(db, uid, password, 'account.move', 'write', [invoice_id, {'invoice_line_ids': invoice_lines}])
                # Post the invoice
                models.execute_kw(db, uid, password, 'account.move', 'action_post', [invoice_id])
                # Find the invoice line ID
                inv_line_id = models.execute_kw(db, uid, password, 'account.move.line', 'search', 
                                                 [[['product_id', '=', sale_order_line[0]['product_id'][0]], 
                                                   ['move_id', '=', invoice_id], 
                                                   ['quantity', '=', sale_order_line[0]['product_uom_qty']]]])
                # Update sale order line with invoice line and invoice status
                models.execute_kw(db, uid, password, 'sale.order.line', 'write', 
                                  [lineId, {'invoice_lines': [(4, inv_line_id[0])], 'invoice_status': 'invoiced'}])
                # Update sale order with invoice ID and invoice status
                models.execute_kw(db, uid, password, 'sale.order', 'write', 
                                  [[sale_order_id], {'invoice_ids': [(4, invoice_id)], 'invoice_status': 'invoiced'}])
                # Return response based on whether invoice was created or not
                if invoice_id:
                    return jsonify({'invoice_id': invoice_id, 'message':'Invoice created successfully.'}), 200
                else:
                    return jsonify({'message': 'No invoice created for the given conditions.'}), 200
        
        # If no invoice was created
        return jsonify({'message': 'No invoice created.'}), 404
        
    except Exception as e:
        print(f"An error occurred: {e}")
        return jsonify({'message': 'An error occurred while processing the request.'}), 500


0
Imagine profil
Abandonează
Imagine profil
Jainesh Shah(Aktiv Software)
Cel mai bun răspuns

Hi Ahmad,

invoice_id = 279777

sale_id = 16


sale_id = models.execute_kw(db, uid, password, 'sale.order', 'search_read', [[

['id', '=', 16]]], {'fields': ['order_line']})



for line in sale_id[0]['order_line']:


sale_line_id = models.execute_kw(db, uid, password, 'sale.order.line', 'search_read', [[

['id', '=', line]]], {'fields': ['product_template_id', 'product_uom_qty']})


product_id = models.execute_kw(db, uid, password, 'product.product', 'search', [[

['product_tmpl_id', '=', sale_line_id[0]['product_template_id'][0]]]])


inv_line_id = models.execute_kw(db, uid, password, 'account.move.line', 'search', [[

['product_id', '=', product_id[0]], 

['move_id', '=', 279777], 

['quantity', '=', sale_line_id[0]['product_uom_qty']]]])

if inv_line_id:

models.execute_kw(db, uid, password, 'sale.order.line', 'write', [line,

{'invoice_lines':[(4, inv_line_id[0])]}])

Regards,




Email:      odoo@aktivsoftware.com  

Skype: kalpeshmaheshwari

   

0
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
Adding Multiple products in Sales order line?
many2many sales.order
Imagine profil
2
dec. 18
10453
(((Oficial~ C.O.P.A!@!Ecuador)))¿Cómo puedo llamar a Copa Airlines desde Ecuador?
sales.order
Imagine profil
0
dec. 25
43
Best Way To Journal Employee Capital Investment
journal_entry
Imagine profil
Imagine profil
Imagine profil
2
iul. 25
2308
Transform Quotations to sales orders or invoices in a bulk action
sales.order
Imagine profil
Imagine profil
Imagine profil
3
feb. 25
3539
Orden de venta borrada por error
sales.order
Imagine profil
Imagine profil
1
dec. 24
2951
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