在Odoo中为“创建和导入”按钮附近的按钮创建功能?

时间:2018-12-12 07:33:22

标签: javascript python-3.x odoo-11

我有这个xml文件可以在按钮“创建和导入”附近创建按钮

<?xml version="1.0" encoding="UTF-8"?>
<templates id="sync_template" xml:space="preserve">
 <t t-extend="ListView.buttons">
 <t t-jquery="button.o_list_button_add" t-operation="replace">
 <t t-if="widget.modelName == 'list_reportformonth'">
 <button id="sync_button" class="btn btn-sm btn-default sync_button"type="button">Sync Data</button>
 </t>
 </t>
 </t>
 </templates>

此文件xml声明了js文件的路径(我尚未编码js文件,因为我不知道如何编写函数以捕获新按钮的事件单击和执行函数)

<?xml version="1.0" encoding="utf-8"?>

<odoo>
    <data>
   <template id="assets_backend" name="x_export_view assets" inherit_id="web.assets_backend">
       <xpath expr="." position="inside">
           <script type="text/javascript" src="\EPS_Attendance_Custom\static\src\js\xxx.js"></script>
       </xpath>
   </template>

有人可以为我的问题提供文件js的帮助吗:(我尝试搜索很多,但是当我单击按钮时,事情没有改变:((预先感谢。如果可以的话,请告诉我JS的示例结构文件:(

0 个答案:

没有答案