Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
3532 Tampilan

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?

Avatar
Buang

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

Penulis Jawaban Terbai

Thanks Kasim,

Can u tell me how to browse using that ID?

Regards...

Avatar
Buang

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

Jawaban Terbai

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

 

 

 

Avatar
Buang