Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Discuss
    • Kecerdasan Buatan
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Manajemen Properti
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Konsultasi
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

get current url for transient model define its possible?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
URL
1 Balas
3299 Tampilan
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
Buang
Avatar
Gaston Carrera
Penulis Jawaban Terbai

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
Buang
Gaston Carrera
Penulis

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

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
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
Agu 23
3313
How to pass external UserID to Odoo Online Webshop and store it in the Sales Order Diselesaikan
webshop URL
Avatar
Avatar
1
Jun 25
1639
SEO problem. 403 errors, 404 errors and URL parameters
URL SEO
Avatar
Avatar
1
Mar 25
3089
connect to external URL Diselesaikan
website URL
Avatar
Avatar
Avatar
3
Nov 24
7222
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Karir
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah software terintegrasi dengan 70+ aplikasi seperti CRM, Akuntansi, Inventaris, Sales, eCommerce, Marketing, POS; plus fitur lokal Indonesia!

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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