Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Trying to import Excel file and writing sale order line

Odoberať

Get notified when there's activity on this post

This question has been flagged
wizardimportsale.order.lineexcel
1 Odpoveď
5153 Zobrazenia
Avatar
Odoo4Life

Hello there,

I have been trying to import an excel into Odoo sale order line.
However, I get the following error message: https://ibb.co/bQSMbqH


The code looks as follow:

 

from odoo import api, fields, models
from odoo.exceptions import UserError, ValidationError
import logging
import tempfile
import binascii
from datetime import datetime

_logger = logging.getLogger(__name__)


try:
import xlrd
except ImportError:
_logger.debug('Cannot `import xlrd`.')



class ImportExcel(models.TransientModel):

_name = "import.excel.wizard"
_description = "Wizard to import excel data"

name = fields.Char(string='name of file')
data = fields.Binary('file')

def get_product(self, value):
product = self.env['product.template'].search([('name', '=', value)])
return product.id if product else False


def import_file(self):

_logger.debug("hello there people")
file_name = self.data.name.lower()

if file_name.strip().endswith('.xlsx'):

sale_order_view = False

if file_name.strip().endswith('.xlsx'):
try:
fp = tempfile.NamedTemporaryFile(delete=False, suffix=".xlsx")
fp.write(binascii.a2b_base64(self.data.datas))
fp.seek(0)
workbook = xlrd.open_workbook(fp.name)
sheet = workbook.sheet_by_index(0)

except:
raise UserError(_("Invalid file!"))

vals_list = []

for row_no in range(sheet.nrows):
val = {}
values = {}
if row_no <= 0:
fields = map(lambda row: row.value.encode('utf-8'), sheet.row(row_no))
_logger.debug("hello there people")
else:
line = list(map(lambda row: isinstance(row.value, bytes) and row.value.encode('utf-8') or str(row.value), sheet.row(row_no)))
values.update({
'product_id': self.get_product(line[0]),
'name': line[1],
'product_uom_qty': line[2]
})
vals_list.append((0, 0, values))

sale_order_values = {
'order_line': vals_list
}

if len(vals_list) != 0:
sale_order = self.env['sale.order'].search([('name', '=', self.env.context.get('active_id'))])
sale_order_view = sale_order.write(sale_order_values)

if sale_order_view:
return {
'type': 'ir.actions.act_window',
'res_model': 'sale.order',
'view_mode': 'form',
'res_id': sale_order_view.id,
'views': [(False, 'form')],
}
else: raise ValidationError(_("Unsupported File Type"))

Any help would be greatly appreciated.

0
Avatar
Zrušiť
Odoo4Life
Autor

Hi CorTax,

Thanks for your help. I have changed the line to the one you suggested. I do not get the error anymore.

But now the code raises UserError('couldnt create book object!').


the code is now the following:


from odoo import api, fields, models, _
from odoo.exceptions import UserError, ValidationError
import logging
import tempfile
import binascii

from datetime import datetime

_logger = logging.getLogger(__name__)


try:
import xlrd
except ImportError:
_logger.debug('Cannot `import xlrd`.')



class ImportExcel(models.TransientModel):

_name = "import.excel.wizard"
_description = "Wizard to import excel data"

data = fields.Binary('file')
name_of_file = fields.Char(string="File name")

def get_product(self, value):
product = self.env['product.template'].search([('name', '=', value)])
return product.id if product else False


def import_file(self):


file_name = self.name_of_file.lower()

sale_order_view = False

if file_name.strip().endswith('.xlsx'):
try:
fp = tempfile.NamedTemporaryFile(delete=False, suffix=".xlsx")

except:
raise UserError('couldnt create file')
try:
fp.write(binascii.a2b_base64(self.data))

except:
raise UserError('couldnt write data')
try:
fp.seek(0)
except:
raise UserError('couldnt seek 0')
values = {}
try:
workbook = xlrd.open_workbook(fp.name)

except:
raise UserError(f'couldnt create book object {fp.name}, for the following data: {self.data}')
try:
sheet = workbook.sheet_by_index(0)
except:
raise UserError('couldnt create sheet object')
#except:
#raise UserError(_("Invalid file!"))

vals_list = []

for row_no in range(sheet.nrows):
val = {}
values = {}
if row_no <= 0:
fields = map(lambda row: row.value.encode('utf-8'), sheet.row(row_no))
_logger.debug("hello there people")
else:
line = list(map(lambda row: isinstance(row.value, bytes) and row.value.encode('utf-8') or str(row.value), sheet.row(row_no)))
values.update({
'product_id': self.get_product(line[0]),
'name': line[1],
'product_uom_qty': line[2]
})
vals_list.append((0, 0, values))

sale_order_values = {
'order_line': vals_list
}

if len(vals_list) != 0:
sale_order = self.env['sale.order'].search([('name', '=', self.env.context.get('active_id'))])
sale_order_view = sale_order.write(sale_order_values)

if sale_order_view:
return {
'type': 'ir.actions.act_window',
'res_model': 'sale.order',
'view_mode': 'form',
'res_id': sale_order_view.id,
'views': [(False, 'form')],
}
else:
raise ValidationError(_("Unsupported File Type"))

Odoo4Life
Autor

Solved the issue. xlrd module doesn't work for xlsx files anymore.

Avatar
Waleed Mohsen (CorTex IT Solutions)
Best Answer

This line of code is incorrect:
file_name = self.data.name.lower()

Do you need to get the lower name for name of file? try this:
file_name = self.name.lower()

1
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Upload excel and import to sale order line Solved
import sale.order.line excel
Avatar
Avatar
1
dec 21
5383
How to import sale order Solved
import sale.order.line
Avatar
Avatar
Avatar
Avatar
3
mar 24
8947
Importing Sales Orders with Order Lines / External ID in Odoo 13
import sale.order.line
Avatar
Avatar
1
mar 21
5270
How to close a wizard window after downloading an Excel report in Odoo16?
wizard excel odoo16
Avatar
Avatar
Avatar
2
máj 24
2442
large Purchase Order excel import
import excel purchase_order
Avatar
Avatar
Avatar
Avatar
Avatar
4
máj 24
3764
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now