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

how to make the result of wizad in tree and form view

S'inscrire

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

Cette question a été signalée
openerpodoov9
2 Réponses
6592 Vues
Avatar
Ahmad Aldaker

hello, I have a problem with my wizard result
I have results displayed by wizard for specific records but the problem is i can only see the results in tree view not in form view, for example the wizard return a tree view for me and the records in tree views are not click-able to become a form

that is my code:


from openerp import fields, models, api

class customer_trade_trans_details(models.TransientModel):

_name = 'customer.trade.trans.details'

start_date=fields.Date("Date From")

end_date=fields.Date("Date To")

trans_type=fields.Many2one("vb.tran_type","Transaction Type")

@api.multi

def trans_trade_details(self):

result_obj = self.env['vb.trade_tran']

cr, uid, context = self.env.args

domain = []

for wiz in self:

if context.has_key('active_ids') and context.get('active_ids'):

domain.append(('acct_id','in',context.get('active_ids')))

if wiz.trans_type:

domain.append(("tran_type_id","=",wiz.trans_type.id))

if wiz.start_date and wiz.end_date:

domain.append(("tran_date",">=",wiz.start_date))

domain.append(("tran_date","<=",wiz.end_date))

#results = result_obj.search(domain)

res_view_id = self.env['ir.model.data'].get_object_reference('vb_helpdesk','trade_trans_tree_inquiry_results12')[1]

return{

'name': "Transactions Trade Details",

'view_type': 'form',

'view_mode':"tree",

'view_id': res_view_id,

'res_model': 'vb.trade_tran',

'type': 'ir.actions.act_window',

'create':'False',

'domain':domain,

}


i tried to do many things but nothing worked :(
any help please ?

0
Avatar
Ignorer
Avatar
Ahmad Aldaker
Auteur Meilleure réponse

that is not what i am asking for, i am asking that i have return the result in tree view, but if you click on any record it wont take you to form view, so is there any way to make the result view in both tree and form view ?
because the result from wizard is only return tree view !!

0
Avatar
Ignorer
Avatar
Nikunj Antala
Meilleure réponse

 Hello Ahmad,


You have return 'trade_trans_tree_inquiry_results12' tree view in that you can specify editable="bottom" create="false" delete="false" attribute. or you can create new tree view for 'vb.trade_tran' and try return that view.

Example:

<tree string="Partner Invoices" create="false" delete="false" editable="bottom">

</tree>


Hope this helps.

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é
Syntax of domains - operators Résolu
openerp odoo
Avatar
Avatar
Avatar
Avatar
3
oct. 25
28281
Current datetime in XML
openerp odoo
Avatar
Avatar
Avatar
Avatar
4
juin 21
40737
Jumping from OpenERP to Odoo Accounting issues
openerp odoo
Avatar
1
déc. 20
3457
what is the application server used by Odoo
openerp odoo
Avatar
1
avr. 18
8745
Why Odoo is so successful Résolu
openerp odoo
Avatar
Avatar
Avatar
3
sept. 15
10424
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