Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3732 Lượt xem

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 !

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 2 21
7152
0
thg 4 24
1884
4
thg 11 23
6013
0
thg 10 23
1759
0
thg 12 22
2647