gpt4 book ai didi

python - 如何在不使用向导的情况下从表单 View 打印 Excel 文件

转载 作者:太空宇宙 更新时间:2023-11-04 02:28:07 24 4
gpt4 key购买 nike

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

Code

# -*- 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',
}

最佳答案

target 更改为 current 或只是从您的返回中删除 key ,因为 current 是默认值。

关于python - 如何在不使用向导的情况下从表单 View 打印 Excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49852474/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com