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
    • Intelligence artificielle
    • 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
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • 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
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & 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
    Parcourir toutes les 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
    • Devenir partenaire
    • Services pour partenaires
    • 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
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 do I view 1 single object in Form view only? [Closed]

S'inscrire

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

Cette question a été signalée
form_view
4 Réponses
7934 Vues
Avatar
Gavin Yap

Hi,


EDITED

Supposedly  if I have the following window action.

<record model="ir.actions.act_window" id="action_profile">
<field name="name">My Profile</field>
<field name="res_model">res.partner</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
</record>

When a portal user logins, the portal user will only see the res.partner record  that is associate with the user account that was login to.


Now I want to have a Form view only,  so I remove the tree view from view_type..

<record model="ir.actions.act_window" id="action_profile">
<field name="name">My Profile</field>
<field name="res_model">res.partner</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
</record>

Inside of display in the form view, it show a empty record.


To simplify, how do I view 1 selected record of an object in form view only.






1
Avatar
Ignorer
Tangaraj

Sorry i couldnt get you Gavin Yap

Gavin Yap
Auteur

I rephrase my questions and title. In short, how do I view 1 selected record in form view only?

Rihene

Give me your XML code

Gavin Yap
Auteur

Drees Far, what xml code u need?

Avatar
Atchuthan - Technical Consultant, Sodexis Inc
Meilleure réponse

Try to use server action, to call your desired partner_id record to it.

In XML:

        <record id="ir_actions_server_portal_res_partner" model="ir.actions.server">
            <field name="sequence" eval="5"/>
            <field name="state">code</field>
            <field name="type">ir.actions.server</field>
            <field name="model_id" ref="model_res_partner"/>
            <field name="code">action = self.open_address(cr, uid, None, context)</field>
            <field name="condition">True</field>
            <field name="name">My Addresses</field>
        </record> 
        <menuitem id="addresses_menu" name="Addresses" parent="portal.portal_orders" sequence="0"
			action="ir_actions_server_portal_res_partner"/>


In PY:

 class Partner(orm.Model):
    _inherit = 'res.partner'

    def open_address(self, cr, uid, ids, context=None):
        ir_model_data = self.pool.get('ir.model.data')
        if context is None:
            context = {}

        user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
        partner = user.partner_id
        try:
            view_form_id = ir_model_data.get_object_reference(
                cr, uid, 'base', 'view_partner_form')[1]
        except ValueError:
            view_form_id = False

        return {
            'name': _('Open Addresses'),
            'view_type': 'form',
            'view_mode': 'form',
            'res_model': 'res.partner',
            'view_id': view_form_id,
            'res_id': partner.id,
            'type': 'ir.actions.act_window'
        }


2
Avatar
Ignorer
Gavin Yap
Auteur

Thanks Atchuthan, although I have not tried the above code yet because am V8 user. Your code is helpful and make sense to me. Cheers.

Gavin Yap
Auteur

Thanks again. I confirmed this solution works.

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é
v17: call another form view from Automation Rules
form_view v17
Avatar
Avatar
1
janv. 24
3453
Add button to form view Résolu
form_view odoo
Avatar
Avatar
Avatar
Avatar
4
avr. 24
66372
Quotation (Sales) - Edit List View / Form View
form_view Quotations
Avatar
Avatar
1
oct. 22
4155
How to remove or invisible "Add a section" and "Add a note" at the invoice field
invoice form_view
Avatar
Avatar
Avatar
2
avr. 22
6776
Is there a form view for purchase order lines?
purchase form_view
Avatar
Avatar
Avatar
Avatar
4
sept. 17
13043
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
  • Devenir 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 Svenska ภาษาไทย 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