Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

How to read a record for each row

Naroči se

Get notified when there's activity on this post

This question has been flagged
developement
4315 Prikazi
Avatar
José Antonio

how to read a record of each row by row from the database of the module I create from the products in python? I need a help and I am new programming in odoo.


This is my code 


class ImportFile(models.TransientModel):    _name = 'import.file'    _description = 'Importar Archivo de Excel de Mercado Libre'
    # formatos del archivo de excel para la importación desde la aplicación
    file_type = fields.Selection(        [('CSV', 'Archivo CSV'), ('XLS', 'Archivo XLS')], string='Tipo de Archivo', default='CSV')    file = fields.Binary(string="Cargar Archivo")
    def import_file(self):        if not self.file:            raise ValidationError(                _("Por favor seleccione el formato válido para importar!"))
        # Para el formato CSV
        if self.file_type == 'CSV':            line = keys = ['code_meli', 'name',                           'price', 'quantity', 'currency_id',                           'shipping_method', 'listing_method', 'fee_per_sale',                           'status']            try:                csv_data = base64.b64decode(self.file)                data_file = io.StringIO(csv_data.decode("utf-8"))                data_file.seek(0)                file_reader = []                csv_reader = csv.reader(data_file, delimiter=',')                file_reader.extend(csv_reader)            except Exception:                raise ValidationError(                    _("Por favor seleccione el formato CSV válido para importar"))
            values = {}            for i in range(len(file_reader)):                field = list(map(str, file_reader[i]))                values = dict(zip(keys, field))                if values:                    if i == 0:                        continue                    else:                        res = self.create_menu(values)        else:            # Para el formato XLSX            try:                file = tempfile.NamedTemporaryFile(                    delete=False, suffix=".xlsx")                file.write(binascii.a2b_base64(self.file))                file.seek(0)                values = {}                # Variable para la búsuqeda del archivo                open_file = xlrd.open_workbook(file.name)                # La hoja donde empieza a leer la data del archivo                sheet = open_file.sheet_by_index(2)            except Exception:                raise ValidationError(                    _("Por favor seleccione el formato XLSX válido para importar!"))
            # Empezar a leer la data del archivo desde la fila 0, columna 3            for row_no in range(3, sheet.nrows):                val = {}                if row_no <= 0:                    fields = list(                        map(lambda row: row.value.encode('utf-8'), sheet.row(row_no)))                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({                        'code_meli': line[0],                        'name': line[2],                        'quantity': line[4],                        'price': line[5],                        'currency_id': line[6],                        'shipping_method': line[7],                        'listing_type': line[8],                        'fee_per_sale': line[9],                        'status': line[10],                    })                    res = self.create_menu(values)
    def create_menu(self, values):        menu = self.env['mercado_libre_connector.menu']        currency_id = self.get_currency_id(values.get('currency_id'))
        vals = {            'code_meli': values.get('code_meli'),            'name': values.get('name'),            'currency_id': currency_id.id,            'price': values.get('price'),            'quantity': values.get('quantity'),            'shipping_method': values.get('shipping_method'),            'listing_type': values.get('listing_type'),            'fee_per_sale': values.get('fee_per_sale'),            'status': values.get('status'),        }
        if values.get('code_meli') == '':            raise UserError(_('El Codigo ML debe tener información !'))        if values.get('name') == '':            raise UserError(_('El nombre del producto es Requerido !'))        if values.get('quantity') == '':            raise UserError(                _('La cantidad del producto no debe estar vacio!'))
        res = menu.create(vals)        return res
    def get_currency_id(self, name):        currency_id = self.env['res.currency'].search(            [('name', '=', name)], limit=1)        if currency_id:            return currency_id        else:            raise UserError(_('El precio tiene que ser en U$S o Bs.'))

Can anyone help me on this one? Please I new for odoo's development on python

0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
UI All over the place
developement
Avatar
Avatar
Avatar
3
jun. 23
2997
How to set my test period account in my local odoo
developement
Avatar
Avatar
1
sep. 22
3437
developing my first app
developement
Avatar
Avatar
1
avg. 22
3327
How to disable the existing data suggestions when entering new one
developement
Avatar
Avatar
1
jan. 22
5179
Begenning in odoo developement
developement
Avatar
Avatar
2
okt. 16
3913
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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