تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
8253 أدوات العرض

Hi,

I'm a newbie in Odoo v8 development and I'm following the different tutorials from Odoo webpage.

My question is related to create my own tree, form, calendar, kanban, ... views and not to use the Odoo predefined views.

When I create a view (view.xml) for a module, I can associate a menu to an action and an action to one or more views.

<act_window id="action_todo_task"
name="To-do Task"
res_model="todo.task"
view_mode="tree,form" />

Then, I can create a record in the view.xml file to show the Odoo predefined tree view with different fields from my module

 <record id="view_tree_todo_task" model="ir.ui.view">
      <field name="name">To-do Task Tree</field>
      <field name="model">todo.task</field>
      <field name="arch" type="xml">
        <tree>
          <field name="name"/>
          <field name="is_done"/>
        </tree>
      </field>
    </record>

When i clic in the menu, I can see the tree view. The Odoo graphic interface has some buttons to activate the differents view (tree, form, kanban, ...)

What I need to know is whether I can create my own tree view (or form, kanban, calendar, ...) as a normal page with CSS, HTML and JavaScript.

Is it possible creating a qweb template?. In this case, how I can refer to my model fields (from the .py file) from the template?.

And how I can associate an action menu to my personalized qweb template view?.

I know that they are many difficult questions, but I would appreciate any help to follow my learning.

Thanks.

الصورة الرمزية
إهمال

Did you have alook there : https://www.odoo.com/documentation/8.0/howtos/backend.html

الكاتب

I have already read two of the Odoo official tutorials for developers. But I want to personalize the default views. For instance, in the default gantt view, I want to display hours instead days in the top section of the gantt.

المنشورات ذات الصلة الردود أدوات العرض النشاط
3
يوليو 17
10602
1
أغسطس 24
2164
0
ديسمبر 22
2661
0
يوليو 20
4404
2
مارس 15
6072