【问题标题】:How to print an excel file from form view without using wizard如何在不使用向导的情况下从表单视图打印 Excel 文件
【发布时间】:2018-09-25 21:47:05
【问题描述】:

我需要在不使用向导的情况下从表单视图打印一个 excel 文件。问题是当按下generate_bt 时,相同的表单视图会显示为一个框。

代码

# -*- coding: utf-8 -*-

from odoo import models, fields, api
from odoo.tools.translate import _
from odoo.exceptions import UserError, AccessError
from datetime import datetime, timedelta
import dateutil.parser
import base64
import xlwt
from cStringIO import StringIO
from pprint import pprint
import logging
from openerp import tools
_logger = logging.getLogger(__name__)


class SerialNumberXls(models.Model):
    _inherit = 'stock.picking'
    excel_file = fields.Binary(string='Download Report Excel',readonly="1")
    file_name = fields.Char(string='Excel File',readonly="1")

    def generate_bt(self):
        workbook= xlwt.Workbook(encoding="UTF-8")
        filename='SerialNumbers.xls'
        sheet= workbook.add_sheet('Serial Number',cell_overwrite_ok=True)
        style = xlwt.easyxf('font:name Arial,height 200;')
        style2 = xlwt.easyxf('font:name Arial,height 200,bold True;align: horiz center, vert center;')
        style_filter = xlwt.easyxf('font:name Arial; align: horiz center, vert center;')
        style_normal_left = xlwt.easyxf('font:name Arial; align: horiz left, vert center;')
        style_normal_right = xlwt.easyxf('font:name Arial; align: horiz right, vert center;')
        row = 0
        col = 0

        for line in self.move_lines:
            print "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
            for product in line.quant_ids:
                print "SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS"
                col = 0
                product_id = product.product_id and product.product_id.name or False
                sl_no = product.lot_id and product.lot_id.name or False
                sheet.write(row,col,product_id,style)
                col = col + 1
                sheet.write(row,col,sl_no,style)
                row = row + 1

        fp = StringIO()
        workbook.save(fp)
        excel_file = base64.encodestring(fp.getvalue())
        self.excel_file = excel_file
        self.file_name =filename
        fp.close()  

        return {
          'view_type': 'form',
          "view_mode": 'form',
          'res_model': 'stock.picking',
          'res_id': self.id,
          'type': 'ir.actions.act_window',
          }

【问题讨论】:

    标签: python odoo odoo-10 xls xlwt


    【解决方案1】:

    target 更改为current 或从您的退货中删除密钥,因为current 是默认设置。

    【讨论】:

    • 我尝试删除密钥并将target 设置为current。但是在加载之后,没有文件被生成。单击该按钮时如何自动下载该文件?
    • 也许that 会帮助你。
    猜你喜欢
    • 1970-01-01
    • 2010-11-04
    • 2016-10-08
    • 1970-01-01
    • 1970-01-01
    • 2022-01-10
    • 1970-01-01
    • 1970-01-01
    • 2020-12-15
    相关资源
    最近更新 更多