Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 612 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 612 Bytes

POS

An attempt at a Point of Sale system for the club office.

Hacking

It is best to use QtCreator as your IDE, or at least use QtDesigner to modify the .ui file.

We use Qt5.5 and C++11.

You will need OpenSSL installed with development headers.

Prices

Create a file prices.csv in the same directory as the POS binary. Each line is an item in the form:

item-name,price-in-cents

A positive "price" actually adds to the user's wallet (when someone pays club), and an negative prices subtracts from it (when someone buys something). This feels backwards and should probably change.