Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

How to read a record for each row

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
developement
4330 Widoki
Awatar
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
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
UI All over the place
developement
Awatar
Awatar
Awatar
3
cze 23
3013
How to set my test period account in my local odoo
developement
Awatar
Awatar
1
wrz 22
3462
developing my first app
developement
Awatar
Awatar
1
sie 22
3337
How to disable the existing data suggestions when entering new one
developement
Awatar
Awatar
1
sty 22
5225
Begenning in odoo developement
developement
Awatar
Awatar
2
paź 16
3972
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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