123456789101112131415161718 |
- # -*- coding: utf-8 -*-
- from openerp.http import request as r
- def get_res_store_widget():
- query = '''
- SELECT id,
- name
- FROM res_store
- '''
- r.cr.execute(query)
- return [
- {
- 'id': j[0],
- 'name': j[1],
- } for j in r.cr.fetchall()
- ]
|