Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

record doesn't exists error when creating new record

Odoberať

Get notified when there's activity on this post

This question has been flagged
pythoninheritsale.order.lineORMv17
1 Odpoveď
2635 Zobrazenia
Avatar
Sean Craig

okay so, I am trying to inherit the sale.order.line model and tapping into the create() method. The goal is that when a new order line gets added if it's a service-type product, we add a new order line with a specific product that is already set up on Settings. However, on the create() call, it throws an error saying: Record does not exist or has been deleted. (Record: sale.order.line(115,), User: 2) , I am not sure why. The first thing is, that the record exits and the second thing is, not using it on the create call. Here is my code: 

from odoo import models, fields, api
from odoo.exceptions import UserError


class SaleOrderLine(models.Model):
    _inherit = "sale.order.line"

    @api.model
    def create(self, vals):
        sale_order_line = super().create(vals)
        order_id = sale_order_line.order_id.id
        product_type = sale_order_line.product_template_id.detailed_type
        shop_supplies_product = self.env["res.config.settings"].get_values()[
            "shop_supplies_product"
        ]
        shop_supplies_product = self.env["product.template"].browse(
            shop_supplies_product
        )
        shop_supplies_percentage = self.env["res.config.settings"].get_values()[
            "shop_supplies_percentage"
        ]

        if (
            product_type == "service"
            and sale_order_line.product_template_id.id != shop_supplies_product
            and shop_supplies_product
        ):
            current_shop_supplies = self.env["sale.order.line"].search(
                [
                    ("order_id", "=", sale_order_line.order_id.id),
                    ("product_template_id", "=", shop_supplies_product.id),
                ],
                limit=1,
            )
            shop_supplies_amount_nt = 0
            if current_shop_supplies:
                shop_supplies_amount_nt = current_shop_supplies.price_unit
                current_shop_supplies.unlink()

            current_shop_supplies_amount_nt = float(sale_order_line.price_subtotal)

            shop_supplies_amount_nt += (
                current_shop_supplies_amount_nt * float(shop_supplies_percentage)
            ) / 100
            order_line_fields = {
                "customer_lead": 0.0,
                "name": shop_supplies_product.name,
                "order_id": order_id,
                "price_unit": shop_supplies_amount_nt,
                "product_uom_qty": 1.0,
                "product_template_id": shop_supplies_product.id,
                "product_id": shop_supplies_product.product_variant_id.id,
            }
            self.env["sale.order.line"].sudo().create(order_line_fields)
        return sale_order_line


0
Avatar
Zrušiť
Avatar
Sean Craig
Autor Best Answer

The issue was matching an id with an instance of product.template. Fixed by changing the first if clause to:

if (
        product_type == "service"
        and sale_order_line.product_template_id.id != shop_supplies_product.id
        and shop_supplies_product
    ):


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

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Problema with invisible field in Odoo 17 Solved
views inherit sale.order.line v17
Avatar
Avatar
Avatar
Avatar
Avatar
5
okt 24
20249
The _name attribute MrpWorkcenter is not valid when inherit mrp.workcenter and mail Solved
inherit v17
Avatar
1
júl 24
2346
i am using odoo 17. i have a one field 'wage' and it is a salary like number 1254200. i want comma in this number using Indian standard number comma format for example 12,54,200.00 how can i using python ?
python v17
Avatar
Avatar
1
mar 24
1696
How to replace an item in sales order after submission
python sale.order.line
Avatar
Avatar
2
jan 24
2814
v17: error while inheriting res.users Solved
inherit v17
Avatar
Avatar
Avatar
Avatar
3
jan 24
3976
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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