Hi;
how to create button and method to import Excel file?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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.
| 관련 게시물 | 답글 | 화면 | 활동 | |
|---|---|---|---|---|
|
2
9월 23
|
2071 | |||
|
1
7월 18
|
5151 | |||
|
0
3월 15
|
4702 | |||
|
1
8월 25
|
1522 | |||
|
0
11월 24
|
5069 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.