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

How to read a record for each row

Subscriure's

Get notified when there's activity on this post

This question has been flagged
developement
4291 Vistes
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
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
UI All over the place
developement
Avatar
Avatar
Avatar
3
de juny 23
2979
How to set my test period account in my local odoo
developement
Avatar
Avatar
1
de set. 22
3418
developing my first app
developement
Avatar
Avatar
1
d’ag. 22
3316
How to disable the existing data suggestions when entering new one
developement
Avatar
Avatar
1
de gen. 22
5176
Begenning in odoo developement
developement
Avatar
Avatar
2
d’oct. 16
3913
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