Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
6977 มุมมอง

I dont want to create data because i want to make error checking before it create the data.. So it show the notification before creating the data

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

If you are looking to add some constrains before saving or creating new record, you can use the constrains in odoo or override the create method and show the warning.

See how to use Constrains:

@api.constrains('model_id')
def _check_model_name(self):
# Don't allow rules on rules records (this model).
if any(rule.model_id.model == self._name for rule in self):
raise ValidationError(_('Rules can not be applied on the Record Rules model.'))

Overriding Create Method:

@api.model
def create(self, values):
if not values.get('login', False):
action = self.env.ref('base.action_res_users')
msg = _("You cannot create a new user from here.\n To create new user please go to configuration panel.")
raise exceptions.RedirectWarning(msg, action.id, _('Go to the configuration panel'))

user = super(Users, self).create(values)
# Auto-subscribe to channels
self.env['mail.channel'].search([('group_ids', 'in', user.groups_id.ids)])._subscribe_users()
return user


So depending On your use case, either you can show some warning or notification if some conditions/criteria is not satisfied from the create method or from the constrains.


Thanks

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
มี.ค. 20
3755
0
มิ.ย. 22
790
1
มี.ค. 20
4383
0
มี.ค. 23
1079
1
มิ.ย. 22
1468