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)]}"/>
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- Müşteri İlişkileri Yönetimi
- e-Commerce
- Muhasebe
- Envanter
- PoS
- Project
- MRP
Bu soru işaretlendi
1
Cevapla
3766
Görünümler
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
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Üye Olİlgili Gönderiler | Cevaplar | Görünümler | Aktivite | |
---|---|---|---|---|
|
0
Ağu 25
|
52 | ||
|
0
Ağu 25
|
7 | ||
|
0
Şub 25
|
744 | ||
|
2
Eki 24
|
3629 | ||
Removeing attrs in 17.0
Çözüldü
|
|
2
Haz 24
|
2153 |