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 !