Skip to Content
Menú
This question has been flagged
1 Respondre
12436 Vistes

Hi;

how to create button and method to import Excel file?

Avatar
Descartar
Best Answer

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
Descartar
Related Posts Respostes Vistes Activitat
2
de set. 23
1350
1
de jul. 18
4341
0
de març 15
3948
0
de nov. 24
3936
2
de nov. 24
1216