Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
3541 Представления

Friends,

I changed the sale_view.xml as per the requirments.I have to bind the field referred(Object:crm.lead) from the Opportunities to this report.Can you say how it is possible?

Аватар
Отменить

is it a RML/Q-Web/MAKO report? You need to find what report to modify.

Автор Лучший ответ

Thanks Kasim,

Can u tell me how to browse using that ID?

Regards...

Аватар
Отменить

Which field od crm.lead you want there in sale order. like if its a field_x Then you have to use browse method : def create(self, cr, uid, vals ,context=None): res = super(sale_order,self).create(cr, uid, vals) crm_obj = self.pool.get('sale.order') origin = self.browse(cr, uid,ids)[0].origin origin = origin.split('_', 1)[-1] #origin is the id of the crm.lead #for get any field value from crm.lead of perticuler id field_y_value = crm_obj.browse(cr, uid, origin)[0].field_y # now you can pput this field value in your custom field in sale order Thnkz

Лучший ответ

Hello Abin

When ever you create a Quotation from crm.lead it will set the "Source Document" : "Quatation NUMBER"

"Source Document" : "Quatation NUMBER" Number will be ID of CRM.LEAD

No what you have to do is tou have to get the ID of that crm.lead and then you have to now get use BROWSE method with that ID.

Please don't hesitate to ask any question regarding this.

If you get the answer as you need then please accept the answer.

Thank You

 

 

 

Аватар
Отменить