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
    Alimentación y hostelería
    • Bar y taberna
    • 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
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • 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
    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

What kind of hardware is supported by the Point of Sale ?

Suscribirse

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

Se marcó esta pregunta
configurationbarcodescannerposv7
21 Respuestas
31383 Vistas
Avatar
Frédéric Van Der Essen (fva)

I want to set up a Point of Sale at my shop, and I wonder what kind of hardware is supported. Is there a list somewhere ? Where do I get started ?

21
Avatar
Descartar
Avatar
Frédéric Van Der Essen (fva)
Autor Mejor respuesta

Standard Hardware

  • Barcode scanners :
    • any kind of EAN13 usb barcode scanner should be supported. Make sure you configure it to always emit 13 characters (sometimes they ignore the zero at the start, and then it doesn't work) and that it doesn't end with a special control character. Newline should work Ok.
  • Touchscreens :
    • Any kind of resistive or multitouch screen should work. In those cases you may want to activate the on screen keyboard in the Point of Sale settings.
  • Printers :
    • In the default settings, the Point of sale will use the browser to print. In this case any laser or inkjet printer supported by your operating system will work. But those kinds of printers are not ideally suited for printing receipts. There is a 'Print by Proxy' settings that enables you to bypass the browser and directly use your printer, but in this case you'll need to develop a driver for your printer or find one provided by the community.

Custom Hardware

Because the Point of Sale runs in your browser, it is sandboxed and cannot access your hardware directly. To solve that problem, we developed a custom proxy server that must be run on the client machine while running the point of sale. The Proxy server can access your hardware and forward commands to and from the Point of Sale.

The proxy server is part of a standard Odoo install. All you have to do is install Odoo on the client machine and run it with a default setup. What you'll need to do, however, is to customize the proxy to talk to your hardware.

The proxy is located in addons/point_of_sale/controllers/main.py In that file there are several stub rpc methods that will be called by the point of sale to control the hardware. You will need to implement these methods to use your hardware. There is more documentation available for these methods in the addons/point_of_sale/static/src/js/devices.js file. Some of there stubs are for functionality that couldn't be finished and fully tested before release, I'll mark them below as WIP.

Here is a list of the methods available :

scan_item_success(self,request, ean) scan_item_error_unrecognized(self,request,ean) help_needed(self, request) help_canceled(self,request) weighting_start(self,request) weighting_read_kg(self,request) weighting_end(self,request) #WIP payment_request(self,request,price) #WIP payment_status(self,request) #WIP payment_cancel(self,request) transaction_start(self, request) transaction_end(self,request) cashier_mode_activated(self,request) cashier_mode_deactivated(self,request) open_cashbox(self,request) print_receipt(self,request,receipt) #WIP print_pdf_invoice(self,request, pdfinvoice)

21
Avatar
Descartar
Nicolas Vanhoren (niv)

Ok, but if I don't want to code the proxy? You should at least have a default implementation of the proxy that will work with some precise hardware, if I buy the exact same one it should work isn't it?

Frédéric Van Der Essen (fva)
Autor

Right now, if you don't want to code the proxy you should stick with the standard hardware setup. We do have specific code for some hardware but it is not ready for release.

Kevin Shenk

I've looked all over the web for this answer!! Wow how did I not know about help.openerp.com until now?? Thank-you so much!

Osoul for Technology and Software Development

What do you mean by install OpenERP on the client machine? How will it work in a server to multi-clients environment?

Frédéric Van Der Essen (fva)
Autor

You must have a local openerp install on the client machines. There is very little setup to do on those installs, it's just to talk to the hardware. There is unfortunately not many ways around the browser sandbox.

Bodi

Frédéric, would you mind explaining what this local openerp install means? In my case I would have a PC with the webclient for the POS, and the server installed on the same/different machine. the card reader/receipt printer would be on the same LAN. What else?

Thank you,

Bodi

I notice that payment communication is WIP. Is there a way as of today to communicate with the card reader? Meaning: 1. sent amount to be charged, payment type (e.g. visa, mc, etc) 2. receive payment transaction result 3. print receipt (this I guess is what this question was about) Thank you so much

Bodi

Pls let me know if I should open another question for my inquiry; I considered it a developemnt of the original question, but just saw Fabrice's comment :-)

Frédéric Van Der Essen (fva)
Autor

The local openerp install means you need to install an openerp on the same machine that will display the point of sale with a web browser.

Frédéric Van Der Essen (fva)
Autor

And for the card reader, communicating from the python proxy to the hardware will depend on the hardware you use. As for communication from the web client to the python proxy, the basics are there, with a lot left to be done, namely managing errors returned from the reader, and making it work outside the self checkout mode. And the PosOrder object has to be modified to include receipt data generated by the payment terminal.

Frédéric Van Der Essen (fva)
Autor

Oh and, development on the payment terminal is currently on hold on our part, but I'll gladly give pointers or review code :)

Fritz Schlechter

Please give more detail on this local openerp install, for OpenErp Ver. 7, there is no client option to install. If it is server installation, how would the local installation get my server data? Is there some config that must be changed to allow local installation to work off server installation?

Wei Li

I'm doing a replacement proxy server to whole OpenERP: https://github.com/Sandwych/openerp_pos_devices_bridge

It's just a proof-of-concept script right now, but it works.

Avatar
michel Guénard
Mejor respuesta

How to set up the 'Print by Proxy' settings that enables you to bypass the browser and directly use your printer.

Is this available for the online Saas V7?

The objective being to print the POS receipt for the customers, rapidly and automatically once the validate button of the POS is pushed.

1
Avatar
Descartar
Fabrice Henrion (fhe)

Please do not ask questions in answers. Instead create a new question.

Avatar
Alexandre Takacs
Mejor respuesta

Is there anyone offering openERP-ready POS setups ?

Also I don't think Walid's question about multi-client setup has been answered ?

1
Avatar
Descartar
Avatar
Malik Sikandar Hayat
Mejor respuesta

Hi just read these 2013 topics and even now I am looking for any solution to this....any solution...

0
Avatar
Descartar

Can you explain what you are looking for? Which version of OpenERP/Odoo?

Avatar
mamak111
Mejor respuesta

As Frederic has stated virtually any standard barcode reader can be used. This is basically because they emulate keyboards and end the scanned string with a carriage return. Some older ones may need to be programmed for your choice of barcode standard as they can support multiple symbology standards see http://en.wikipedia.org/wiki/Barcode. Please consult your user manual. I suspect that if your scanner is not reading correctly this may be the case.

Touch screens are also universally supported as they are similar to a trackpad or a mouse.

As for POS printers, this is tricky as because the POS is run within the browser there is no direct interaction with the driver, resulting in garbled or unformated prints. The best out of the box/easy solution is to use Firefox browser with the AttendPrint add on. Although I am still trying to work out the font size issue. I can't change the font size.

0
Avatar
Descartar
Ronnie Choo Partner Portal Access

Wonder if you managed to work out your problem? May I know what POS printer model are u using?

Hi Ronnie, you can try our Fiscal Printer Module: http://www.didotech.com/index.php/progetti/download/category/2-openerp-70 It gives you a possibility to create a printer driver without using JavaScript and developing proxy server.

¿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
Wireless Barcode scanner
barcodescanner pos v7
Avatar
Avatar
1
mar 15
6422
What kind of barcodes are supported by the Point of Sale ? Resuelto
configuration pos v7 barcode
Avatar
Avatar
3
abr 23
16903
What is a good practice to keep track of the cash on-hand balances for each cash location (POS, etc.)? Resuelto
pos v7
Avatar
Avatar
1
sept 21
7114
define check sum digit
barcodescanner pos
Avatar
Avatar
1
dic 19
4076
Barcode scanner makes problems in POS Resuelto
barcodescanner pos v7 js scanner
Avatar
Avatar
Avatar
3
dic 18
11023
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