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
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • 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
    Browse all Industries
  • 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
    • Services for Partners
    • 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 view from base_calendar view

Odebírat

Get notified when there's activity on this post

This question has been flagged
_inherits
2 Odpovědi
11474 Zobrazení
Avatar
oumaima

Hi everyone,I'm trying to inherit the base_calendar view in a new module that i was developed but i have these errors:

OpenERP Server Error

AssertionError: Did not expect element record there, line 1

myfile.py

from osv import fields,osv import time from datetime import datetime from tools.translate import _ from datetime import datetime, timedelta, date from dateutil import parser from dateutil import rrule from dateutil.relativedelta import relativedelta from openerp.osv import fields, osv from openerp.service import web_services from openerp.tools.translate import _ import pytz import re import time from openerp import tools, SUPERUSER_ID

class emploi_temps(osv.osv):

_name = 'emploi.temps'
_columns = {
  'name': fields.char('Objet',size=32, required=True),
  'date_debut': fields.datetime('Date Début', required=True),
  'date_fin': fields.datetime('Date fin', required=True),
  'professeur_id': fields.many2one('professeur.entity','Professeur', required=True),
}

emploi_temps()

class calendar_event(osv.osv):

_name = 'calendar.event'
_inherit='calendar.event'
_columns = {

}

calendar_event()

myfile.xml:

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

<openerp> <data>

<!--  ce menu est celui existant dans la barre en haut -->
<menuitem name="Gestion Emploi" id="menu_emp"/>

<menuitem name="Emploi" id="menu_emp1" parent="menu_emp"/>

    <record model="ir.ui.view" id="view_school_emploi_form">
        <field name="name">emploi.form</field>
        <field name="model">emploi.temps</field>
        <field name="type">form</field>
        <field name="arch" type="xml">
           <form string="Emploi du temps"  version="7.0">

                <group col="4" colspan="6">      
                    <field name="professeur_id" />
                    <field name="name" />
                    <field name="date_debut" />
                    <field name="date_fin" />
                </group>
           </form>
        </field>
    </record>   

    <record model="ir.ui.view" id="view_school_emploi__tree">
        <field name="name">emploi.tree</field>
        <field name="model">emploi.temps</field>
        <field name="type">tree</field>
        <field name="arch" type="xml">
            <tree string="Emploi du temps">
                <field name="professeur_id" />
                <field name="name" />
                <field name="date_debut" />
                <field name="date_fin" />
            </tree>
        </field>
    </record>


**<record model="ir.ui.view" id="view_calendar_inherit">
    <field name="name">calendar.event.inherit</field>
    <field name="model">calendar.event</field>
    <field name="type">calendar</field>
    <field name="inherit_id" ref="base_calendar.view_crm_meeting_calendar">calendar</field>
    <field name="arch" type="xml">

    </field>
</record>** 


<record model="ir.actions.act_window" id="action_school_emploi_form">
    <field name="name">Emploi du temps</field>
    <field name="res_model">emploi.temps</field>
    <field name="view_type">form</field>
    <field name="view_mode">tree,form,calendar</field>
</record>

<!--  Et finalement il y a le menu qui contient l'action pour ouvrir la vue tree de ton module -->

<menuitem action="action_school_emploi_form" id="menu_emp2" parent="menu_emp1" />

</data> </openerp>

0
Avatar
Zrušit
Avatar
Borni DHIFI
Nejlepší odpověď

Hi,

you can create the view calender without inherit.

For example :

<record id="emploi_temps_calendar" model="ir.ui.view">
            <field name="name">emploi.temps.calendar</field>
            <field name="model">emploi.temps</field>
            <field name="type">calendar</field>              
            <field name="arch" type="xml">
                <calendar color="professeur_id" date_delay="duration"
                    date_start="date_debut" string="temps">
                    <field name="name" />
                    <field name="date_debut" />
                    <field name="date_fin" />                        
                </calendar>
            </field>
</record>
0
Avatar
Zrušit
oumaima
Autor

Hi thank you for your answer; I did it at first;but i want to create a recurrent meetings that's why i used the inheritance from the calendar_event;any other idea please?

nagarjuna

@oumaima your requirement is displaying multiple models data in same calendar view. right ?

Avatar
oumaima
Autor Nejlepší odpověď

Hi now i can install the module and i have not error;but i added a new class that i linked to my calendar view.The problem is that i want to display my calendar view in a new menuitem;also when i want to add a new element (in the enseignant view) i have a view a bad view calendar

emploi.py

class emploi_temps(osv.osv):

_name = 'emploi.temps'
_inherit = 'calendar.event'
_columns = {
  'professeur_id': fields.many2one('professeur.entity','Professeur', required=True),
}

emploi_temps()

emploi_view.xml

<openerp>
<data>



 <record model="ir.ui.view" id="event_form_view_inherit">
        <field name="name">emploi.temps.form</field>
        <field name="model">emploi.temps</field>
        <field name="inherit_id" ref="base_calendar.event_form_view"/>
        <field name="type">form</field>
        <field name="arch" type="xml">
            <field name="name" position="after">
      <field name="professeur_id" />
    </field>
        </field>
    </record>


 <record model="ir.ui.view" id="event_tree_view_inherit">
        <field name="name">emploi.temps.tree</field>
        <field name="model">emploi.temps</field>
        <field name="inherit_id" ref="base_calendar.event_tree_view"/>
        <field name="type">tree</field>
        <field name="arch" type="xml">
            <field name="name" position="after">
      <field name="professeur_id" />
    </field>
        </field>
    </record>


 <record model="ir.ui.view" id="event_calendar_view_inherit">
        <field name="name">emploi.temps.calendar</field>
        <field name="model">emploi.temps</field>
        <field name="inherit_id" ref="base_calendar.event_calendar_view"/>
        <field name="type">calendar</field>
        <field name="arch" type="xml">
            <field name="name" position="after">
      <field name="professeur_id" />
    </field>
        </field>
    </record>

</data> </openerp>

professeur.py

enter code hereclass professeur_entity(osv.osv):

_name = 'professeur.entity'
_columns = {
  'name': fields.char('Nom', required=True, size=32),
  'prenom': fields.char('Prenom', required=True, size=32),
  'emp_ids': fields.one2many('emploi.temps','professeur_id', 'Emploi'),
}

professeur_entity()

professeur_view.xml

enter code here<!--  ce menu est celui existant dans la barre en haut -->
<menuitem name="Gestion professeur" id="menu_prof"/>

<menuitem name="Enseignant" id="menu_prof1" parent="menu_prof"/>

<record model="ir.ui.view" id="view_school_prof_form">
    <field name="name">prof.form</field>
    <field name="model">professeur.entity</field>
    <field name="type">form</field>
    <field name="arch" type="xml">
       <form string="Enseignant"  version="7.0">
           <group col="4" colspan="6">       
               <field name="name"/>
               <field name="prenom"/>
            </group>
            <field name="emp_ids" colspan="4" nolabel="1" />    
       </form>
    </field>
</record>   

    <record model="ir.ui.view" id="view_school_prof_tree">
    <field name="name">prof.tree</field>
    <field name="model">professeur.entity</field>
    <field name="type">tree</field>
    <field name="arch" type="xml">
        <tree string="Enseignants"  version="7.0">
               <field name="name"/>
               <field name="prenom"/>

       </tree>
    </field>
</record>

<record model="ir.actions.act_window" id="action_school_prof_form">
    <field name="name">Liste des enseignants</field>
    <field name="res_model">professeur.entity</field>
    <field name="view_type">form</field>
    <field name="view_mode">tree,form</field>
</record>

    <!--  Et finalement il y a le menu qui contient l'action pour ouvrir la vue tree de ton module -->

<menuitem action="action_school_prof_form" id="menu_prof2" parent="menu_prof1" />
0
Avatar
Zrušit
Borni DHIFI

To display calendar view in a new menuitem . create a new record model="ir.actions.act_window" and with <field name="view_mode">calendar</field>

oumaima
Autor

Hi thank you for you're reply;i can install the module but when i click in the calendar view i have this error:Uncaught Error: Champ state inconnu dans le domaine [["state","in",["done"]]]

Borni DHIFI

in your view xml add <field name="state" invisible="1" />

oumaima
Autor

I did: <field name="state" position="replace"/> because it's a inherit view but it still doesn't work;any other idea please?

oumaima
Autor

it work now but the view is disorganized and when i cliked in the calendar view i have this error ;any idea please?
TypeError: Invalid attribute dictionary: str

Anabela Damas

Did you did it ? I'm trying to do something like this but the view is disorganized... And I also have that error :"TypeError: Invalid attribute dictionary: str" ...

oumaima
Autor

Hi Anabela,it work's for me i just change the inherited module and for the disorganized view you can rewrite the code of the inherited view

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
unable to add column in res.users table Vyřešeno
_inherits
Avatar
Avatar
Avatar
Avatar
Avatar
17
pro 21
25753
how to change default digits of precision?
_inherits
Avatar
Avatar
1
pro 18
20398
Reg - _inherits OpenERP
_inherits
Avatar
Avatar
1
čvc 15
7805
aading a new menuitem in fleet module
_inherits
Avatar
Avatar
2
bře 15
6169
TypeError: The model "fleet.vehicle" specifies an unexisting parent class "fleet.vehicle"
_inherits
Avatar
Avatar
Avatar
2
bře 15
9649
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