コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
3194 ビュー

How to validate error message if some field is empty or uncheck etc ? is there any built-in function tag am using required in xml view but not working ? 

アバター
破棄
著作者

yes i did but still not working

著作者 最善の回答

I tried but not working am using on the xml?? 

from odoo import fields, models, api, _from odoo.exceptions import UserError
class SchoolProfile(models.Model):    _name = "school.profile"
    name = fields.Many2one("school.profile", string="School Name", required=True)

アバター
破棄

did you upgrade the module after making the changes in xml?

著作者

yesi did but still not working

最善の回答

Hi,

The following ways allow you to make a field required: either updating in Python or XML.

<field name="employee_id" required="1"/>

OR

employee_id = fields.Many2one('hr.employee', string='Employee', required=1)



https://www.youtube.com/watch?v=TR1TVykJmgE

アバター
破棄
関連投稿 返信 ビュー 活動
0
10月 24
1480
0
7月 24
1245
0
11月 23
1439
0
9月 23
2086
1
11月 22
4141