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

Odoo 16: Create Just one record for a model and asign it many childs

S'inscrire

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

Cette question a été signalée
modelsone2many_listodoo16features
2 Réponses
2238 Vues
Avatar
Masood Zarei

Hi,

I need to have a form view that shows all Journals and balance for each one.

But here, the balance is calculated based on the journal's payments not journal items.

Each 'Inbound' payment is considered a Debit and each 'Outbound' payment is considered a Credit.

Balance is Debit minus Credit.

Here is my code:


from odoo import fields, models, api

from odoo.exceptions import UserError,ValidationError


class JournalLine(models.TransientModel):

 _name = 'journal.line'
move_id = fields.Many2one( comodel_name='journal', string='Journal' )
journal_name = fields.Char( string="Journal" )
sum_debit = fields.Float( string='Debit', default=0.00 )
sum_credit = fields.Float( string='Credit', default=0.00 )
balance = fields.Float( string='Balance', default=0.00 )
currency_id = fields.Many2one( 'res.currency', string='Currency' )


class Journal(models.TransientModel): 

_name = 'journal'
line_ids = fields.One2many( 'journal.line', 'move_id', string='Journal lines', default=lambda self: self._compute_journal_lines() )


def _compute_journal_lines(self): 

​comodel_obj = self.env['journal.line'] 

​journals = self.env['account.journal'].search([('active','=',True)]) 

​domain = [] 

​for journal in journals: 

​ ​lines = {} 

​ ​domain = [('journal_id', '=', journal.id),('state','=','posted')] ​ ​ ​ ​ ​payment_ids = self.env['account.payment'].search(domain) 

​ ​sum_debit = 0.00 

​ ​sum_credit = 0.00 

​ ​balance = 0.00 

​ ​if payment_ids: 

​ ​ ​for payment in payment_ids: 

​ ​ ​if payment.payment_type == 'inbound': 

​ ​ ​ ​sum_debit += payment.debit 

​ ​ ​else: 

​ ​ ​ ​sum_credit += payment.credit 

​ ​ ​line = { 

​ ​ ​ ​'move_id': self.id, 

​ ​ ​ ​'journal_name': journal.name, 

​ ​ ​ ​'currency_id': journal.currency_id.id, 

​ ​ ​ ​'sum_debit': sum_debit, 

​ ​ ​ ​'sum_credit': sum_credit, 

​ ​ ​ ​'balance': sum_debit - sum_credit 

​ ​ ​} 

​ ​ ​new_record = comodel_obj.create(line) 

​ ​ ​self.write({ 'line_ids': [(4, new_record.id)] })

But the code does not work and in the form view, It shows nothing.

As I debug the code, I see all line_ids are produced successfully but I think binding it to the Journal is the main problem.

Can someone help me out?


0
Avatar
Ignorer
Avatar
Thomas Guénard
Meilleure réponse

in odoo 16 this is a standard report

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é
one2many_list default widget not working Résolu
one2many_list odoo16features
Avatar
Avatar
Avatar
2
août 25
4521
v16: custom model not created, what is error in py file Résolu
models odoo16features
Avatar
Avatar
1
avr. 24
2542
odoo 16: Model creation problem - not creating model Résolu
models odoo16features
Avatar
Avatar
1
mai 23
4397
how to fetch settings values Résolu
settings models odoo16features
Avatar
Avatar
Avatar
3
juil. 23
3659
ValueError: Expected singleton: as.product.brand(9, 10, 8)
models writeMethod odoo16features
Avatar
Avatar
1
juin 23
2617
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