Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
12442 Visualizações

Hi;

how to create button and method to import Excel file?

Avatar
Cancelar
Melhor resposta

Xml

<button name="import_xls" string="Import" type="object" />

Py

import base64
import xlrd
    xls_file = fields.Binary('File')

    def import_xls(self):
         wb = xlrd.open_workbook(file_contents=base64.decodestring(self.xls_file))
         for sheet in wb.sheets():
             for row in range(sheet.nrows):
                 for col in range(sheet.ncols):
                     print  (sheet.cell(row,col).value)

If helpful you , upvote this.

Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
2
set. 23
1352
1
jul. 18
4343
0
mar. 15
3951
0
nov. 24
3940
2
nov. 24
1224