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

Hi,

How to add field validation of the interface:
- a field does not accept the value 0
- a field must respect a regular expression

- ...

Thanks for your help

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

Hi,

It is simple possible using define _constraints for that field. In that you can define python function to manage validation. So, you can manage as you want llike value shouldn't "0" or value must follow any special pattern. You can define your validation as like below.

_constraints = [ _check_function, "Message of wrong entry", ['field1','field2', ... ] ]

def _chech_function(self, cr, uid, ids, context=None):

    //Your code to manage entered record.

    //You can return True to allow entered record or you can return False to deny entered record.

 

I hope this will help you.

อวตาร
ละทิ้ง

this code fully work..give up + one vote

ผู้เขียน คำตอบที่ดีที่สุด

Hello,

Thank you very much for your answer

When I issue a payment for an invoice (Customer invoice for exemple), the system accepts zero as payement value.This seems illogical to me ,I think this had to be managed by core functionnalities. and not by adding some python code..

Am new to Odoo, but I was sure that this kind of validation rules would be implemented easily (or natively)...

Thanks in advance for your clarifications.

 

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
มี.ค. 15
3577
1
มี.ค. 25
5208
1
ม.ค. 20
3446
0
ส.ค. 19
2294
3
ส.ค. 18
8907