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

Inherited views

Odebírat

Get notified when there's activity on this post

This question has been flagged
viewinheritancefieldmodeldesign
1 Odpovědět
6363 Zobrazení
Avatar
Andrea Dalseno

Hi I'm trying to make an inherited view of res.partner.

My model (to begin) is as simple as this:

class genial_2015(osv.osv):

"""Db test genial_2015 """

_name = 'genial.2015'

_inherit = 'res.partner'

_columns = {

'titolo': fields.char ('Titolo', size = 31)

}

So it inherits from res.partner. And it works fine (I will have more fields later).

I'm trying to inherit the "base.view_partner_form" view (so that I will have all the fields properly formatted and the view design in place) and add my custom field to it.

This is my view

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

<field name="name">genial.2015.form</field>

<field name="model">genial.2015</field>

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

<field name="type">form</field>

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

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

<form string="Partners">

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

<field name="titolo" />

</xpath>

</form>

</field>

</record>

The module installs and I can see the form, but it's not the well formatted and designed res.partner.from, it's a mess with all the fields confused. Why? What am I doing wrong? Or what am I missing? This is a link to my window (hope it works).

http://postimg.org/image/s6ugg0iod/

My action definition is:

<record model="ir.actions.act_window" id="action_genial_2015">

<field name="name">genial.2015</field>

<field name="type">ir.actions.act_window</field>

<field name="res_model">genial.2015</field>

<field name="view_type">form</field>

<field name="view_mode">form</field>

</record>

I tried to give the view the same name as res.partner with the same model. In such a case I can see the view properly formatted, but there is no way to show my custom field. If I try with <field genial_2015_name="titolo" /> I got an error!

I tried to give the view a lower priority, but nothing changed. Of course modifying res.partner model will solve the problem, but I'd like to understand why I can't make it work with an inherited model.

I'm running  Odoo Version 8.0-a2115ef on Ubuntu 14.04 (Bitnami stack)

Thanks.

0
Avatar
Zrušit
Avatar
Andrea Dalseno
Autor Nejlepší odpověď

I tired to remove the _name declaration form my model as suggested here:

https://www.odoo.com/forum/help-1/question/view-inherit-from-res-partner-appears-all-one-page-with-no-styling-or-formatting-30444

But it didn't work either.

Ok, after reading a post here, I managed to have my view properly formatted. View does not inherit the design so you have to recreate yourself (I wonder what inheritance means?) and here is the result with my field under the website field.

http://postimg.org/image/95lfipgh5/

The problem is that I installed a couple of modules that modified the res.partner view (a tab for geolocalization data and a button for a map). This is the res.partner view:

http://postimg.org/image/7hhtugqqx/

What do I have to do to have them in my view too? Copy and paste the code again? What inheritance means then? At this point I had better modify res.partner instead of create my own model, hadn't I?

Any suggestion?

Thanks.

0
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 to make a field readonly in a form view according to another model field value? Vyřešeno
form view field readonly model
Avatar
Avatar
Avatar
6
dub 22
44186
Inherited fields, modified model and views
v8 fields view inheritance model
Avatar
Avatar
4
říj 15
10459
Add field from another module to project.issue kanban view Vyřešeno
project view inheritance kanban model
Avatar
Avatar
Avatar
3
zář 15
7115
Add field from another module to project.issue kanban view
project view inheritance kanban model
Avatar
0
zář 15
47
Custom float field with % sign Vyřešeno
view field model float custom_view
Avatar
Avatar
1
čvc 15
4423
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