0

我如何编辑weekly_timesheet 小部件。xml 文件调用用于在每周时间表中添加行的小部件。

我希望用户仅在新行或现有行中编辑当前日期的时间。

我该怎么做?在 XML 中看起来很简单,但我不知道从哪里可以编辑小部件。

问候,

4

1 回答 1

0

要编辑模板中定义的小部件,您需要创建一个新模板并执行类似的操作。

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
    <t t-extend="sales_team.SalesDashboard">
        <t t-jquery=".o_welcome_content" t-operation="replace">
            <div class="o_welcome_content">
                <h2>Bonjour!</h2>
                <h4>Une bonne journée commence par un pipeline de ventes bien organisé.</h4>
                <h4>Ajoutez-lui quelques opportunités!</h4>
                <a class="btn btn-primary o_dashboard_action" name="crm.action_your_pipeline">Mon pipeline</a>
            </div>
        </t>
    </t>
</templates>

在这里,我扩展了模块 sales_team 中的 SalesDashboard 小部件。您只需将标签的名称(在我的情况下是<t t-name="sales_team.SalesDashboard")放在t-extend零件上。

然后它就像视图的继承,但不是使用xpath你使用 jQuery 选择器(就像 CSS 选择器那样)并替换,之后,之前 on t-operation。这是关于该主题的链接:https ://www.odoo.com/documentation/10.0/reference/qweb.html#javascript

于 2017-01-18T13:09:01.080 回答