跳至内容
菜单
此问题已终结
2 回复
3538 查看

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

 

 

 

形象
丢弃