Skip to Content

如何在odoo中实现点击按钮下载文件

在 Odoo 中实现点击按钮下载文件的功能步骤

1. 创建一个方法返回下载链接

在您的模块中创建一个方法,该方法返回一个包含下载链接的字典。例如:

@api.multi
def get_stock_file(self):
    return {
        'type': 'ir.actions.act_url',
        'url': '/web/binary/download_document?model=wizard.product.stock.report&field=datas&id=%s&filename=product_stock.xls' % (self.id),
        'target': 'self',
    }

在这个例子中,`url` 包含了 `model`、`field`、`id` 和 `filename` 等信息,这些信息将在控制器方法中被捕获和处理。

2. 创建控制器类捕获 URL 并下载文件

创建一个控制器类来捕获 URL 并处理文件下载。例如:

from openerp import http
from openerp.http import request
from openerp.addons.web.controllers.main import serialize_exception, content_disposition
import base64

class Binary(http.Controller):
    @http.route('/web/binary/download_document', type='http', auth="public")
    @serialize_exception
    def download_document(self, model, field, id, filename=None, **kw):
        """ Download link for files stored as binary fields.
        :param str model: name of the model to fetch the binary from
        :param str field: binary field
        :param str id: id of the record from which to fetch the binary
        :param str filename: field holding the file's name, if any
        :returns: :class:`werkzeug.wrappers.Response`
        """
        Model = request.env[model]
        fields = [field]
        res = Model.browse(int(id)).read(fields)[0]
        filecontent = base64.b64decode(res.get(field) or '')
        if not filecontent:
            return request.not_found()
        else:
            if not filename:
                filename = '%s_%s' % (model.replace('.', '_'), id)
            return request.make_response(filecontent,
                        [('Content-Type', 'application/octet-stream'),
                         ('Content-Disposition', content_disposition(filename))])

在这个控制器方法中,从 URL 中获取 ID 并返回 HTTP 响应。这个例子中下载的是一个 Excel 文件,但您可以返回任意类型的文件,甚至是数据库中的二进制字段。

3. 测试功能

在 Odoo 中添加一个按钮,调用 `get_stock_file` 方法,点击按钮后应该会触发文件下载。

通过以上步骤,您可以在 Odoo 中实现点击按钮下载文件的功能。如果需要进一步的帮助或遇到问题,可以参考 Odoo 的官方文档或社区资源。

如何在odoo中实现点击按钮下载文件
6776, Administrator November 26, 2015
Tags
Archive