The above exception was the direct cause of the following exception: Traceback (most recent call last): File "C:\Users\Author\Downloads\odoo-15.0\odoo\http.py", line 654, in _handle_exception return super(JsonRequest, self)._handle_exception(exception) File "C:\Users\Author\Downloads\odoo-15.0\odoo\http.py", line 301, in _handle_exception raise exception.with_traceback(None) from new_cause odoo.tools.convert.ParseError: while parsing file:/c:/users/author/downloads/odoo-15.0/cwj/hear/views/hear.views.xml:22 验证附近视图时出错: <fiedl string="已卖出" name="flag" domain="[('flag', '=', True)]"/> <field string="未卖出" name="flag" domain="[('flag', '=', False)]"/> <group expand="0" string="Group By"> <filter string="品种类型" name="gender" context="{'group_by':'gender'}"/> <filter string="定价" name="nums" context="{'group_by':'nums'}"/> 非关系字段"flag"上的域没有意义(域: [('flag', '=', False)]) View error context: {'file': 'c:\\users\\author\\downloads\\odoo-15.0\\cwj\\hear\\views\\hear.views.xml', 'line': 6, 'name': '卖', 'view': ir.ui.view(3351,), 'view.model': 'hear', 'view.parent': ir.ui.view(), 'xmlid': '=hear_view_search'}
时间: 2024-01-03 08:04:03 浏览: 110
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这是一个Odoo平台的错误信息,显示在解析视图文件时出现了错误。具体来说,这个错误是因为在视图文件的第22行中,一个名为"flag"的非关系字段被用在了一个域中,但是这个域是没有意义的。根据错误信息,这个视图文件是用于搜索"hear"模型的,可能需要检查该模型中的字段和域,看看是否存在类似的问题导致的解析错误。
阅读全文