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
    • eLearning
    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
    • Información
    • 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
    Food & Hospitality
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Guest House
    • Distribuidor de bebidas
    • Hotel
    Real Estate
    • Real Estate Agency
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consulting
    • Accounting Firm
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Trades
    • Handyman
    • Hardware y asistencia informática
    • Solar Energy Systems
    • Zapatero
    • Servicios de limpieza
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • 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
    • Services for 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

How to reload orderlines when changing customer in POS

Suscribirse

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

Se marcó esta pregunta
javascriptposodoo10
1 Responder
10539 Vistas
Avatar
Silviaa

0down votefavorite   
In my customization product price varies with respect to customer it works when add from products ,barcode , changing qty (numpad). After all orderlines are created if customer is change i want to reload all Lines


 var _super_orderline = models.Orderline;
 models.Orderline = models.Orderline.extend({
get_display_price: function(){    return custom_price;
}});


if order lines is created get_display_price , this doesn't work when changing customer ,


 save_changes: function(){    var self = this;
    var order = this.pos.get_order(); // got only client details }


How to reload orderlines when changing customer in POS ?

0
Avatar
Descartar
Avatar
Pawan
Mejor respuesta

Silviaa,

To reload all of you order lines, you need to write your customize functionality,

i also faced this scenario, so i have created one for me,

Whenever you select a client  from client widget, and click on 'Change Customer' you have to call this customized method(under click event of '.next' button of ClientListScreenWidget).

this.$('.next').click(function(){ var order = self.pos.get_order();

   self.save_changes();

   self.refresh_orderlines(order); //CUSTOMIZED METHOD

   self.gui.back(); // FIXME HUH ?

  });


And here is the method:

refresh_orderlines: function(order){

    var lines = jQuery.extend(true, {}, order['orderlines']['models']);    

     //looping through each line  

    $.each(lines, function(k, line){

         var my_prod = line['product'];

         order.select_orderline(line); 

         //simulating product click event and create new duplicate order line

         if ($(".product[data-product-id='"+my_prod['id']+"']").length == 0){             order.pos.gui.screen_instances.products.click_product(my_prod);

         }

         else{

             $(".product[data-product-id='"+my_prod['id']+"']").trigger('click');

         }

         //removing original order line

         line.set_quantity('remove');

  });

  //saving new created lines

  order.trigger('change');

 },


Hope it helps!

4
Avatar
Descartar
Silviaa
Autor

Yes it reload and add new lines but not removing (i.e) when changing customer am getting 2 lines

Silviaa
Autor

I used to change quantity instead of triger product click

line.set_quantity(line['quantity']);

// $(".product[data-product-id='"+my_prod['id']+"']").trigger('click'); //line.set_quantity('remove');

Works for me. Thank you for idea

Pawan

line.set_quantity('remove') should delete the current line for order, infact it totally depends on wat you exactly want to do... in my scenario i was to reset and recalculate many data, thats why i was creating new lines and removing old one.

You can go as per the one which suites you.

Thanks

¿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
Popup window in pos Resuelto
javascript pos odoo10
Avatar
Avatar
Avatar
3
jul 25
18059
TypeError: cur is undefined Odoo 11 Pos
javascript pos odoo odoo10
Avatar
0
dic 18
3501
How to change Odoo POS URL in button click in POS
javascript pos controller odoo10
Avatar
Avatar
1
oct 18
6994
does odoo 17 allow to add button to Navbar header in point of sale session inside it to get dynamic data
javascript pos
Avatar
Avatar
1
nov 24
2215
How to add product in POS programmatically Resuelto
javascript pos
Avatar
Avatar
Avatar
Avatar
4
oct 24
5217
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