How to create a kanban view for custom module in openerp 7.0 , i have created a image field for kanban view how can i use
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
1
Trả lời
22752
Lượt xem
Hi,
Kanban view is created based on QWEB technology QWEB and you can define a qWeb template .but
you can use template for product.product
:
in your object
_columns = {
'name': fields.char('Name'),
'image': fields.binary("Image"),
}
in record view :
<record model="ir.ui.view" id="custom_module_kanban_view">
<field name="name">custom.module.kanban</field>
<field name="model">your_model</field>
<field name="type">kanban</field>
<field name="arch" type="xml">
<kanban>
<!--list of field to be loaded -->
<field name="name" />
<field name="image" />
<templates>
<t t-name="kanban-box">
<div class="oe_product_vignette">
<a type="open">
<img class="oe_kanban_image"
t-att-src="kanban_image('your_model', 'image', record.id.value)" />
</a>
<div class="oe_product_desc">
<h4>
<a type="edit">
<field name="name"></field>
</a>
</h4>
<ul>
<li>Field 1 : </li>
<li>Field 2 : </li>
</ul>
</div>
</div>
</t>
</templates>
</kanban>
</field>
</record>
in record act_window :
<record id="action_custom_modul_form" model="ir.actions.act_window">
<field name="name">Title custom module</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">your_model</field>
<field name="view_type">form</field>
<field name="view_mode">kanban,tree,form</field>
</record>
This code is tested and it works without problem.
Thanks for your reply, in kanban view nothing is displaying
I edited the answer.
Thank you its working
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
0
thg 2 21
|
2843 | ||
|
1
thg 7 25
|
1962 | ||
|
1
thg 5 25
|
2050 | ||
|
1
thg 4 25
|
2481 | ||
|
1
thg 2 25
|
1751 |