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

record doesn't exists error when creating new record

S'inscrire

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

Cette question a été signalée
pythoninheritsale.order.lineORMv17
1 Répondre
2651 Vues
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
Ignorer
Avatar
Sean Craig
Auteur Meilleure réponse

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
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
Publications associées Réponses Vues Activité
Problema with invisible field in Odoo 17 Résolu
views inherit sale.order.line v17
Avatar
Avatar
Avatar
Avatar
Avatar
5
oct. 24
20289
The _name attribute MrpWorkcenter is not valid when inherit mrp.workcenter and mail Résolu
inherit v17
Avatar
1
juil. 24
2354
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
mars 24
1711
How to replace an item in sales order after submission
python sale.order.line
Avatar
Avatar
2
janv. 24
2826
v17: error while inheriting res.users Résolu
inherit v17
Avatar
Avatar
Avatar
Avatar
3
janv. 24
4003
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