Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Import sale order data in Odoo

Odebírat

Get notified when there's activity on this post

This question has been flagged
datasale.orderimportingsale_order_line
3 Odpovědi
1389 Zobrazení
Avatar
Vikas Maharana

Hi All,

I have 2000 sales data and made it an importable format and  the sales order line became 12000 lines.

How do I import this data into Odoo?
It takes only 2000 data at a time, and if I split the data, then I'm getting confused.

0
Avatar
Zrušit
Avatar
JB
Nejlepší odpověď

Hello,

Please refer the forum. 

2
Avatar
Zrušit
Avatar
AppsChef
Nejlepší odpověď

To be able to import everything, you need to have coding skills to import using the API.

Without coding, you must split your import file into batches of 2000. I recommend sorting the data according to their order reference first, then dividing it into several sheets. After that, you can select the sheet you want to import on the column matching page in Odoo.

If you want to code, you can try the script below:


impor xmlrpc.client

import csv


# --- CONFIGURATION ---

url = "http://your-odoo-instance.com"

db = "your_database_name"

username = "your_username"

password = "your_password"

csv_file = "sales_orders.csv"  # path to your CSV file


# --- CONNECTION ---

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

uid = common.authenticate(db, username, password, {})

models = xmlrpc.client.ServerProxy(f'{url}/xmlrpc/2/object')


# --- HELPERS ---

def find_partner_id(name):

    """Find partner (customer) ID by name"""

    ids = models.execute_kw(db, uid, password, 'res.partner', 'search', [[['name', '=', name]]], {'limit': 1})

    return ids[0] if ids else None


def find_product_id(code_or_name):

    """Find product ID by internal reference (default_code) or name"""

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

        ['|', ['default_code', '=', code_or_name], ['name', '=', code_or_name]]

    ], {'limit': 1})

    return ids[0] if ids else None


# --- READ CSV ---

orders = {}

with open(csv_file, newline='', encoding="utf-8") as f:

    reader = csv.DictReader(f)

    for row in reader:

        order_ref = row['order_ref']

        customer = row['customer']

        product = row['Line/Product']

        qty = float(row['Line/qty'])

        price = float(row['Line/price'])


        if order_ref not in orders:

            orders[order_ref] = {

                'customer': customer,

                'lines': []

            }


        orders[order_ref]['lines'].append((product, qty, price))


# --- IMPORT PROCESS ---

for order_ref, data in orders.items():

    partner_id = find_partner_id(data['customer'])

    if not partner_id:

        print(f"❌ Customer '{data['customer']}' not found, skipping {order_ref}")

        continue


    # create Sales Order

    so_vals = {

        'partner_id': partner_id,

        'client_order_ref': order_ref,

    }

    order_id = models.execute_kw(db, uid, password, 'sale.order', 'create', [so_vals])

    print(f" Sales Order created: {order_ref} (ID={order_id})")


    # create Sales Order Lines

    for (product, qty, price) in data['lines']:

        product_id = find_product_id(product)

        if not product_id:

            print(f"   ⚠️ Product '{product}' not found, skipping line")

            continue


        line_vals = {

            'order_id': order_id,

            'product_id': product_id,

            'product_uom_qty': qty,

            'price_unit': price,

        }

        line_id = models.execute_kw(db, uid, password, 'sale.order.line', 'create', [line_vals])

        print(f"   → Line created: {product} (ID={line_id})")


This is sales_orders.csv be like:

order_ref,customer,Line/Product,Line/qty,Line/price

SO001,PT ABC,product1,10,120000

SO001,PT ABC,product2,5,250000

SO002,PT XYZ,product3,3,120000

Make sure you have entered the customer and product data first before performing the import.

Hope it helps.

Regards,

Appschef

0
Avatar
Zrušit
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Nejlepší odpověď

Hi,

When importing large sales data into Odoo, you should split the file smartly: keep the 2000 sales orders in one import (with their basic details), then import the 12000 sales order lines in separate batches, making sure each line references the correct order by its unique identifier (e.g., Order Name). Odoo’s importer only allows around 2000 rows at once for performance reasons, so breaking the lines into multiple files is normal. As long as the Sales Order Name column matches exactly, Odoo will link the lines to the right orders automatically. This way, you avoid confusion and safely import everything step by step.


For more details, please refer to the following links:

1. https://www.cybrosys.com/blog/how-to-import-sale-orders-and-purchase-orders-in-odoo-17


Module: https://odoo-community.org/shop/sale-order-import-571#attr=944043


Hope it helps.


0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Just Subscribed to Odoo, Need Help Getting Started Vyřešeno
data importing
Avatar
Avatar
1
srp 25
1420
Missing required value for the field 'name' at multiple rows while Importing SO.
excel sale.order importing
Avatar
Avatar
1
srp 25
1243
How to import/export records under Region (region_id)
data region importing Exporting
Avatar
0
říj 24
1760
How to create One2many records while import
import database data importing
Avatar
0
kvě 24
183
Is There a Default Record Rule Preventing Linking of Invoices to Sale Orders?
invoice invoices account.move sale.order importing
Avatar
0
lis 23
2280
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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