Hi;
how to create button and method to import Excel file?
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.
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng ký| Bài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
|---|---|---|---|---|
|
2
thg 9 23
|
2760 | |||
|
1
thg 7 18
|
5906 | |||
|
0
thg 3 15
|
5484 | |||
|
1
thg 8 25
|
2552 | |||
|
0
thg 11 24
|
6042 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.