تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
3680 أدوات العرض

I'm using odoo version 8 and I would like to call web service and get list of product from another application so I add a new button : 

 <record id="product_template_form_view" model="ir.ui.view">

<field name="name">product.template.common.form</field>

<field name="model">product.template</field>

 [...]

<form string="Product">
[...]

<button class="oe_stat_button" string="Disponibilité" name="disponibilite_object" type="object" icon="fa-search"/>
-----------------------------------------------------------------
After that I declared a new function in :
-----------------------------------------------------------------

class product_template(osv.osv):

@api.one

def disponibilite_object(self):

ntlm = WindowsHttpAuthenticated(username='xxxx', password='yyyy')

url = 'http://Web Service url'

client = Client(url, transport=ntlm)

result = client.service.Read(Serial_No='00001')

print result # the result is printed on the console just to test it and I will remove it later
------------------------------------------------------------------------------------------------
So I want to create a view to display the list which is returned by the Web Service, Please help me !

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
2
فبراير 21
6992
0
أبريل 24
1800
4
نوفمبر 23
5841
0
أكتوبر 23
1636
0
ديسمبر 22
2520