跳至内容
菜单
此问题已终结
2 回复
3706 查看

Hi everybody,

I'm trying to add an "if" request in my invoice report but I can't find the correct syntax.

I have companies and contacts (who are not linked to a company). I have a number (x_nocompany) for each company and a personal number (ref) for each contact.

What I want to do is if the invoice is for a company then the company number appear else if the invoice is for a contact then the contact number appear.

Now my code is the following :

[[ (o.partner_id.ref=='') and (o.partner_id.x_nocompany) or (o.partner_id.ref) ]]

Someone could help me ?

Many thanks in advance.

JMB

形象
丢弃
最佳答案

Hey

try this

 [[ (o.partner_id.ref) or (o.partner_id.x_nocompany) or (o.partner_id.ref) ]]

Thanks

形象
丢弃
编写者

It works perfectly! Thanks :)

最佳答案

Maybe:

[[ o.partner_id.x_nocompany or o.partner_id.ref ]]
形象
丢弃