gpt4 book ai didi

javascript - 奥杜。隐藏字段选择中的一些选项

转载 作者:行者123 更新时间:2023-12-03 07:49:37 25 4
gpt4 key购买 nike

我的模型中有一些选择字段。这里的例子:

class MyModel(models.Model):
_name = 'my_app.my_model'

example_selection = fields.Selection(
[
('first', 'First'),
('second', 'Second'),
# etc.
],
string='My selection',
)

在某些情况下,我需要隐藏选择(或单选按钮)中的特定选项。我怎样才能正确地做到这一点?

下面的屏幕来自基本日历模块,它可以更多地解释我的问题。

enter image description here

提前致谢。

最佳答案

有点晚了。就我而言,我是这样做的:

odoo.define('my_module.custom_selection', function(require) {
"use strict";

var registry = require('web.field_registry');
var relational_fields = require('web.relational_fields');

var MySelection = relational_fields.FieldRadio.extend({
init: function() {
this._super.apply(this, arguments);
// use to decrement in splice, bc position change when element is removed
let decrement = 0;
// this.values can be undefined or [[], [], []]
// copying the content of original array or []
let value_copies = this.values? [...this.values]: [];

for (let index = 0; index < value_copies.length; index++) {
// 'other' is the value to be removed
if (value_copies[index].includes('other')) {
this.values.splice(index - decrement, 1);
decrement++;
}
}
},
});

registry.add('custom_selection', MySelection);

return MySelection;
});

您可以在这里查看我的存储库:https://github.com/m0r7y/wdgt_hide_option

关于javascript - 奥杜。隐藏字段选择中的一些选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35055645/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com