我正在使用 <div class="col-md-3 col-sm-6 mt-xs-2">
<h1><i class="fas fa-globe-americas"></i></h1>
<h4>Boston, Massachusetts, United States of America</h4>
</div>
开发web client
。我必须基于相关的Odoo 10
来限制many2one字段的域。我正在做什么,因为many2many field
中没有选项。
下面,我详细介绍这些字段的特征:
many2one field
下面我详细介绍相关模型的特征:
field: x_impuestosoaportes
type: many2one
related model: x_impuestosyaportes
required> true
store> true
copy> true
field: x_impuestosapagar
type: many2many
related field: x_empresa.x_impuestosapagar
related model: x_impuestosyaportes
relationship table: x_x_impuestosyaportes_x_pagosorg_rel
column 1: x_pagosorg_id
column 2: x_impuestosyaportes_id
required> true
store> true
copy> true
下面我详细介绍表单视图:
model: x_impuestosyaportes
field1: x_name
type field1: char
我在做什么错?为什么在many2one字段中看不到选项?
我认为相关字段未更新。如何从Web客户端执行此操作?