Skip to Content
मेन्यू
This question has been flagged
1 Reply
12501 Views

Hi;

how to create button and method to import Excel file?

Avatar
Discard
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
Discard
Related Posts Replies Views Activity
2
सित॰ 23
1432
1
जुल॰ 18
4389
0
मार्च 15
4013
1
अग॰ 25
375
0
नव॰ 24
4044