İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

Trying to import Excel file and writing sale order line

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
wizardimportsale.order.lineexcel
1 Cevapla
5162 Görünümler
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
Vazgeç
Odoo4Life
Üretici

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
Üretici

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

Avatar
Waleed Mohsen (CorTex IT Solutions)
En İyi Yanıt

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
Vazgeç
Enjoying the discussion? Don't just read, join in!

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
Upload excel and import to sale order line Çözüldü
import sale.order.line excel
Avatar
Avatar
1
Ara 21
5391
How to import sale order Çözüldü
import sale.order.line
Avatar
Avatar
Avatar
Avatar
3
Mar 24
8949
Importing Sales Orders with Order Lines / External ID in Odoo 13
import sale.order.line
Avatar
Avatar
1
Mar 21
5273
How to close a wizard window after downloading an Excel report in Odoo16?
wizard excel odoo16
Avatar
Avatar
Avatar
2
May 24
2449
large Purchase Order excel import
import excel purchase_order
Avatar
Avatar
Avatar
Avatar
Avatar
4
May 24
3768
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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