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

Filtering Locations by Stock in Product Delivery View on Odoo Online with Studio Customization

S'inscrire

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

Cette question a été signalée
inventorylocationsdeliveryfilteringdomains
1 Répondre
2004 Vues
Avatar
Robin JOSEPH

Hello,


In the inventory module, when I make a delivery, I would like the list of locations available for transferring goods to include only those that contain the product in question.


My store has around 100 locations, and it's difficult for my staff to remember which location each product is in. 


So, when they make a delivery, they either have to physically go into the store to see where the product was taken from (which is not at all optimal), or check the list of locations in which the product is stored, from the product sheet, which is not ideal either.


I'd therefore like the delivery interface to show, when they select a product to be delivered, the list of selectable locations to include only those containing the product just selected. Naturally, if there are only two or three left, they'll be in a much better position to choose.


I tried to use a domain to create this filter, based on the 'Qty → product_id' field accessible from 'location_id', but I couldn't do it. I'm on Odoo online with Odoo Studio, so I have some customization possibilities, but they're not very extensive either.


Does anyone have a solution to my problem?


Thank you in advance, and I'll be happy to talk to you.

0
Avatar
Ignorer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

Hi Robin,

You can achieve this functionality by creating a custom computed field in the stock.picking model and applying a domain on the location_id field based on the computed field.

Here are the steps to follow:

  1. Open Studio mode on the stock.picking model and add a new computed field.
  2. Choose "Many2many" as the field type and name it available_locations.
  3. In the "Relation" field, select stock.location (or the model name for the locations).
  4. In the "Compute" section, add a compute function like this:
Quant = self.env['stock.quant']
for record in self:
    if record.product_id:
        quants = Quant.search([('product_id', '=', record.product_id.id), ('quantity', '>', 0)])
        record['available_locations'] = quants.mapped('location_id')
    else:
        record['available_locations'] = False
  1. Set the dependent field as product_id.
  2. After creating the computed field, proceed to apply a domain on the location_id field like so:
[("id", "ilike", "available_locations.ids")]

This method should meet your requirements.


Hope it helps

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é
How to create material flow with material supplier and subcontractor V18.0
inventory locations delivery subcontractor routes
Avatar
Avatar
Avatar
2
oct. 25
711
How to deliver to workshop or customer from same sales order? Add parts SO from delivery Résolu
inventory locations delivery sales.order route
Avatar
Avatar
1
août 24
1616
How salesman control [committed product and to be consumed materials quantities] in his Sale order?
sales manufacturing inventory locations delivery
Avatar
0
sept. 19
3071
Odoo - use different production virtual locations with different GL accounts
inventory locations
Avatar
0
janv. 24
2233
Configuration problems in warehouses and locations Résolu
inventory locations
Avatar
Avatar
Avatar
3
déc. 22
5279
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