Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Trying to import Excel file and writing sale order line

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
wizardimportsale.order.lineexcel
1 Rispondi
5123 Visualizzazioni
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
Abbandona
Odoo4Life
Autore

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
Autore

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

Avatar
Waleed Mohsen (CorTex IT Solutions)
Risposta migliore

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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Upload excel and import to sale order line Risolto
import sale.order.line excel
Avatar
Avatar
1
dic 21
5362
How to import sale order Risolto
import sale.order.line
Avatar
Avatar
Avatar
Avatar
3
mar 24
8929
Importing Sales Orders with Order Lines / External ID in Odoo 13
import sale.order.line
Avatar
Avatar
1
mar 21
5263
How to close a wizard window after downloading an Excel report in Odoo16?
wizard excel odoo16
Avatar
Avatar
Avatar
2
mag 24
2414
large Purchase Order excel import
import excel purchase_order
Avatar
Avatar
Avatar
Avatar
Avatar
4
mag 24
3752
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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