Odoo 优先小部件不显示每个选项

发布于 2025-01-09 03:21:56 字数 375 浏览 0 评论 0原文

我想要我的选择字段上的优先级小部件。但优先级小部件不显示第一个选项。我将从第二个选项开始。

输入图片此处描述

在此处输入图像描述

这是 Odoo 源代码中的错误还是我需要编写其他内容才能使其工作我预计?

I want to the priority widget on my selection field. But priority widget not show the first option. I will start from the second option.

enter image description here

enter image description here

Is this a bug from Odoo source code or I need to write something else to make it work as I expected?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

难理解 2025-01-16 03:21:57

在 Odoo Widget 优先级中:

  • 如果您想要 5 个级别,则必须从“0”到“5”开始
  • 如果您想要 4 个级别,则必须从“0”到“4”开始
  • 如果您想要 3 个级别,则必须从“0”开始'3' 等等

因此在您的示例中您应该添加如下字段

优先级 = fields.selection([('0', '非常低'),('1', '低'),('2',
'正常'),('3', '高'), string = '优先级']

In Odoo Widget priority :

  • if you want 5 levels you must start from '0' to '5'
  • if you want 4 levels you must start from '0' to '4'
  • if you want 3 levels you must start from '0' to '3' and so on

So in your example you should add field as below

priority = fields.selection([('0', 'Very Low'),('1', 'Low'),('2',
'Normal'),('3', 'High'), string = 'Priority']

回忆那么伤 2025-01-16 03:21:57

这样做

priority = fields.Selection([(0, ''), (1, 'Low X'), (2, 'Normal Y'), (3, 'High Z')]

Do like this

priority = fields.Selection([(0, ''), (1, 'Low X'), (2, 'Normal Y'), (3, 'High Z')]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文