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

create a module "password"

S'inscrire

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

Cette question a été signalée
modulecreationcreatenewmodulenewtab
2 Réponses
8842 Vues
Avatar
Quentin

I would like to make a simple module allowing to the customer to add his passwords in the database.

Firstly, as beginner in OpenERP programming, I would like just to do a module where I can associate to a name : an username, a password, a IP/Hostname, a comment.

I programmed like the following but it's not working, I have the error : ValidateError Error occurred while validating the field(s) arch: Invalid XML for View Architecture!

I read and I tried lots of things about this error but I didn't fix it.

my "password.py" :

from osv import osv
from osv import fields
class password(osv.osv):
 "'password Class"'

    _name='password'
    _columns=
    {
            'name':fiels.char("Name",size=128),
            'user':fields.char("Username",size=128),
            'host':fields.char("IP/HostName",size=128),
            'pass':fields.char("Password",size=128),
            'com':fields.char("Comment",size=128),            
    }
password()

my "password_view.xml ":

<?xml version="1.0" encoding="utf-8"?>

<openerp>
    <data>
        <record id="password_tree_view" model="ir.ui.view">
           <field name="name">password.tree</field>
               <field name="model">password</field>
               <field name="arch" type="xml">
                   <tree string="Password Tree" version="1.0">
                       <field name="name"/>
               <field name="user"/>
                       <field name="host"/>
                       <field name="pass"/>
                       <field name="com"/>
                   </tree>
            </field>
        </record>
        <record id="password_action" model="ir.actions.act_window">
            <field name="name">password</field>
            <field name="res_model">password</field>
            <field name="view_type">tree</field>
        </record>
    </data>
</openerp>

my __init__.py is empty

and my __openerp__.py :

{
    'name': 'Password module',
    'version': '1.0',
    'category': 'Partner/Customer Management',
    'description': """""",
    'author': '',
    'website': '',
    'depends': ['base'],
    'data': ['password/password_view.xml'],

    'installable': True,
    'auto_install': False,
    'application': False,
}

Thanks for your help !

0
Avatar
Ignorer
Avatar
Ghanshyam Prajapati
Meilleure réponse
  • Remove version="1.0" from tree view and then update your module password.

  • Replace from osv import osv and from osv import fields with from openerp.osv import osv, fields

  • Add import password in __init__.py

Now check your problem is solved or not if not then try following,

Make Form view of your object,

        <record id="password_form_view" model="ir.ui.view">
           <field name="name">password.form</field>
               <field name="model">password</field>
               <field name="arch" type="xml">
                   <form string="Password Form" version="7.0">
                       <field name="name"/>
                       <field name="user"/>
                       <field name="host"/>
                       <field name="pass"/>
                       <field name="com"/>
                   </form>
            </field>
        </record>

   <record id="password_action" model="ir.actions.act_window">
        <field name="name">password</field>
        <field name="res_model">password</field>
        <field name="view_type">tree</field>
        <field name="view_mode">tree,form</field>
    </record>

then update your module password

Hope it work for you.

1
Avatar
Ignorer
Quentin
Auteur

Thanks Ghanshyam Prajapati, I don't have anymore error ! It's working (by adding the form view).

Avatar
Quentin
Auteur Meilleure réponse

Ok, so it's working. During this week I was looking for a way to add a tab to the customer's notepad where he could see his username, password, etc. I didn't find. When I modify my res_partner_view.xml :

<notebook colspan="4">
    <page string="Contacts" attrs="{'invisible': [('is_company','=',False), ('child_ids', '=', [])]}" autofocus="autofocus"> 
     [..................................]                               
    </page>
    <page string="Internal Notes">
     [..................................]
    </page>
    <page string="Sales & Purchases">
     [..................................]
    </page>
    <!-- The History page becomes visible as soon as there is something to display inside -->
    <page string="History" name="page_history" invisible="True">
    [..................................]
    </page>
    <page string="Password">
    [..................................]
     </page>
</notebook>

It doesn't change anything.

And in this tab I would like have the same view that in my password_view. A line with : Name, Username, host, password and comment but one time more it's not working.

Thanks

1
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é
How i can create module openerp 7 / Odoo 8 ? Résolu
module create newmodule new openerp
Avatar
Avatar
Avatar
Avatar
Avatar
17
avr. 23
70360
What is the best way of getting started with openERP?
create newmodule
Avatar
Avatar
1
juin 15
5811
Error "Invalid XML for View Architecture" in custom form view Résolu
module newmodule
Avatar
Avatar
Avatar
Avatar
Avatar
5
janv. 24
16902
Invalid XML for View Architecture , problem with my new module
module newmodule
Avatar
Avatar
Avatar
Avatar
4
mars 15
6509
OpenERP module xml ValidateError
module newmodule
Avatar
Avatar
1
mars 15
8170
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