Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
3533 Widoki

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?

Awatar
Odrzuć

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

Autor Najlepsza odpowiedź

Thanks Kasim,

Can u tell me how to browse using that ID?

Regards...

Awatar
Odrzuć

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

Najlepsza odpowiedź

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

 

 

 

Awatar
Odrzuć