python odoo控制器继承

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python odoo控制器继承相关的知识,希望对你有一定的参考价值。

from odoo.addons.website_sale.controllers.main import WebsiteSale

class WebsiteSaleInherit(WebsiteSale):
    @http.route(['/shop/checkout'], type='http', auth="public", website=True)
    def checkout(self, **post):
        # use super to call prevously defined checkout methods so we not overriding the method but extend it.
        res = super(WebsiteSale, self).checkout(**post)   
        # code your bugs in here ;)

以上是关于python odoo控制器继承的主要内容,如果未能解决你的问题,请参考以下文章

odoo12 通过python代码控制xml界面,更改字段属性(fields_view_get方法使用)

python odoo销售结账控制器

odoo模块

(08)odoo继承机制

Odoo9.0模块开发全流程

Odoo 10 视图继承错误: