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í
    Food & Hospitality
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Guest House
    • Distributor nápojů
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Trades
    • Údržbář
    • IT hardware a podpora
    • Solar Energy Systems
    • Výrobce obuvi
    • Úklidové služby
    • HVAC Services
    Others
    • Nonprofit Organization
    • 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

how to store data in a table temporarily but manually

Odebírat

Get notified when there's activity on this post

This question has been flagged
modelscreatesale.order.linesale.order
2 Odpovědi
3463 Zobrazení
Avatar
random_mai

How do i store a temporary (NewId) in sale.order.line table? Here is my scenario:

Before converting a quotation to sales order, i need to insert a default product id manually in sales order line upon creation of a quotation. However, it is returning an error: "Missing required field". I checked it and it was "order_id" field from sale.order.line. 


Sample code:

# Create SO line - from sales.order (this function will be called when there are changes in default product line)

@api.onchange('default_product_line')

def .....(self):

for line in record.default_product_line:

      params = {

            'order_id': self.id, # causing error because quotation is not saved yet, still in draft

            'name': line.name,

            'product_uom_qty': line.qty,

            'price_unit': line.price_unit,

            'product_id': line.product_id.id

      }

      self.env['sale.order.line'].create(params)




How can i store sale order line temporarily if a quotation state is still draft?

0
Avatar
Zrušit
Axel Mendoza

Please provide more details, I don't see clear exactly what you are doing that have the missing order_id field, how and where? post some code...

random_mai
Autor

Updated the details

Axel Mendoza

I'm sure that I will get errors if I try to run the code you post, why did you put it like that? what it's the value of the record variable?

Avatar
shubham shiroya
Nejlepší odpověď
  1. Add a One2many field in the sale.order model to store the temporary sale order lines.

  2. Modify the onchange method to add the temporary sale order lines to the One2many field.

  3. When converting the quotation to a sales order, copy the temporary sale order lines from the One2many field to the actual sale order lines.

Here's the updated code:

  1. Add a One2many field in the sale.order model:

class SaleOrder(models.Model):

_inherit = 'sale.order'


temp_order_lines = fields.One2many('sale.order.line', 'order_id_temp', string='Temporary Order Lines')


Modify the onchange method to add the temporary sale order lines to the temp_order_lines field:

@api.onchange('default_product_line')

def add_temp_order_lines(self):

temp_lines = []

for line in self.default_product_line:

temp_lines.append((0, 0, {

'name': line.name,

'product_uom_qty': line.qty,

'price_unit': line.price_unit,

'product_id': line.product_id.id

}))

self.temp_order_lines = temp_lines


When converting the quotation to a sales order, copy the temporary sale order lines to the actual sale order lines:

def convert_to_sales_order(self):

# Create the sales order

sale_order_vals = {

# Add other required fields for the sales order

}

sale_order = self.env['sale.order'].create(sale_order_vals)


# Copy temporary sale order lines to actual sale order lines

for temp_line in self.temp_order_lines:

sale_order_line_vals = {

'order_id': sale_order.id,

'name': temp_line.name,

'product_uom_qty': temp_line.product_uom_qty,

'price_unit': temp_line.price_unit,

'product_id': temp_line.product_id.id,

# Add other required fields for the sales order line

}

self.env['sale.order.line'].create(sale_order_line_vals)


# Optionally, you can remove the temporary sale order lines from the quotation

self.temp_order_lines = [(5, 0, 0)]


return sale_order


0
Avatar
Zrušit
Avatar
Axel Mendoza
Nejlepší odpověď

Here is how you could do it

      self.write({'order_line': [(0,0, {

            'name': line.name,

            'product_uom_qty': line.qty,

            'price_unit': line.price_unit,

            'product_id': line.product_id.id

      })]})

The idea it's that you don't need to create anything in the database, since it's an onchange you need to return the change of the data. In this case you are adding a new line to the sale order that will be showing in the browser and saved into the database once you save the sale order form

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
Merge Same Item in Sale Order Line Vyřešeno
sale.order.line sale.order
Avatar
Avatar
Avatar
2
led 24
6260
Combine inline editing with more detailed form view
sale.order.line sale.order
Avatar
0
čvn 23
2750
ValueError: <class 'ValueError'>: "Expected singleton: sale.order.line(<NewId ref='virtual_117'>, <NewId ref='virtual_131'>)"
sale.order.line sale.order
Avatar
Avatar
1
pro 22
4186
How to update a custom field as "Margin" default from sale.order does, when some product of sale.order.line is updated/deleted.
sale.order.line sale.order
Avatar
0
dub 22
3218
How to count stockable product in orderline in Quotations Vyřešeno
sale.order.line sale.order
Avatar
Avatar
1
dub 19
6816
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