mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import api, models, tools, SUPERUSER_ID
|
|
from odoo.modules.module import get_resource_path
|
|
from odoo.tools import view_validation
|
|
from odoo.tools.view_validation import _relaxng_cache, validate, _validators
|
|
from odoo.tools.safe_eval import safe_eval
|
|
|
|
from lxml import etree
|
|
import logging
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
def app_relaxng(view_type):
|
|
""" Return a validator for the given view type, or None. """
|
|
if view_type not in _relaxng_cache:
|
|
# tree, search 特殊
|
|
if view_type in ['tree', 'search', 'pivot']:
|
|
_file = get_resource_path('app_common', 'rng', '%s_view.rng' % view_type)
|
|
else:
|
|
_file = get_resource_path('base', 'rng', '%s_view.rng' % view_type)
|
|
with tools.file_open(_file) as frng:
|
|
try:
|
|
relaxng_doc = etree.parse(frng)
|
|
_relaxng_cache[view_type] = etree.RelaxNG(relaxng_doc)
|
|
except Exception:
|
|
_logger.error('Failed to load RelaxNG XML schema for views validation')
|
|
_relaxng_cache[view_type] = None
|
|
return _relaxng_cache[view_type]
|
|
|
|
view_validation.relaxng = app_relaxng
|
|
|
|
class View(models.Model):
|
|
_inherit = 'ir.ui.view'
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(View, self).__init__(*args, **kwargs)
|
|
view_validation.relaxng = app_relaxng
|
|
|
|
# todo: 有可能需要处理增加的 header等标签
|
|
# 直接重写原生方法
|
|
# def transfer_node_to_modifiers(node, modifiers, context=None, in_tree_view=False):
|