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
    Rantai Pasokan
    • 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
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-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
    • Estate Management
    • 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
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
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

not able to return value after jsonrpc ajax call getting empty array

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
Odoo13.0
1 Balas
3136 Tampilan
Avatar
paidy kumar

i am trying to show records count in menus for that i am trying below codes.

please help me guys need to return value instead empty array

my xml code 

using below xml code i am calling javascript function for getting count by passing action id






  • my js code:
    getRecordsCount: function (action_id) {
    var rec_count = [];
    console.log("getRecordsCount is ");
    console.log(action_id);
    ajax.jsonRpc("/get_records_count", 'call', {'action_id': action_id},
    {'async': false}).then(function (data) {
    rec_count.push(data);
    console.log(data['count'])
    });
    console.log(rec_count)
    return rec_count


    },
    my controller file .py file
    @http.route('/get_records_count', type='json', auth='public')
    def get_records_count(self,**kw):
    count = 0
    vals = {
    "count": count
    }
    action_id = kw.get('action_id')
    data = {'status': 200, 'response': vals, 'message': 'records count Returned'}
    action_obj = request.env['ir.actions.act_window'].search([('id', '=', action_id)])
    logging.info("action_obj.xml_id %s" % action_obj.xml_id)
    if action_obj:
    # and (action_obj.xml_id == 'web_advanced_search_sale_unit.menu_sale_all_unit' or action_obj.xml_id == 'web_advanced_search_sale_unit.menu_sale_my_units'):
    domain = action_obj.domain if action_obj.domain else []
    result = isinstance(domain, list)

    if result:
    domain = []
    logging.info("domain %s" % domain)
    count = request.env[action_obj.res_model].search_count(domain)
    logging.info("count %s" % count)
    else:
    if len(domain) > 0:
    logging.info("domain in ast %s" % domain)
    try:
    domain = ast.literal_eval(domain)
    count = request.env[action_obj.res_model].search_count(domain)
    except Exception as e:
    domain = []
    count = request.env[action_obj.res_model].search_count(domain)

    else:
    domain = []
    count = request.env[action_obj.res_model].search_count(domain)

    logging.info("count %s" % count)
    vals = {
    "count": count
    }
    data = {'status': 200, 'response': vals, 'message': 'records count Returned'}
    return vals


    0
    Avatar
    Buang
    Avatar
    Jainesh Shah(Aktiv Software)
    Jawaban Terbai

    Hello paidy kumar,

     
    Please use the JS global variable like these,
    window.rec_count = []
    getRecordsCount: function (action_id) {
    console.log ("getRecordsCount is");
    console.log (action_id);
    ajax.jsonRpc ("/ get_records_count", 'call', {'action_id': action_id},
    {'async': false}). then (function (data) {
    window.rec_count.push (data);
    console.log (data ['count'])
    });
    console.log (window.rec_count)
    return window.rec_count
    },


    Thanks & Regards,
    Email: odoo@aktivsoftware.com
    Skype: kalpeshmaheshwari

    1
    Avatar
    Buang
    paidy kumar
    Penulis

    still empty array coming in logs first it is printing "getRecordsCount is" 2nd "action_id" and third it is printing before return statement log statement and finally inside ajax call log statement "data ['count']"

    paidy kumar
    Penulis

    i tried below code getRecordsCount: function (action_id) {
    var i = 0
    if(i>0){
    window.rec_count.pop();
    }
    console.log("getRecordsCount is ");
    console.log(action_id);
    console.log("2window.rec count");
    console.log(window.rec_count);
    return ajax.jsonRpc("/get_records_count", 'call', {'action_id': action_id},{'async': true})
    },

    it is returning promise object how can i get actual object please help

    paidy kumar
    Penulis

    here i am getting promise object

    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
    Odoo 13. Don't close a wizard when Click a button Diselesaikan
    Odoo13.0
    Avatar
    Avatar
    Avatar
    Avatar
    4
    Mei 24
    14222
    Permission error while user printing excel sheet report in odoo 13 Diselesaikan
    Odoo13.0
    Avatar
    Avatar
    1
    Apr 24
    4397
    One2many field edited from Transient Model cannot be made empty.
    Odoo13.0
    Avatar
    0
    Nov 23
    3083
    Blank White Page After log in to Odoo13 Diselesaikan
    Odoo13.0
    Avatar
    1
    Sep 23
    3228
    How can I translate Options in Selection.field? Diselesaikan
    Odoo13.0
    Avatar
    Avatar
    2
    Agu 23
    6033
    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
    • Tugas
    • 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 ภาษาไทย Türkçe українська Tiếng Việt

    Odoo adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

    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