Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
3674 Переглядів

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 !

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
2
лют. 21
6972
0
квіт. 24
1783
4
лист. 23
5834
0
жовт. 23
1611
0
груд. 22
2505