Environment 参考链接: http://odoo-new-api-guide-line.readthedocs.io/en/latest/environment.html#environment 在新的API中,引入了环境的概念,它的主要目标是提供对游标.用户ID.模型.上下文.记录集.和缓存的封装. 有了这些,你没有必要在再需传入这些函数参数: # before def afun(self, cr, uid, ids, context=None): pass # now def af…