-2

What are some suggestions to interface POS systems from multiple stores. The procedure should be, the retailer installs this software onto their Point-of-sale machines(or to the machine that handles the transactions) which runs separately from their currently installed POS software so it is not a POS replacement just an add on. The software can collect the transaction information as it is happening and send the data across the network, the other feature is that there should be a small input field the is accessible to the cashier or person checking out to input information (like a number) and be able to send that across the network as well. Again is there some way to make this "cross-compatible" not having the retailer to have to modify their main POS software to interface to mine.

Alan
  • 1,134
  • 2
  • 13
  • 25

1 Answers1

1

This question is very vague. I am assuming you are writing an independent software read input from POS and send across the wire to central server or so. Fist of all find if POS software provide any realtime export or exposed any API you can read data from. Otherwise try to read from its database or file POS software store data in local disk.

Since you want to write a generic software you may want to implement multiple adapters, for example a FileBasedAdapter to read input from POS writing to a file, DatabaseBasedAdapter for database driven POS and so on. While installation you need to configure this adapter. I am not familiar with POS domain but you can also search for well known POS providers (example: IBM, Micros etc.) and write OEM specific adapters based on the specification provided by them. End of the day these adapter layer needs convert POS specific data to a generic format so that you can handle rest of the requirements pretty easily and effectively.

If your software is based on some high level language it is pretty easy to send data across the wire either through plain socket connection or HTTP connection.

kamoor
  • 2,909
  • 2
  • 19
  • 34
  • yes that is exactly what I am looking for. The software is installed and ran independently from the main POS so it is not a replacement for the POS but an add on. The reading from file/database solutions sound feasible however how would I know for example where these files are kept? and do you have any other recommendations for this software to have an input field? – Alan Nov 27 '14 at 15:51
  • I am not sure. Check in POS vendor website to see if they provide any specification or help. I am very positive they will have something because most of the large retailers extend basic POS functionality for their own business reasons. – kamoor Nov 27 '14 at 15:58