콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
6807 화면

i'm newbie in odoo and i just have created a kanban view for a ticket system, i want to know how to execute a python function on the click of a kanban box

here is my xml code:

<?xml version="1.0" encoding="UTF-8" ?><odoo>    <record id="kanban_tickets_task" model="ir.ui.view">        <field name="model">service.queue</field>        <field name="arch" type="xml">            <kanban create="false">              <field name="name"/>              <field name="code"/>              <field name="last_ticket"/>              <templates>                <t t-name="kanban-box">                  <div class="oe_module_vignette oe_kanban_global_click">                    <div class="oe_module_desc" >                      <h4 class="o_kanban_record_title"><field name="name"/></h4>                      <p class="oe_module_name">                         <field name="code"/><br/>                          <field name="last_ticket"/>                      </p>                    </div>                  </div>                </t>              </templates>            </kanban>        </field>    </record>    <record model="ir.actions.act_window" id="tickets_kanban_window">      <field name="name">Tickets Dashboard</field>      <field name="res_model">service.queue</field>     <field name="view_mode">kanban</field>    </record>    <menuitem id="kanban_tickets_menu"  name="tickets dashboard" action="tickets_kanban_window"/></odoo>

아바타
취소

What you want to do when you click on kanban box?

베스트 답변

Hi,

On clicking the kanban view, most probably the form view will get opened.  So what you can easily do is that, write an onchange function for a field in the form view, so that the python function will get worked.


If you don't want above method write on onclick function in js for the kanban card and call the python function from it.

Thanks

아바타
취소
관련 게시물 답글 화면 활동
0
3월 25
1310
1
1월 25
1655
4
4월 24
174154
0
12월 23
2082
5
7월 25
227776