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
    • Guest House
    • Distributeur de boissons
    • Hotel
    Real Estate
    • Real Estate Agency
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consulting
    • Accounting Firm
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    • Solar Energy Systems
    • Cordonnier
    • Services de nettoyage
    • HVAC Services
    Others
    • Nonprofit Organization
    • 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

how to update odoo One2many field from list of dictionaries?

S'inscrire

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

Cette question a été signalée
one2manycreateupdateloopdictionary
3 Réponses
18674 Vues
Avatar
Mohamed Fouad (personal)

I created a method that loops over all pos orders to get data from there to use it on report, I need to display this data on an One2many field Before printing it, I'm trying a lot but the data created on a model and doesn't displayed on current field

here what I did

data = fields.One2many(comodel_name="onepos.report.line", inverse_name="report", string="", required=False, )

def getreport(self):

    data = self.env['pos.order'].search([])
    datas=[]
    pos_dict= {}
    report= self.env['onepos.report.line'].search([])
    for rec in data:
        con = rec.config_id.name
        for line in rec.lines:
            if con in pos_dict.values():
                print('hiiiiiiiiiii')
                # total_sales = pos_dict[rec.config_id.name]
                total_sales += line.price_subtotal_incl
                res = {
                    'total': total_sales,
                    'pos': con,
                }
                datas.append(res)
            else:
                total_sales = line.price_subtotal_incl
                res2 = {
                    'total': total_sales,
                    'pos': con,
                }
                datas.append(res2)
    if datas:
        print(len(datas), )
        print(datas, )

        cntr = defaultdict(Counter)
        for d in datas:
            cntr[d['pos']].update(d)
        datas = [dict(v, **{'pos': k}) for k, v in cntr.items()]

        report.create(datas)

this is related model

class reporttotalline(models.Model):
_name = 'onepos.report.line'

pos = fields.Char(string="", required=False, )
total = fields.Char(string="", required=False, )

report = fields.Many2one(comodel_name="onepos.report", string="", required=False, )


0
Avatar
Ignorer
Jonah Barrett

I am not 100% sure if this is what you are looking for but you might want to try is using the tuple syntax for One2Many / Many2Many fields. (Can be found here)

For example if you were setting One2Many field data:

def getdata(self):

self.write({'data': (0, 0, values_dict)})

This code would create and link a new record to the One2Many field using the values in the values_dict dictionary.

Mohamed Fouad (personal)
Auteur

how can assign values_dict or where can i get it

i used

self.write({'data': (0, 0, datas)})

and its return error

if act[0] == 0:

TypeError: 'int' object is not subscriptable

Avatar
Sunray Datalinks Pvt Ltd
Meilleure réponse

hi,

to write to one2many field use :

(0, 0,  { values })    link to a new record that needs to be created with the given values dictionary
(1, ID, { values })    update the linked record with id = ID (write *values* on it)
(2, ID)                remove and delete the linked record with id = ID (calls unlink on ID, that will delete the object completely, and the link to it as well)
(3, ID)                cut the link to the linked record with id = ID (delete the relationship between the two objects but does not delete the target object itself)
(4, ID)                link to existing record with id = ID (adds a relationship)
(5)                    unlink all (like using (3,ID) for all linked records)
(6, 0, [IDs])          replace the list of linked IDs (like using (5) then (4,ID) for each ID in the list of IDs)
0
Avatar
Ignorer
Mohamed Fouad (personal)
Auteur

i know that , but how to use it in ,my code

i used

self.write({'data': (0, 0, datas)})

and its return error

if act[0] == 0:

TypeError: 'int' object is not subscriptable

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é
Best way to create one2many records in backend
one2many create update
Avatar
0
nov. 22
4902
update one2many field
function one2many create update
Avatar
0
avr. 19
4261
[odoo 8 ] : How to update value of one2many field with at second level by using create and write method using API? Résolu
one2many create update write odooV8
Avatar
Avatar
Avatar
Avatar
6
août 19
64714
How to update one2many field on write mthod in odoo
one2many update
Avatar
Avatar
1
mars 21
2909
Can not replicate one2many field of one model to other model. Résolu
one2many create
Avatar
2
avr. 20
4835
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