콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다

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
2월 21
7007
0
4월 24
1820
4
11월 23
5854
0
10월 23
1665
0
12월 22
2540