Skip to Content
Menu
This question has been flagged
2 Replies
2572 Rodiniai

Hello.

I am trying to create an automated action that will prevent the creation of the Sales order if there is no contact selected as Customer.

Example:

Company Ltd. --> Not allowed

Company Ltd., Name Username --> Allowed

I tried with an Automated action on creation and a Python code:

x = env['sale.order'].partner_id.parent_id
 if x == false:
    raise Warning("CONTACT IS MISSING")

But it doesn't work, x is always "false". Any suggestions?


Thank you so much!

Nejc

Portretas
Atmesti
Best Answer
if not record.partner_id.parent_id:
  Warning('CONTACT IS MISSING')


Portretas
Atmesti
Best Answer

Hi,

Try this code and see,

x = rec.partner_id.parent_id
if not x:
    raise Warning("CONTACT IS MISSING")


Thanks

Portretas
Atmesti
Related Posts Replies Rodiniai Veikla
1
lapkr. 22
6291
0
saus. 21
2246
1
lapkr. 22
3436
3
vas. 25
1618
1
gruod. 24
1821