Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

create a module "password"

Odebírat

Get notified when there's activity on this post

This question has been flagged
modulecreationcreatenewmodulenewtab
2 Odpovědi
8848 Zobrazení
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
Zrušit
Avatar
Ghanshyam Prajapati
Nejlepší odpověď
  • 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
Zrušit
Quentin
Autor

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

Avatar
Quentin
Autor Nejlepší odpověď

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
Zrušit
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
How i can create module openerp 7 / Odoo 8 ? Vyřešeno
module create newmodule new openerp
Avatar
Avatar
Avatar
Avatar
Avatar
17
dub 23
70363
What is the best way of getting started with openERP?
create newmodule
Avatar
Avatar
1
čvn 15
5820
Error "Invalid XML for View Architecture" in custom form view Vyřešeno
module newmodule
Avatar
Avatar
Avatar
Avatar
Avatar
5
led 24
16905
Invalid XML for View Architecture , problem with my new module
module newmodule
Avatar
Avatar
Avatar
Avatar
4
bře 15
6511
OpenERP module xml ValidateError
module newmodule
Avatar
Avatar
1
bře 15
8170
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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