Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
1 Antworten
5206 Ansichten

Hi,

I added a compute field and do the calculation in function through when quantity is 0 or less than 0 popup error message. but when I go back trying to open form view I can't open the because error message comes.

I need to know is there any possibility to pop up an error message when I used to compute field.




Avatar
Verwerfen
Beste Antwort

Hi Dishan,


Try to write an onchange function instead. So the function will only trigger when the value in your field is changed. Also make sure you add a check to not show the error when there is no value in the field.


@api.onchange('value')
def _onchange_value(self):
if self.value:
if self.value <= 0:
raise UserError("Error")
          
Avatar
Verwerfen

How can this be done in the front end while creating a custom field

Verknüpfte Beiträge Antworten Ansichten Aktivität
2
Feb. 24
15648
1
Dez. 22
5074
2
Dez. 22
14587
2
Juni 22
6467
2
Juni 22
4802