0
我想在看板視圖中調用開啓功能。但我不知道我可以怎麼稱呼它? 我嘗試了很多方法,但仍然錯誤。但沒有輸出。 而我在看板視圖中有另一個問題: 當我從一個拖動到另一個時,一些值會改變。 我該如何執行此操作?如何在openerp的看板視圖中調用onchange函數?
<record model="ir.ui.view" id="hr_kanban_view_transfer">
<field name="name">Employee Transfer Kanban</field>
<field name="model">employee.transfer</field>
<field name="arch" type="xml">
<kanban default_group_by="site1">
<field name="site1"/>
<field name="color"/>
<field name="location1"/>
<field name="location2" />
<field name="site2"/>
<templates>
<t t-name="kanban-tooltip">
<ul class="oe_kanban_tooltip">
<li t-if="record.employee_id.raw_value"><b>Employee:</b> <field name="employee_id"/></li>
<li t-if="record.site1.raw_value"><b>Current Project:</b> <field name="site1"/></li>
<li t-if="record.location1.raw_value"><b>Source Location:</b> <field name="location1"/></li>
<li t-if="record.date.raw_value"><b>Date:</b> <field name="date"/></li>
</ul>
</t>
<t t-name="kanban-box">
<div t-attf-class="oe_kanban_color_#{kanban_getcolor(record.color.raw_value)} oe_kanban_card oe_kanban_global_click oe_semantic_html_override">
<div class="oe_dropdown_toggle oe_dropdown_kanban">
<span class="oe_e">i</span>
<ul class="oe_dropdown_menu">
<t t-if="widget.view.is_action_enabled('delete')"><li><a type="delete">Delete</a></li></t>
<!-- <li><a name="action_makeMeeting" type="object">Schedule Interview</a></li> -->
<li><ul class="oe_kanban_colorpicker" data-field="color"/></li>
</ul>
</div>
<div class="oe_kanban_content" tooltip="kanban-tooltip">
<div>
<t t-if="record.employee_id.raw_value"><b><field name="employee_id"/></b><br/></t>
<i><field name="employee_id"/></i><br/>
<field name="site1"/><br/>
<field name="site2"/><br/>
<t t-if="record.source_location.raw_value">Source Location: <field name="location1"/><br/></t>
<!-- <t t-if="record.title_action.raw_value"><field name="title_action"/><br/></t> -->
<field name="date"/>
</div>
<div class="oe_kanban_right">
<img t-att-src="kanban_image('hr.employee', 'image_small', record.employee_id.raw_value)" t-att-title="record.employee_id.value" width="24" height="24" class="oe_kanban_avatar"/>
</div>
<!-- <div class="oe_kanban_footer_left" style="margin-top:5px;">
<t t-raw="record.message_summary.raw_value"/>
<field name="categ_ids"/>
</div>-->
</div>
<div class="oe_clear"></div>
</div>
</t>
</templates>
</kanban>
</field>
</record>
當我將員工從一個站點轉移到另一個站點,即站點1到站點2時,如何更改我的代碼? 在看板視圖中可能嗎?