Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Guest House
    • Distributeur de boissons
    • Hotel
    Real Estate
    • Real Estate Agency
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consulting
    • Accounting Firm
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Solar Energy Systems
    • Cordonnier
    • Services de nettoyage
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

A Question About the rpc.query

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
rpcwebsitefrontendsnippets
1 Répondre
3129 Vues
Avatar
Anıl Can

Hello everyone. I am using the rpc.query to get the records in my database. I am using the records to create a simple checkbox for my snippet but if a user has no access rights related to the model, the user cannot see the checkbox. Is there any way the ignore these rights or another way to get the records?



rpc.query({
                    model: 'ais.task',
                    method: 'search_read',
                    args: [domain, ['name', 'contractor_name', 'id','geo_multipolygon']],
                }).then(function (data) {
                    var mydata = {
                        "type": "FeatureCollection",
                        "features": [
                            {
                                "type": "Feature",
                                "properties": {},
                                "geometry": {
                                    "type": "MultiPolygon",
                                    "coordinates": []
                                }
                            }
                        ]
                    }
                    for(let i=0; i < data.length;i++)
                    {
                        data[i].geo_multipolygon = JSON.parse(data[i].geo_multipolygon);
                       
                        for(let j = 0; j < data[i].geo_multipolygon.coordinates[0][0].length; j++)
                        {
                            var p = {x: data[i].geo_multipolygon.coordinates[0][0][j][0], y: data[i].geo_multipolygon.coordinates[0][0][j][1]};
                            var result = proj4(source, dest, p);//Kordinat dönüşümü
                            data[i].geo_multipolygon.coordinates[0][0][j][0] = result.x
                            data[i].geo_multipolygon.coordinates[0][0][j][1] = result.y
                        }
                        mapinfo.push({"id": data[i].id, "project_name": data[i].name[1], "contractor_id": data[i].contractor_name[0], "contractor_name": data[i].contractor_name[1],"coordinates": data[i].geo_multipolygon.coordinates})
                    }
                    $( ".mycontainer" ).remove();
                    const html = `
                        <div id="asd" class ="mycontainer">
                            <div class="head-container">
                                <p class="head-title">Yüklenciler</p>
                                <hr></hr>
                            </div>
                            <div class="body-container">
                                <ul class="main-list">
                                </ul>
                            </div>
                        </div>
                    `
                    var contractors_list = []
                   
                    function checkbox_items()
                    {
                        $('#map').after(html);
                       
                        for(let i=0; i < mapinfo.length; i++)
                        {
                            let index = contractors_list.findIndex( elm => elm.id == mapinfo[i].contractor_id)
                            if(index === -1)
                            {
                               
                                var contractor_html = `
                                <li>
                                    <label class="checkbox-label">
                                        <input class="not-last-item" id="`+ mapinfo[i].contractor_id.toString() +`"type="image" src="ybs/static/src/img/add-line.svg" />
                                        <input type="checkbox" id="contractor`+ mapinfo[i].contractor_id.toString() + `" />
                                        ` + mapinfo[i].contractor_name + `
                                    </label>
                                    <ul id="parent-contractor`+ mapinfo[i].contractor_id.toString() + `" class="sub-list">
                                        <li>
                                            <label class="checkbox-label">
                                                <input type="checkbox" id="task` + mapinfo[i].id.toString() +`"/>
                                                ` + mapinfo[i].project_name + `
                                            </label>
                                        </li>
                                    </ul>
                                </li>
                                `
                                $('.main-list').append(contractor_html);
                                contractors_list.push({ 'name': mapinfo[i].contractor_name, 'id': mapinfo[i].contractor_id})
                            }
                            else
                            {
                                contractor_html = `
                                <li>
                                   
                                    <label class="checkbox-label">
                                        <input type="checkbox" id="task` + mapinfo[i].id.toString() +`"/>
                                            ` + mapinfo[i].project_name + `
                                        </label>
                                </li>
                                `
                                var selector = '#parent-contractor' + mapinfo[i].contractor_id.toString();
                                $(selector).append(contractor_html);
                               
                            }
                        }
                       
                       
                    }
                    checkbox_items();
0
Avatar
Ignorer
Avatar
Jainesh Shah(Aktiv Software)
Meilleure réponse

Hello anil can,


While running rpc.query we directly deal with database. so, access rights can't create any issue..
can you share more detail about for better understanding?

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

0
Avatar
Ignorer
Anıl Can
Auteur

Thank you for replying. I add my js code into te my question.I am using above the code.If I have no access right "ais.task" and I check the cmd console I see the "This operation is allowed for the following groups: - Yönetim Bilgi Sistemi/Tam Yetklili Yönetici".then I am giving this group to myself then I can see the checkbox.

Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
How to overwrite a paste event in the website editor for a snippet (Odoo 16) Résolu
website snippets eventlistener
Avatar
1
oct. 23
2667
Only certain user can see the portion of the website page
website odoo frontend
Avatar
Avatar
Avatar
2
août 23
278
[V8] How to Implement Grouping Feature in the Odoo Front End Website?
website frontend odoo8.0
Avatar
Avatar
2
juin 16
4594
How to control the location of the snippet as a section or an inner content in a section? Résolu
website snippets v14 snippet
Avatar
1
juil. 23
4858
Search bar dropdown result dissapears inside the banner
html css website frontend
Avatar
0
mars 23
207
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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