Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Portal controller and logged in users

Subscriure's

Get notified when there's activity on this post

This question has been flagged
portalLots/Serial
2167 Vistes
Avatar
Pete Charalampopoulos

Hi people.

i have a custom app that lists the serial numbers on the portal based on the filed partner_id on stock.production.lots

When the main user is logged in assosiated with the partner_id is connected can see the records. When i login as a user that is a child of the main user then i cannot see the records. Im sure it has to do with the domain but i cannot find the issue. Any help would be appreciated

# -*- coding: utf-8 -*-


from collections import OrderedDict


from odoo import http, _

from odoo.http import request

from odoo.osv.expression import OR, AND


from odoo.addons.portal.controllers.portal import CustomerPortal, pager as portal_pager



class ProductStatusCustomerPortal(CustomerPortal):


    def _prepare_home_portal_values(self, counters):

        values = super()._prepare_home_portal_values(counters)

        if 'product_status_count' in counters:

            Lots = request.env['stock.production.lot']

            condition_id = 1

            domain = Lots._product_status_get_portal_domain()

            values['product_status_count'] = Lots.sudo().search_count(domain)

        return values


    def _get_searchbar_inputs(self):

        return {

            'serial': {'input': 'serial', 'label': _('Search in Serial')},

          #  'product': {'input': 'product', 'label': _('Search in Parts')},

          # 'owner': {'input': 'owner', 'label': _('Search in Owner')},

          # 'part': {'input': 'part', 'label': _('Search in Part Number')},

          #  'condition': {'input': 'condition', 'label': _('Search in Condition')},

          # 'box': {'input': 'box', 'label': _('Search in Box number')},

          # 'location': {'input': 'location', 'label': _('Search in Location')},

          #  'all': {'input': 'all', 'label': _('Search in All')},

        }


    def _get_searchbar_groupby(self):

        return {

            'none': {'input': 'none', 'label': _('None')},

          # 'owner': {'input': 'owner', 'label': _('Owner')},

            'product': {'input': 'product', 'label': _('Product')},

            'condition': {'input': 'condition', 'label': _('Condition')},

        }


    def _get_search_domain(self, search_in, search, condition_ids=None):

        search_domain = []


        if search and search_in in ('serial', 'owner', 'part', 'condition', 'box', 'location', 'product', 'all'):

            print("\n \n::::search_in::::", search_in, search)

            if search_in == 'condition':

                if show_on_portal:

                    search_domain = [('condition_id.show_on_portal', '=', True), ('condition_id.name', 'ilike', search)]

                else:

                    search_domain = [('condition_id', 'ilike', search)]

            elif search_in == 'serial':

                search_domain = [('name', 'ilike', search)]

            elif search_in == 'all':

                # Handle 'all' case separately or remove it from search options

                pass

            else:

                search_domain = [(search_in, 'ilike', search)]

        else:

            search_domain = [('condition_id.show_on_portal', '=', True)]


        return search_domain


    def _get_groupby_mapping(self):

        return {

            'owner': 'partner_id',

            'product': 'product_id',

            'condition': 'condition_id',

        }


    def _get_searchbar_filters(self):

        res = {

            'all': {'label': _('All'), 'domain': self._get_search_domain('all', '')},

        }

        allowed_conditions = request.env['stock.production.lot.condition'].sudo().search([('show_on_portal', '=', True)])

        for condition in allowed_conditions:

            res[str(condition.id)]}

        return res


    @http.route(['/my/product_status', '/my/product_status/page/'], type='http', auth="user", website=True)

    def portal_my_product_status(self, page=1, sortby=None, filterby=None, search=None, search_in='serial', groupby='none', **kw):

        Lots = request.env['stock.production.lot']

        domain = Lots._product_status_get_portal_domain()

        Lots_sudo = Lots.sudo()


        values = self._prepare_portal_layout_values()

        _items_per_page = 100


        searchbar_inputs = self._get_searchbar_inputs()


        searchbar_groupby = self._get_searchbar_groupby()


        searchbar_filters = self._get_searchbar_filters()


        if search and search_in:

            domain += self._get_search_domain(search_in, search)


        if not filterby:

            filterby = 'all'

        domain = AND([domain, searchbar_filters[filterby]['domain']])


        product_status_count = Lots_sudo.search_count(domain)

        # pager

        pager = portal_pager(

            url="/my/product_status",

            url_args={'sortby': sortby, 'search_in': search_in, 'search': search, 'filterby': filterby, 'groupby': groupby},

            total=product_status_count,

            page=page,

            step=_items_per_page

        )


        def get_product_status():

            groupby_mapping = self._get_groupby_mapping()

            field = groupby_mapping.get(groupby, None)

            orderby = False

            product_status = Lots_sudo.search(domain, order=orderby, limit=_items_per_page, offset=pager['offset'])

            if field:

                raw_grouped_product_status =  Lots_sudo.read_group(domain, [field, "ids:array_agg(id)"], [field])

                # hope it is cached (product_qty is not stored, so can't be fetched from read_group)

                grouped_product_status = [(Lots_sudo.browse(group["ids"]), sum(Lots_sudo.browse(group["ids"]).mapped('product_qty'))) for group in raw_grouped_product_status]


                return product_status, grouped_product_status


            grouped_product_status = [(

                product_status,

                False

            )] if product_status else []

            return product_status, grouped_product_status


        product_status, grouped_product_status = get_product_status()


        values.update({

            'product_status': product_status,

            'grouped_product_status': grouped_product_status,

            'page_name': 'product_status',

            'default_url': '/my/product_status',

            'pager': pager,

            'search_in': search_in,

            'search': search,

            'groupby': groupby,

            'searchbar_inputs': searchbar_inputs,

            'searchbar_groupby': searchbar_groupby,

            'searchbar_filters': OrderedDict(sorted(searchbar_filters.items())),

            'filterby': filterby,

        })

        return request.render("wcgh_website_lots.portal_my_product_status", values) 

0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
ValueError: Expected singleton: res.partner() when I try to give Portal Access to a customer
portal
Avatar
Avatar
2
de nov. 25
703
Trying to replace default “Invoices & Bills” breadcrumb in Odoo portal
portal
Avatar
Avatar
1
de nov. 25
558
Dynamically update cart icon after adding products from a reorder popup in Custom Odoo portal
portal
Avatar
Avatar
1
de nov. 25
475
is possible to add 2 filters to the web portal similar to searchbar_filters?
portal
Avatar
Avatar
Avatar
2
de jul. 25
2336
How can I allow one portal user to see another portal user's information (like Sales Orders, Invoices)? Solved
portal
Avatar
Avatar
1
de maig 24
3977
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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