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

Thank you in advance.

We want to make the Purchase Order name automatically change when the purchase is Updated.


The new Purchase Order name should be changed to:

(1) the current Purchase Number (purchase.order) + (2) Vendor Name (partner_id)

E,g. P00082 -----> becomes P00082 Amex


What python expression should we put into Data to Write section for this automation to work?

Thanks

Avatar
Annuleer
Auteur

Thanks for your help Niyas, I got it!!!!!!


Beste antwoord

Hi,

You can add following python code:

record['name'] += '  ' + str(record.partner_id.name)

Thanks

Avatar
Annuleer
Auteur

Thank you!!!! You are a life saver!