Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

How to read a record for each row

Odoberať

Get notified when there's activity on this post

This question has been flagged
developement
4274 Zobrazenia
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
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
UI All over the place
developement
Avatar
Avatar
Avatar
3
jún 23
2973
How to set my test period account in my local odoo
developement
Avatar
Avatar
1
sep 22
3405
developing my first app
developement
Avatar
Avatar
1
aug 22
3283
How to disable the existing data suggestions when entering new one
developement
Avatar
Avatar
1
jan 22
5155
Begenning in odoo developement
developement
Avatar
Avatar
2
okt 16
3904
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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