Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Trying to import Excel file and writing sale order line

Subscriure's

Get notified when there's activity on this post

This question has been flagged
wizardimportsale.order.lineexcel
1 Respondre
5119 Vistes
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
Descartar
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
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Upload excel and import to sale order line Solved
import sale.order.line excel
Avatar
Avatar
1
de des. 21
5361
How to import sale order Solved
import sale.order.line
Avatar
Avatar
Avatar
Avatar
3
de març 24
8926
Importing Sales Orders with Order Lines / External ID in Odoo 13
import sale.order.line
Avatar
Avatar
1
de març 21
5261
How to close a wizard window after downloading an Excel report in Odoo16?
wizard excel odoo16
Avatar
Avatar
Avatar
2
de maig 24
2411
large Purchase Order excel import
import excel purchase_order
Avatar
Avatar
Avatar
Avatar
Avatar
4
de maig 24
3752
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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