GallusMax / open-source-self-check

An OpenSource Selfcheck system that is FAST, intuitive and - Free Software! Enhancements against the code from code.google.com/p/open-source-self-check
GNU General Public License v3.0
6 stars 4 forks source link

Require Barcode AND PIN for authentication? #32

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Our org is in the nasty habit of adding hoops for patrons to jump through to 
use self-checkout.  Namely:  we require a PIN to use self-checkout.

Any chance of seeing this built into authentication?
Using the latest version as of today...

Just searching through my options...looking to dump 3M's cost like hot tar on a 
new highway.  THANKS!

Original issue reported on code.google.com by bellingh...@gmail.com on 4 Sep 2013 at 5:01

GoogleCodeExporter commented 8 years ago
Are your pins numeric or alphanumeric?

Original comment by ericmelton1@gmail.com on 4 Sep 2013 at 3:01

GoogleCodeExporter commented 8 years ago
Numeric, fine sir!

Original comment by bellingh...@gmail.com on 4 Sep 2013 at 8:33

GoogleCodeExporter commented 8 years ago
It should be possible and not that difficult but I'll need a few days -we're 
working on opening a maker space so it's kind of crazy here.
Eric

Original comment by ericmelton1@gmail.com on 5 Sep 2013 at 3:44

GoogleCodeExporter commented 8 years ago
You are a superstar!  No problems with waiting...let me know if I can provide 
you with any other information along the way.

Original comment by bellingh...@gmail.com on 5 Sep 2013 at 8:16

GoogleCodeExporter commented 8 years ago
Hello, Mr. Melton!  How is the "maker space" going?  Got those librarians 
teaching patrons how to use 3-D modeling software?  ;)

Was wondering if you needed any more information from me?  THANKS!

Geoff in Whatcom County, WA

Original comment by bellingh...@gmail.com on 16 Sep 2013 at 8:36

GoogleCodeExporter commented 8 years ago
I sincerely apologize. It's unlikely I'm going to get around to this soon. I've 
just started a new position as director at a library in the middle of changing 
their ILS and am going to be pretty busy.
Eric

Original comment by ericmelton1@gmail.com on 1 Oct 2013 at 12:31

GoogleCodeExporter commented 8 years ago
Well, no reason to apologize!  Best wishes from Bellingham WA in your new
endeavor (and new ILS)!  If I get a solution put together, I'll let you
know here...

Original comment by bellingh...@gmail.com on 1 Oct 2013 at 2:13

GoogleCodeExporter commented 8 years ago
So I just stumbled on this project.  We also use barcode and pin to 
authenticate. Currently we use envisionware for our selfcheck out needs but 
have switched ILS's from vtls to polaris and wanted to try something new 
possibly. I have been looking at the code and it looks like in home.php in  
$('#form').submit(function(){ 
after $barcode=$('#barcode');
would be a good place to start a script to open a second keypad and then 
continue on with the code that is there.  The pin variable would have to be 
sent to the account_check.php page with the barcode.  Has anyone had any luck 
with this?

Original comment by pbrick...@ualibrary.org on 18 Apr 2014 at 12:33

GoogleCodeExporter commented 8 years ago
The file includes/keypad.php would be a good place to start. The keypad was 
originally intended to allow patrons to manually enter their card numbers but 
could be reconfigured to handle pins instead. You might look at triggering the 
keypad when a barcode is scanned -look at the $('#form').submit(function(){ in 
pages/home.php where you could trigger this. If you're familiar with jquery, 
you should be able to pull this off -otherwise, it might be a bit of a 
challenge.

Original comment by ericmelton1@gmail.com on 18 Apr 2014 at 6:53