Odoo已知Bug

   日期:2020-11-16     浏览:101    评论:0    
核心提示:Odoo已知Bug1、模块类别name的多语言问题:base/module/module.pydef _update_category(self, cr, uid, mod_browse, category='Uncategorized'): current_category = mod_browse.category_id current_category_path = [] while current_category: current_category_p

Odoo已知Bug

1、模块类别name的多语言问题:
base/module/module.py

def _update_category(self, cr, uid, mod_browse, category='Uncategorized'):
    current_category = mod_browse.category_id
    current_category_path = []
    while current_category:
        current_category_path.insert(0, current_category.name)
        current_category = current_category.parent_id
 
    categs = category.split('/')
    if categs != current_category_path:
        # 这里不能比较,categs获取是原文,current_category_path通过current_category.name获取,name是可翻译字段,故不能比较
        cat_id = create_categories(cr, categs)
        mod_browse.write({'category_id': cat_id}

2、_rec_name权限问题

如果_rec_name 为一个many2one字段,计算display_name需要调用关联模型的name_get(),因此需要有关联模型的read权限,这里改为不验证权限:

odoo/openerp/models.py 1665行:

@api.depends(lambda self: (self._rec_name,) if self._rec_name else ())
 
def _compute_display_name(self):
 
    names = dict(self.name_get())   # _rec_name可能无权限
 
    for record in self:
 
        record.display_name = names.get(record.id, False)

3、odoo date、datetime类型字段options参数丢失

odoo/addons/web/static/src/js/views/form_widgets.js

Line: 484

return new datepicker.DateTimeWidget(this);
改为:
return new datepicker.DateTimeWidget(this, this.options);
Lines:533

return new datepicker.DateWidget(this);
改为:

return new datepicker.DateWidget(this, this.options);

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服