Ir al contenido
Odoo Menú
  • Iniciar sesión
  • 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
    • Inteligencia artificial
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Sectores
    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
    • Asesoría 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 corporativos
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Oficios
    • Servicios de mantenimiento
    • 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 vallas publicitarias
    • 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 asesoría 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
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Sobre este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Sobre este foro
Ayuda

Can I overwrite the “Order” button on the PoS?

Suscribirse

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

Esta pregunta ha sido marcada
pospoint_of_saleowl18.0
1 Responder
1492 Vistas
Avatar
NELSON ALEXANDER DIAZ DE LA CRUZ

The goal is to customize the PoS interface so that the existing “Order” button (or a new adjacent button) can be overridden or extended to trigger a custom behavior: when the button is clicked, a popup window should open with a text input field. The cashier or waiter can type information such as the name of the person placing the order into this field. After entering the text and clicking “OK”, the popup should close and the order can then be confirmed as usual.


Odoo version: 18


0
Avatar
Descartar
Codesphere Tech

Hello,
You can use kitchen note or customer note for this. Is it not feasible for you?

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Mejor respuesta
Hi,
You need to do three things:
      1- Create a custom popup (text input)
      2- Extend the Order/Validate button behavior
      3- Store the entered text on the POS order

* Create a custom popup (Text Input)
--> static/src/js/OrderNamePopup.js

import { AbstractAwaitablePopup } from "@point_of_sale/app/popup/abstract_awaitable_popup";
import { registry } from "@web/core/registry";

export class OrderNamePopup extends AbstractAwaitablePopup {
    setup() {
        super.setup();
        this.orderName = "";
    }

    confirm() {
        this.resolve({ confirmed: true, value: this.orderName });
    }

    cancel() {
        this.resolve({ confirmed: false });
    }
}

OrderNamePopup.template = "OrderNamePopup";

registry.category("popups").add("OrderNamePopup", OrderNamePopup);

--> static/src/xml/OrderNamePopup.xml

<?xml version="1.0" encoding="UTF-8"?>
<templates>
    <t t-name="OrderNamePopup" owl="1">
        <div class="popup popup-textinput">
            <div class="title">Enter Order Name</div>

            <input type="text"
                   class="form-control"
                   t-model="orderName"
                   placeholder="Customer / Order Name"/>

            <div class="footer">
                <button class="button cancel" t-on-click="cancel">Cancel</button>
                <button class="button confirm" t-on-click="confirm">OK</button>
            </div>
        </div>
    </t>
</templates>

* Extend the “Order / Validate” button
--> static/src/js/PaymentScreenPatch.js

import { PaymentScreen } from "@point_of_sale/app/screens/payment_screen/payment_screen";
import { patch } from "@web/core/utils/patch";

patch(PaymentScreen.prototype, "order_name_popup", {

    async validateOrder(isForceValidate) {
        const order = this.currentOrder;

        // Show popup ONLY if name not already set
        if (!order.order_name) {
            const { confirmed, value } = await this.popup.add(
                "OrderNamePopup",
                {}
            );

            if (!confirmed) {
                return; // stop validation
            }

            order.order_name = value;
        }

        // Continue normal validation
        await super.validateOrder(isForceValidate);
    },
});

* Store the value on the POS Order
--> static/src/js/OrderExtension.js

import { Order } from "@point_of_sale/app/store/models";
import { patch } from "@web/core/utils/patch";

patch(Order.prototype, "order_name_field", {

    setup() {
        super.setup(...arguments);
        this.order_name = this.order_name || "";
    },

    export_for_printing() {
        const data = super.export_for_printing(...arguments);
        data.order_name = this.order_name;
        return data;
    },

    export_as_JSON() {
        const json = super.export_as_JSON(...arguments);
        json.order_name = this.order_name;
        return json;
    },

    init_from_JSON(json) {
        super.init_from_JSON(...arguments);
        this.order_name = json.order_name || "";
    },
});

Manifest:

'assets': {
    'point_of_sale.assets': [
        'your_module/static/src/js/*.js',
        'your_module/static/src/xml/*.xml',
    ],
},


Hope it helps.

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
Code patch not taking effect. Inheriting the POS invoice_button component
pos point_of_sale 18.0 l10n_mx
Avatar
Avatar
Avatar
2
oct 25
3147
How to update point of sale order state?
pos point_of_sale
Avatar
Avatar
1
nov 25
2306
POS Custom Promotion Popup: Confirm button not triggering applyPromotions()
pos 18.0
Avatar
Avatar
1
oct 25
1952
Odoo 18: Price tags in Point of Sale (POS) Resuelto
pos 18.0
Avatar
Avatar
Avatar
Avatar
Avatar
8
abr 26
9159
How to print order bill and still have the possibility to make payment.
pos 18.0
Avatar
Avatar
Avatar
Avatar
Avatar
4
ago 25
4065
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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones empresariales de código abierto que cubre 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 estar 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