Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • E-learning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Sociale media-marketing
    • E-mailmarketing
    • Sms-marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Artificiële Intelligentie
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelwinkel
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Horeca & Hospitality
    • Bar en café
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van mede-eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brouwerij
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Diensten
    • Klusjesman
    • IT-hardware & ondersteuning
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Alle bedrijfstakken bekijken
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijsprogramma
    • Scale Up! Business Game
    • Odoo bezoeken
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Partner worden
    • Diensten voor partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

get current url for transient model define its possible?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
URL
1 Beantwoorden
3293 Weergaven
Avatar
Gaston Carrera

(Odoo v.12)

Good morning, i wanna ask for the next:

 

I got a Transient Model, what have to read another model. This Transient Model its explicity writed for work with one model what i call "empresa.modelo1". This Transient Model its called "modelo1.datos".

 

I create already 2 transients for 2 models:

model1 "empresa.model1"

transient1 "model1.datos"

model2 "empresa.model2"

transient2 "model2.datos"

 

The Transient Model makes always the same, in the Tree View of "modelo1" i put a button, which  if you select diferents rows in tree view and click pop a window (transient model) with a field "campo" where you write the field name that you want to search, and by a "onchange" function refresh the "texto" (text field) with all the values of that field in all the selected rows.

 

 

The transient "model1.datos" have:

 

campos_disponibles=fields.Text (shows all the fields names of "empresa.model1")

campo=fields.Char here you write the name of field what wants search his value in "empresa.modelo1" selected rows 

 

texto=fields.Texto this field fills with all the results.

 

 

@api.onchange("campo")

def set_texto(self):

​ ​search in "model1" the actives ids, and write the data in self.texto

​ ​resul=self.env['empresa.modelo1'].search( active ids  )

​​for rec in resul​:

​ ​ ​ ​self.texto+=rec[self.campo]+'\n'

 

The case its that for not repite for all models this transient model, i wish could make a generic transient model wich read the actual "active_model" and use that for define himself, (but i havent acces to  "self.env" or "self._context" what i actually use for read the url).

 

 

class ExportaDatos(models.TransientModel):

    """Wizard to update a manual goal"""

    _name = 'exporta.datos'

    _description = 'Exportar Datos'

 

    current_url=http .request.httprequest.url #Traté de sacar así la url

    curr1=current_url[current_url.find('active_model=')+len('active_model='):]

    activemodel=curr1[:curr1.find('&')]

 

    campos_disponibles=fields.Text('Campos disponibles')

    campo=fields.Char('Campo a Buscar')

    texto = fields.Text(string="Datos Exportados")

    ids_lines=fields.One2many('ids_exporta.lines', 'elem_id', string='Ids seleccionados')

 

    @api.onchange('campo')

    def set_texto(self):

 

        current_url = http .request.httprequest.url

        curr1 = current_url[current_url.find('active_model=') + len('active_model='):]

 

        activemodel = curr1[:curr1.find('&')]

        revisap = self.env[activemodel].browse(self._context.get('active_ids'))

        RESEARCH=False

        if revisap:

            h0=0

            for rec in revisap:

                if h0==0:

                    if self.campo in rec.fields_get():

                        RESEARCH=True

                else:

                    break

                h0+=1

            if RESEARCH:

                texto = ''

                for rec in revisap:

                    if self.campo in rec.fields_get():

                        if rec[self.campo]:

                            prev1 = str(rec[self.campo])

                            texto += prev1 + '\n'

 

                self.texto = texto

 

    @api.model

    def default_get(self, fields):

 

        current_url = http .request.httprequest.url

        curr1 = current_url[current_url.find('active_model=') + len('active_model='):]

 

        activemodel = curr1[:curr1.find('&')]

        resul = super(ExportaDatos, self).default_get(fields)

        revisap = self.env[activemodel].browse(self._context.get('active_ids'))

        resul['campo']='tel'

        res = self.env[activemodel].search([], limit=1)

        h0 = 0

        for Field in res.fields_get():

            if h0 == 0:

                resul['campos_disponibles'] = 'Campos para extraer:\n' + Field + ' (%s)' % str(res[Field])

            else:

                resul['campos_disponibles'] += '\n' + Field + ' (%s)' % str(res[Field])

            h0+=1

 

        if revisap:

            texto=''

            resul['ids_lines']=[]

            for rec in revisap:

                resul['ids_lines'].append((0,0,{'id_model':rec.id,'elem_id':self.id }))

                if 'tel' in revisap.fields_get():

                    if rec.tel:

                        texto+=prev1+'\n'

 

                elif 'name' in revisap.fields_get():

                    texto+=prev1+'\n'

 

 

            resul['texto']=texto

 

 

        return resul

 

 

 

class ListaExportarIds(models.TransientModel):

    """Wizard to update a manual goal"""

    _name = 'ids_exporta.lines'

    _description = 'Ids a utilizar'

 

    current_url = http .request.httprequest.url

    curr1 = current_url[current_url.find('active_model=') + len('active_model='):]

 

    activemodel = curr1[:curr1.find('&')]

 

    id_model = fields.Many2one(activemodel, string="ID elem")

    elem_id=fields.Many2one('exporta.datos', string='lista_ids')

 


0
Avatar
Annuleer
Avatar
Gaston Carrera
Auteur Beste antwoord

I could solve my problem!, finally choose to avoid the use of all Many2one and One2many in the transients models, so i could use one only transient model for all the models.  


Thanks!

0
Avatar
Annuleer
Gaston Carrera
Auteur

i dont know how close this answer solved, if some mod can help me?

Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
I would like to capture data from a URL into a form on a webpage
URL
Avatar
0
okt. 24
2843
Change the URL of Odoo project
URL
Avatar
0
aug. 23
3312
How to pass external UserID to Odoo Online Webshop and store it in the Sales Order Opgelost
webshop URL
Avatar
Avatar
1
jun. 25
1639
SEO problem. 403 errors, 404 errors and URL parameters
URL SEO
Avatar
Avatar
1
mrt. 25
3089
connect to external URL Opgelost
website URL
Avatar
Avatar
Avatar
3
nov. 24
7221
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Partner worden
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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