如何在门户网站上添加所见即所得的内容 odoo13

问题描述 投票:0回答:1

我想在Odoo 13网站门户中添加所见即所得的HTML,方法如下 教程但我试过的所见即所得的显示方式只能显示一个加载画面,所以不能输入文字,是不是缺少什么?

[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>
xml odoo wysiwyg
1个回答
1
投票

除了你发布的代码,你还可以添加 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>

以下代码可以在 网站简介 静态文件夹。

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>

编辑: 未知字段 "文件

小工具增加了一个输入名称 files 传递给控制器,当你点击 Confirm 按钮。details_form_validate 方法被调用,以检查是否存在于 data 岗)也在 MANDATORY_BILLING_FIELDS 或在 OPTIONAL_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')

门户网站.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>
© www.soinside.com 2019 - 2024. All rights reserved.