コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
9583 ビュー

I is possible to use Qweb template in calendar view? I want to modify it a bit, but all I can do is just add new fields to be showed in calendar item, like this - ```field1, field2, field3...```

Is there any better way to customize calendar view, like you can with kanban view by using Qweb templating engine?

For example if I use like this:

        <record model="ir.ui.view" id="view_calendar_service_work_calendar">
            <field name="name">Service Works Calendar</field>
            <field name="model">calendar.service.work</field>
            <field name="priority" eval="1"/>
            <field name="arch" type="xml">
                <calendar string="Service Works" date_start="start_time" color="employee_id" date_stop="end_time" mode="week">
                    <field name="name"/>
                    <field name="employee_id"/>                                     
                </calendar>

               <template>

                   <t t-name="something"></t>

              </template>
            </field>
        </record>  

This will throw error:

 Uncaught TypeError: Cannot read property 'type' of undefined 

http://localhost:8090/web_calendar/static/src/js/web_calendar.js:414

As a matter of fact, if I use anything other than field tag, it will throw that error. I can't even use div tag. So it seems you can't style calendar at all?

アバター
破棄
最善の回答

You cannot have that kind of customization when it comes to the calendar view.

The calendar view is based on this library: http://dhtmlx.com/docs/products/dhtmlxScheduler/

So if you want to modify how it looks, you will have to modify the way Odoo interacts with that library and the way it renders events. You can find it in web_calendar

アバター
破棄
関連投稿 返信 ビュー 活動
0
9月 15
4328
2
9月 23
15007
1
1月 19
8701
1
4月 15
7098
5
3月 15
14467