Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Differ context on test import and real import

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
importcsvimporting data from excel fileodoo11
1 Răspunde
6296 Vizualizări
Imagine profil
rehan

Hello everyone, i am trying to sync my Odoo application with an external app. When I import products pricelist with items by CSV, I need to then upload/sync the products pricelist item to this external app. For this, i need to overwrite the write method in Odoo, to perform the pricelist sync between odoo and external app.

However, when I run the Test Import, the write method is called anyways and so is my external upload method. Is there a way I can differ when the method are being called by a test or an actual import?


i've found the similiar question here: https://www.odoo.com/forum/help-1/question/differing-testing-import-and-actually-importing-143184

i've tried the similiar action but the return always False even im doing the real import, can you help me please?

result = super(ProductPricelistMBS, self.with_context(test_import=True)).write(values)
sync_import = self._context.get('test_import', False)
print(sync_import, "??????????????????????????????????????????????????")
0
Imagine profil
Abandonează
Imagine profil
rehan
Autor Cel mai bun răspuns

i found the answer, i need to do like this

class ImportInherit(models.TransientModel):
    _inherit = 'base_import.import'

    @api.multi
    def do(self, fields, options, dryrun=False):
        if 'test_import' not in self._context:
            res = super(ImportInherit, self).with_context(test_import=dryrun).do(fields, options, dryrun)
        else:
            res = super(ImportInherit, self).do(fields, options, dryrun)
        return res

then on my model check the context

result = super(ProductPricelistMBS, self).write(values)
test_import = self._context.get('test_import')
if not test_import:
    # statement to webhook external API
1
Imagine profil
Abandonează
Oleksiy Stepaniuk

Thanks a lot!
In Odoo 16+ it looks like this:

```
from odoo import models

class ImportInherit(models.TransientModel):
_inherit = 'base_import.import'

def execute_import(self, fields, columns, options, dryrun=False):
if 'test_import' not in self._context:
res = super(ImportInherit, self).with_context(test_import=dryrun).execute_import(fields, columns, options, dryrun)
else:
res = super(ImportInherit, self).execute_import(fields, columns, options, dryrun)
return res
```

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

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Import csv file with related field other than id, external id, name
import csv importing data from excel file
Imagine profil
Imagine profil
Imagine profil
Imagine profil
4
nov. 24
12735
Disable automatic follow when importing res.partner csv
import csv
Imagine profil
Imagine profil
Imagine profil
3
iun. 20
4867
Enable/disable import rights?
import csv
Imagine profil
Imagine profil
1
nov. 18
10373
'utf8' codec can't decode byte error when importing a list of products as a CSV file Rezolvat
import csv
Imagine profil
Imagine profil
Imagine profil
Imagine profil
Imagine profil
11
feb. 17
64890
Import contacts through CSV Rezolvat
import csv
Imagine profil
Imagine profil
2
mar. 15
11972
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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