Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • e-learning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Conocimientos
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Cervecería
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y soporte técnico
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Explorar todos los sectores
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Servicios para partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Portal controller and logged in users

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
portalLots/Serial
2171 Vistas
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
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
ValueError: Expected singleton: res.partner() when I try to give Portal Access to a customer
portal
Avatar
Avatar
2
nov 25
706
Trying to replace default “Invoices & Bills” breadcrumb in Odoo portal
portal
Avatar
Avatar
1
nov 25
562
Dynamically update cart icon after adding products from a reorder popup in Custom Odoo portal
portal
Avatar
Avatar
1
nov 25
476
is possible to add 2 filters to the web portal similar to searchbar_filters?
portal
Avatar
Avatar
Avatar
2
jul 25
2338
How can I allow one portal user to see another portal user's information (like Sales Orders, Invoices)? Resuelto
portal
Avatar
Avatar
1
may 24
3978
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

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