我想要一个示例代码,用于将数据从odoo加载到前端网站。 例如,我想在Odoo 8中的前端网站上加载客户名称。
答案 0 :(得分:0)
request.env['res.partner'].sudo().search([('customer','=',True)])
在模板上渲染结果
class MyController(http.Controller):
@http.route('/my/customers/', auth='public')
def my_customers(self, **kw):
customers = request.env['res.partner'].sudo().search([('customer','=',True)])
return http.request.render('mymodule.customerlist', {
'customers': customers
})
这里
您还可以在
中阅读资源列表希望它对您的情况有所帮助。