Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

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

Subscribe

Get notified when there's activity on this post

This question has been flagged
configurationbarcodescannerposv7
21 Replies
31405 Views
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
Discard
Avatar
Frédéric Van Der Essen (fva)
Author Best Answer

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
Discard
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)
Author

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)
Author

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)
Author

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)
Author

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)
Author

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
Best Answer

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
Discard
Fabrice Henrion (fhe)

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

Avatar
Alexandre Takacs
Best Answer

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
Discard
Avatar
Malik Sikandar Hayat
Best Answer

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

0
Avatar
Discard

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

Avatar
mamak111
Best Answer

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
Discard
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.

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

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

Sign up
Related Posts Replies Views Activity
Wireless Barcode scanner
barcodescanner pos v7
Avatar
Avatar
1
Mar 15
6462
What kind of barcodes are supported by the Point of Sale ? Solved
configuration pos v7 barcode
Avatar
Avatar
3
Apr 23
16923
What is a good practice to keep track of the cash on-hand balances for each cash location (POS, etc.)? Solved
pos v7
Avatar
Avatar
1
Sep 21
7133
define check sum digit
barcodescanner pos
Avatar
Avatar
1
Dec 19
4097
Barcode scanner makes problems in POS Solved
barcodescanner pos v7 js scanner
Avatar
Avatar
Avatar
3
Dec 18
11043
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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