Help

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

How can the project be linked to a sale order after creating the project?

Avatar
odoo
Avatar
Discard
1 Answer
0
Avatar
odoo
Best Answer

hi, 

you can still attribute a order line to the project and it will automatically be associated to the related order.

You only need to display sale_line_id if form view and attribute a line like this: 

hope this helps.

3 Comments
Avatar
Discard
Avatar
odoo
-

I try to link it this way, but the following message appears
"The operation cannot be completed: An FSM project must be billed at task rate or employee rate."

Avatar
odoo
-

It's because your project is a Field service Project.
check the constraint in python to see the related conditions for that message:

('fsm_imply_task_rate', "CHECK((is_fsm = 't' AND sale_line_id IS NULL) OR (is_fsm = 'f'))", 'An FSM project must be billed at task rate or employee rate.'),

Avatar
odoo
-

Thank you for replying, it is Done