odoo_dev 开发培训作业:图书管理系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
377B

  1. # -*- coding: utf-8 -*-
  2. from odoo import http
  3. from odoo.addons.website.controllers.main import Website
  4. class WebsiteInfo(Website):
  5. @http.route()
  6. def website_info(self):
  7. result = super(WebsiteInfo, self).website_info()
  8. result.qcontext['apps'] = result.qcontext['apps'].filtered(
  9. lambda x: x.name != 'website'
  10. )
  11. return result
上海开阖软件有限公司 沪ICP备12045867号-1