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

I have a problem in checking multiple conditions in my openoffice report for openerp in my report i need to check conditions and prints the results.

my condition is.

[[ (l.invoice_line_tax_id.name[0] =='5 %' )and formatLang(l.price_unit /1.05) or (l.invoice_line_tax_id.name[0] == '14.5 %') and formatLang(l.price_unit/1.44) or formatLang(l.price_unit) ]]

in this first check tax name == '5 %' then print l.price_unit/1.05 then evaluate the or condition if tax name == '14.5 %' prints the value of l.price_unit/1.44, else print l.price_unit.

But there is a problem in my report it works fine when tax name == '5 %' and print its corresponding value, then it evaluate the false condition by printing the else value (l.price_unit) , It does n't evaluate the or condition (or (l.invoice_line_tax_id.name[0] == '14.5 %') and formatLang(l.price_unit/1.44)) .Any one please help me to find the solutions.

Avatar
Annuleer
Beste antwoord

Hello

Why will OR condition would work if your 1st condition already statisfied?

(l.invoice_line_tax_id.name[0] =='5 %' )and formatLang(l.price_unit /1.05) is true then or condition wont work.

in case (l.invoice_line_tax_id.name[0] =='5 %' )and formatLang(l.price_unit /1.05)=False

your OR (l.invoice_line_tax_id.name[0] == '14.5 %') and formatLang(l.price_unit/1.44) will work

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
okt. 24
886
0
aug. 24
828
0
jan. 24
1362
1
nov. 23
1073
0
jun. 23
1469