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 ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客戶關係
- e-Commerce
- 會計
- 庫存
- PoS
- Project
- MRP
此問題已被標幟
2
回覆
3191
瀏覽次數
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)
相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
---|---|---|---|---|
|
0
10月 24
|
1479 | ||
|
0
7月 24
|
1241 | ||
|
0
11月 23
|
1436 | ||
|
0
9月 23
|
2082 | ||
|
1
11月 22
|
4141 |
yes i did but still not working