Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
3804 Weergaven

What are the steps to reproduce your issue?
I have two fields pnumber (Char)pdate (Date)
when I'm trying to do like this
<field name="pnumber" attrs="{'required': [('pdate', '=', True)]}"/>
What is the current behavior that you observe?
But it is working if I do like this
<field name="pnumber" attrs="{'required': [('pdate', !'=', False)]}"/>
What would be your expected behavior in this case?
It should working in True value also.. as per my view
<field name="pnumber" attrs="{'required': [('pdate', '=', True)]}"/>

Avatar
Annuleer
Beste antwoord

You cant check datetime object with true if that has a value. but  in python it will accept that != False,


check this code in your python console

import datetime

x = datetime.date(2012, 9, 1)

if x == True:

     print "fail"

elif x != False or x != True:

     print "truee"


so you can check that using this code


isinstance(x, datetime.date)


Thank You

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
feb. 25
770
2
okt. 24
3688
2
jun. 24
2296
1
jun. 19
5970
0
mrt. 15
5170