xml - 如何在门户网站odoo13上添加所见即所得

标签 xml odoo wysiwyg

我想使用以下命令将所见即所得 HTML 添加到 Odoo 13 网站门户 tutorial ,但我尝试过的所见即所得显示仅显示加载屏幕,因此无法输入文本。有什么遗漏吗?

[This is displays a loading screen][2]<br><br>

XML 代码:

<template id="portal_my_details_sl_elrn" inherit_id="portal.portal_my_details">
    <xpath expr="//form/div/div/div/div[3]" position="before">
        <div t-attf-class="form-group #{error.get('about_me') and 'o_has_error' or ''} col-xs-12">
            <!-- <label class="col-form-label" for="about_me">About Me</label> -->
            <label class="col-form-label" for="about_me">About Me</label>
            <textarea name="about_me" id="about_me" class="form-control o_wysiwyg_loader">
                <!-- <t t-esc="about_me"/> -->
                <input name="about_me" t-attf-class="form-control #{error.get('about_me') and 'is-invalid' or ''}"
                       t-att-value="about_me or partner.about_me"/>
            </textarea>
        </div>
    </xpath>
</template>

最佳答案

除了您发布的代码之外,您还可以将 website_profile 添加到您的模块 depends 并将 o_wprofile_editor_form 类添加到 form

<xpath expr="//form" position="attributes">
    <attribute name="class">o_wprofile_editor_form</attribute>
</xpath>

或者,您可以将 javascript 网站配置文件编辑器代码添加到 website.assets_frontend,而不是安装 website_profile

<template id="assets_frontend" inherit_id="website.assets_frontend">
    <xpath expr="script[last()]" position="after">
        <script type="text/javascript" src="/module_name/static/src/js/custom_editor.js"></script>
    </xpath>
</template>

以下代码可以在website_profile中找到静态文件夹。

var publicWidget = require('web.public.widget');
var wysiwygLoader = require('web_editor.loader');


publicWidget.registry.websiteProfileEditor = publicWidget.Widget.extend({
    selector: '.o_wprofile_editor_form',
    read_events: {
        'click .o_forum_profile_pic_edit': '_onEditProfilePicClick',
        'change .o_forum_file_upload': '_onFileUploadChange',
        'click .o_forum_profile_pic_clear': '_onProfilePicClearClick',
        'click .o_wprofile_submit_btn': '_onSubmitClick',
    },

    /**
     * @override
     */
    start: function () {
        var def = this._super.apply(this, arguments);
        if (this.editableMode) {
            return def;
        }

        var $textarea = this.$('textarea.o_wysiwyg_loader');
        var loadProm = wysiwygLoader.load(this, $textarea[0], {
            recordInfo: {
                context: this._getContext(),
                res_model: 'res.users',
                res_id: parseInt(this.$('input[name=user_id]').val()),
            },
        }).then(wysiwyg => {
            this._wysiwyg = wysiwyg;
        });

        return Promise.all([def, loadProm]);
    },

    //--------------------------------------------------------------------------
    // Handlers
    //--------------------------------------------------------------------------

    /**
     * @private
     * @param {Event} ev
     */
    _onEditProfilePicClick: function (ev) {
        ev.preventDefault();
        $(ev.currentTarget).closest('form').find('.o_forum_file_upload').trigger('click');
    },
    /**
     * @private
     * @param {Event} ev
     */
    _onFileUploadChange: function (ev) {
        if (!ev.currentTarget.files.length) {
            return;
        }
        var $form = $(ev.currentTarget).closest('form');
        var reader = new window.FileReader();
        reader.readAsDataURL(ev.currentTarget.files[0]);
        reader.onload = function (ev) {
            $form.find('.o_forum_avatar_img').attr('src', ev.target.result);
        };
        $form.find('#forum_clear_image').remove();
    },
    /**
     * @private
     * @param {Event} ev
     */
    _onProfilePicClearClick: function (ev) {
        var $form = $(ev.currentTarget).closest('form');
        $form.find('.o_forum_avatar_img').attr('src', '/web/static/src/img/placeholder.png');
        $form.append($('<input/>', {
            name: 'clear_image',
            id: 'forum_clear_image',
            type: 'hidden',
        }));
    },
    /**
     * @private
     */
    _onSubmitClick: function () {
        if (this._wysiwyg) {
            this._wysiwyg.save();
        }
    },
});

编辑:
我们需要在表单提交时调用_onSubmitClick,将o_wprofile_submit_btn类添加到提交按钮:

<xpath expr="//button[@type='submit']" position="attributes">
    <attribute name="class">btn btn-primary o_wprofile_submit_btn</attribute>
</xpath>

编辑:未知字段"file"

小部件添加了一个输入名称files,该名称传递给 Controller ​​,当您单击Confirm按钮时,details_form_validate方法被调用检查data(发布)中存在的 key 是否也在MANDATORY_BILLING_FIELDSOPTIONAL_BILLING_FIELDS中。

我想您没有使用files字段(它没有在BILLING_FIELDS中声明),以避免警告尝试绕过验证:

from odoo.addons.portal.controllers.portal import CustomerPortal

class CustomerPortalNew(CustomerPortal):

    def details_form_validate(self, data):
        files = data.pop('files', None)
        res = super(CustomerPortalNew, self).details_form_validate(data)
        data['files'] = files
        return res

修复代码:
res_partner.py

from odoo import api, models, fields, _

class ResPartner(models.Model):
    _inherit = 'res.partner'

    about_me = fields.Html('About Me')

portal.py

from odoo.http import Controller
from odoo.addons.portal.controllers.portal import CustomerPortal

CustomerPortal.OPTIONAL_BILLING_FIELDS.append('about_me')

class CustomerPortalNew(CustomerPortal):

    def details_form_validate(self, data):
        files = data.pop('files', None)
        res = super(CustomerPortalNew, self).details_form_validate(data)
        data['files'] = files
        return res

portal_templates.xml

<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <template id="assets_frontend" inherit_id="website.assets_frontend">
        <xpath expr="script[last()]" position="after">
            <script type="text/javascript" src="/sl_elrn/static/src/js/website_profile.js"></script>
        </xpath>
    </template>
    <template id="portal_my_details_sl_elrn" inherit_id="portal.portal_my_details">
        <xpath expr="//form" position="attributes">
            <attribute name="class">o_wprofile_editor_form</attribute>
        </xpath>
        <xpath expr="//form/div/div/div/div[3]" position="before">
            <div t-attf-class="form-group #{error.get('about_me') and 'o_has_error' or ''} col-xl-12">
                <label class="col-form-label" for="about_me">About Me</label>
                <textarea name="about_me" id="about_me" style="min-height: 120px" class="form-control o_wysiwyg_loader">
                    <t t-esc="about_me or partner.about_me"/>
                </textarea>
            </div>
        </xpath>
        <xpath expr="//button[@type='submit']" position="attributes">
            <attribute name="class">btn btn-primary o_wprofile_submit_btn</attribute>
        </xpath>
    </template>
</odoo>

关于xml - 如何在门户网站odoo13上添加所见即所得,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61862158/

相关文章:

python - 更新: Odoo project task tags domain

email - 是否可以使用 OpenERP 实现电子邮件已读回执?

asp.net - 最佳 ASP.net 所见即所得

javascript - WYSIWYG - 文本和代码编辑器

javascript - Tinymce 获取更改内容

java - ReSTLet 复杂对象到 XML 序列化

xml - 如何将 XML 列连接回其来源记录?

xml - 如何使用 XSLT 获取信息并对仅具有标识符的元素子集进行排序?

xml - 资源所有者密码凭据流程在 Azure AD B2C 中不起作用

python - 继承hr_timesheet_sheet.sheet,错误: module. __init__()最多接受2个参数