Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Help

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Emergency please, New user preference don't show !!!

Odoberať

Get notified when there's activity on this post

This question has been flagged
modelsrecordspreferences
1 Odpoveď
4989 Zobrazenia
Avatar
Mohsen Javid

Hi, i'm newbie in using of Odoo and i understood that in version 9 of Odoo, massive changes applied to this and concurrently don't generated any documentation for this.

I try to add a checkbox on the settings > users > an user > preferences part below of language, all code ran correct and no exception raise but, no any element adding below language. and in debug menu > Fields View Get i see that my field not added.

i show related parts of my module for you

_openerp_.py:

# -*- coding: utf-8 -*-

{

    'name': "JalaliDateView",

    'summary': """Show dates and date-picker as Jalali date""",

    'description': "Show dates and date-picker as Jalali date",

    'author': "Mohsen Javidpanah",

    'website': "http://www.xyz.ir",

    'category': 'Uncategorized',

    'version': '0.1',

    'depends': ['base', 'web'],

    'data': [

        'security/ir.model.access.csv',

        'views/views.xml',

        'views/templates.xml',

        'views/user_profile.xml',

    ],

    'demo': [

        'demo/demo.xml',

    ],

}


__init__.py:

from . import models, user_profile


user_profile.py:

from openerp import models, fields

import werkzeug.local

_request_stack = werkzeug.local.LocalStack()

request = _request_stack()

class res_users(models.Model):

     _inherit = "res.users"

    _name = "jdv.users"

    context_jdv = fields.Boolean(string='Show calendar as Jalali?', help="Using jalali calendar throughout views.")

    _defaults = {

        'context_jdv': True,

    }

res_users()


userprofile.xml:

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

<openerp>

     <data>

        <record model="ir.rule" id="ir_values_jdv_users_rule">

             <field name="name">Jalali Date view Users Rules</field>

             <field name="model_id" ref="model_jdv_users"/>

             <field name="domain_force">[('field','operator','value'),('user_id','=',user.id)]</field>

             <field name="perm_read" eval="True"/>

             <field name="perm_write" eval="True"/>

             <field name="perm_unlink" eval="True"/>

            <field name="perm_create" eval="True"/>

        </record>

        <record id="jdv_users_conf_simple_modif" model="ir.ui.view">

            <field name="name">res.users.preferences.form.jdv</field>

            <field name="model">jdv.users</field>

            <field name="inherit_id" ref="base.view_users_form_simple_modif"/>

            <field name="priority" eval="120"></field>

            <field name="arch" type="xml">

               <data>

                   <xpath expr='//group[@name="preferences"]' position="after">

                       <field name="context_jdv" string="Show Jalali Calculator?" readonly="0"/>

                   </xpath>

               </data>

           </field>

        </record>

        <record id="jdv_users_conf" model="ir.ui.view">

            <field name="name">res.users.preferences.form.jdv</field>

            <field name="model">jdv.users</field>

            <field name="inherit_id" ref="base.view_users_form"/>

            <field name="priority" eval="220"></field>

            <field name="arch" type="xml">

                <data>

                    <xpath expr='//field[@name="lang"]' position="after">

                        <field name="context_jdv" string="Show Jalali Calculator?" readonly="0"/>

                    </xpath>

               </data>

            </field>

        </record>

    </data>

</openerp>

0
Avatar
Zrušiť
Avatar
Qutechs, Ahmed M.Elmubarak
Best Answer

Hello,

If you'd like to add a new filed to the res.user in the original model; I think you don't need to add 

_name = "jdv.users"

So try to remove it from the 

user_profile.py & your views

also use res.users instead of jdv.users in the xml views:

<field name="model">jdv.users</field>
to be 

<field name="model">res.users</field>

Hope this will helps




1
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Merge two different models in a list view
models records design
Avatar
1
júl 19
8478
Python list in records.
models records model lists
Avatar
1
nov 20
4510
How to create new model record with sale order details in a smart button click?
models buttons records odoo13.0
Avatar
0
jún 20
7778
Hello, how could I create a button that creates a new record in another model containing data from my current model? from my python module
python module models button records
Avatar
Avatar
Avatar
2
jan 25
2082
How can I use two models in an API (foreign key - relations)?
models
Avatar
0
dec 24
2119
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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