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
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • 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
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • 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

KeyNotFoundError: Cannot find key "distribution_location_partner_form_view" in the "views" registry

S'inscrire

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

Cette question a été signalée
jsPOSOdoov18
361 Vues
Avatar
Walter

<?xml version="1.0" encoding="UTF-8"?>

<odoo>

    <data>

        <record id="res_partner_form_view_inherit" model="ir.ui.view">

            <field name="name">res.partner.form.view.inherit</field>

            <field name="model">res.partner</field>

            <field name="inherit_id" ref="base.view_partner_form" />

            <field name="arch" type="xml">

                <xpath expr="//form" position="attributes">

                    <attribute name="js_class">distribution_location_partner_form_view</attribute>

                </xpath>

            </field>

        </record>

    </data>

</odoo>



/** @odoo-module */


import { rpc } from '@web/core/network/rpc'

import { registry } from "@web/core/registry"

import { useService } from "@web/core/utils/hooks"

import { FormController } from "@web/views/form/form_controller"

import { formView } from "@web/views/form/form_view"


class ResPartnerFormController extends FormController {

    setup() {

        super.setup()

        this.notification = useService("notification")

    }


    // 📸 Existing feature: location + photo upload

    async onLocationClick() {

        const currentRecord = this.model.root.data

        const partnerName = currentRecord.name


        if (navigator.geolocation) {

            navigator.geolocation.getCurrentPosition(

                async (position) => {

                    const lat = position.coords.latitude

                    const lon = position.coords.longitude


                    const fileInput = document.createElement("input")

                    fileInput.type = "file"

                    fileInput.accept = "image/*"


                    fileInput.onchange = async (event) => {

                        const file = event.target.files[0]

                        if (!file) {

                            this.notification.add("Photo is required!", {

                                title: "Error",

                                type: "danger",

                            })

                            return

                        }


                        const reader = new FileReader()

                        reader.onload = async () => {

                            const photoBase64 = reader.result.split(",")[1]


                            const result = await rpc("/partner/checkin", {

                                partner_name: partnerName,

                                lat: lat,

                                lon: lon,

                                photo: photoBase64,

                            })


                            if (result.success) {

                                this.notification.add(result.message, {

                                    title: "Success",

                                    type: "success",

                                })

                            } else {

                                this.notification.add(result.message, {

                                    title: "Error",

                                    type: "danger",

                                })

                            }

                        }

                        reader.readAsDataURL(file)

                    }

                    fileInput.click()

                },

                () => {

                    this.notification.add("Location retrieval failed", {

                        title: "Error",

                        type: "danger",

                    })

                }

            )

        }

    }


    // 📍 New feature: only save location to partner fields

    async onSaveLocationClick() {

        const currentRecord = this.model.root.data

        const partnerId = this.model.root.resId  // Use resId instead of data.id

        const partnerName = currentRecord.name


        console.log("Debug - Partner ID:", partnerId, "Partner Name:", partnerName)


        // Check if record is saved

        if (!partnerId || partnerId === false) {

            this.notification.add("Please save the partner record first before capturing location", {

                title: "Warning",

                type: "warning",

            })

            return

        }


        if (!navigator.geolocation) {

            this.notification.add("Geolocation is not supported by your browser", {

                title: "Error",

                type: "danger",

            })

            return

        }


        navigator.geolocation.getCurrentPosition(

            async (position) => {

                const lat = position.coords.latitude

                const lon = position.coords.longitude


                try {

                    const result = await rpc("/partner/save_location", {

                        partner_id: partnerId,

                        lat: lat,

                        lon: lon,

                    })


                    if (result.success) {

                        this.notification.add(result.message, {

                            title: "Success",

                            type: "success",

                        })

                        await this.model.root.load() // refresh form to show updated values

                    } else {

                        this.notification.add(result.message, {

                            title: "Error",

                            type: "danger",

                        })

                    }

                } catch (error) {

                    console.error("RPC Error:", error)

                    this.notification.add("Failed to save location: " + error.message, {

                        title: "Error",

                        type: "danger",

                    })

                }

            },

            (error) => {

                let errorMsg = "Failed to get location"

                switch (error.code) {

                    case error.PERMISSION_DENIED:

                        errorMsg = "Location permission denied. Please enable location access."

                        break

                    case error.POSITION_UNAVAILABLE:

                        errorMsg = "Location information unavailable."

                        break

                    case error.TIMEOUT:

                        errorMsg = "Location request timed out."

                        break

                }

                this.notification.add(errorMsg, {

                    title: "Error",

                    type: "danger",

                })

            }

        )

    }

}


ResPartnerFormController.template = "distribution_location.ResPartnerFormView"


export const resPartnerFormView = {

    ...formView,

    Controller: ResPartnerFormController,

}


registry.category("views").add(

    "distribution_location_partner_form_view",

    resPartnerFormView,

)

It works fine on the Contacts page, but when I try to add a new customer from the POS page, I get an error


0
Avatar
Ignorer
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é
Can concepts be predefined for Cash In/Out?
POS
Avatar
Avatar
2
sept. 25
760
Prevent display of form view from list view of v18 when row was clicked
Odoov18
Avatar
Avatar
2
oct. 24
3245
how to using dataavailable in js
js
Avatar
Avatar
1
juin 23
2714
Can not open wizard from PivotRenderer
js
Avatar
Avatar
1
mai 23
2651
odoo 15 js this.do_notify
js
Avatar
Avatar
1
oct. 22
4855
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