Questions tagged [pos]

pos or Point of Sale is a specialized application domain for point of sale applications written in a variety of programming languages. This tag can be used for questions about the development of point of sale applications however more specific technology tags should be included along with the target operating system.

Point of Sale applications are applications used by merchants and their employees at businesses such as Quick Service Restaurants, Table Service Restaurants, retail stores, grocery stores, and other businesses which sell goods and services in brick and mortar stores.

The typical Point of Sale application is used with a terminal or computer that is dedicated to running the application and other, point of sale related applications and utilities. A typical installation includes a terminal, a receipt printer, an electronic payment terminal, a cash drawer, and a customer display screen. Other devices such as a weighing scale, coin change dispenser, kitchen printer, or kitchen display system may also be connected to the terminal either directly via USB or Serial cable or remotely through Ethernet or Bluetooth.

Point of sale application development typically integrate COTS components such as OPOS device drivers and electronic payment interfaces under a number of different operating systems including Windows, Linux, Android, and MAC OS. They may be written in a variety of programming languages however C and C++ and Java are the most popular with the most software components support.

306 questions
1
vote
3 answers

js search in array with 50k result is so slow

i have web app pos the array filter search in client side in browser not in the server first i download all products as array and work on it and its working so good with number of products under 20k since a while the array of the products get the…
softya
  • 229
  • 7
  • 22
1
vote
0 answers

react native how to import and use pure android sdk in react native project

I wanted to print receipt from react native app my problem is the device is smart pos so i have this documentation it is explain how to user their SDK in pure android…
1
vote
0 answers

epson sdk for javascript in vue.js?

Am trying to print a receipt using the ePos sdk from epson using the tm-U220 and tm-220ii. Note: the npm escpos package works fine but is not an option because the package cant use the double comand that DOUBLES the size of the font in the…
1
vote
0 answers

How to print from web application to pos printer using react js?

I was trying to connect and print the data on my POS printer programmatically. My printer is TM-U220 with USB port only. I went through the epson SDK for javascript but it only allowing me to connect via LAN (i.e. using IP and Port only). Is there…
Joshi Vishwesh
  • 85
  • 1
  • 14
1
vote
2 answers

delphi freeze and activate order

I am trying to make small POS system, using FDMem table to fill items for the customer. In case the customer forget his money or go to change a product .. and the customers in the line move and new customer shows up asking to start sale process, how…
1
vote
0 answers

odoo 14 point of sale receipt customization

I'm trying to customize pos receipt in odoo 14 ce but it not work help me please this is my code
1
vote
0 answers

How to print receipt using HP Engage One Prime Receipt Printer

I'm developing a web application to print receipts using angular. I use HP Engage One Prime POS as client side using the default browser which is Chromium version 74 and HP Engage One Prime Receipt Printer thermal printer. Any suggestions?
1
vote
1 answer

Invalid field " on model 'res.partner' in POS (Odoo 13)

I added a new field in res.partner , then in customer view of POS ; but when editing or creating a customer ; I got error when saving . Here is my code , what's missing to save field from xml to database? Thanks. odoo.define('My_module.My_module',…
K.ju
  • 541
  • 5
  • 20
1
vote
0 answers

Square Mobile Web API for Android gives "Unsupported API Version" What is the correct version number for the current API?

We are trying to support the Square Mobile Web API to process a charge from a mobile web POS system. The API seems to be straightforward as documented by Square (https://developer.squareup.com/docs/pos-api/web-technical-reference). The sample code…
GPowell
  • 11
  • 1
1
vote
1 answer

Connect PWA to retail operations

I'm pretty new to everything related to hardware. I am searching for a way to connect PWA to POS hardware, like Scanner or cash drawer. How can I access these via PWA or JavaScript?
levi
  • 1,077
  • 2
  • 11
  • 24
1
vote
1 answer

How to load only product from pos source location in odoo13

I want to load only product that exit in pos's stock location.I try with following code.But display all product.How can I do it?I try this module https://apps.odoo.com/apps/modules/13.0/pos_product_available/.But that module display all product.I…
Neural
  • 370
  • 1
  • 11
1
vote
0 answers

How to open a TCP Stream and send multiple messages between POS machine and an App?

I have a problem with the communication with a POS machine. I have made a WinForms App that communicates with a POS. The below code is what what I have done so far : First I send the message to the POS and I get a response from it but then if ,…
LopDev
  • 823
  • 10
  • 26
1
vote
1 answer

ISO 8583 create LLLLVAR

Is it possible to use a field more than 999 bytes in ISO8583? I wanna to send data in a filed which has more than 999 bytes. What is the best solution? Can I define a new type: LLLLVAR to do that? I think we are enable to do that in JPOS but I…
1
vote
0 answers

How to get stock quantity in pos odoo

When start the pos session , I want to load the product quantity that is available in pos stock location. Now I get the on hand quantity but I want to load the real quantity from stock location.
Neural
  • 376
  • 3
  • 12
1
vote
0 answers

How to print data from the inbuilt printer of an android Pos terminal using serial port

I have an android mobile pos device with an inbuilt printer, I want to communicate with the inbuilt printer by finding the serial port which the printer is connected to and send data to the printer using the port.. How do I go about this..