I am trying to create a task from a new quotation which copies its products as text to task description automatically.
I have a server action setup that is triggered by an automated action.
The automated action is triggered when a Quotation gets created.
The server action Base is set to "Sales Order" and I have it set to "Create or Copy a new Record" and Creation Policy is set to "Create a new record in another model".
My Target Model is set to "Task"
Value mapping is set as:
Field | Evaluation Type | Value | |
---|---|---|---|
Task Title | Python expression | 'FW order - '+object.partner_id.name | |
Description | Python expression | object.product_id.name | |
Project | Python expression | 34 |
Everything is working so far except the Description part. Python expression: object.product_id.name is only getting the first product value of the quotation. I want it to get every product. How can this be done?
Did you succeed in solving your problem?