0 Check-Out Mechanism 10 Robert Fuller III posted 7 Years Ago I have been hunting through documentation, and experimenting with the check-in system for a while. I was wondering if anyone knows what the mechanism for checking-out a child is? How are they digitally released from the system, and is there any log of that? What processes do your other churches use to release children?UPDATE:This article was exceedingly helpful. http://shouldertheboulder.com/Article?id=557 I made a few custom tweeks to it, but nothing major. This is going to be the foundation for how we can track exactly when a child was checked-out.
Michael Garrison 7 years ago Filtering may be as easy as adding the location as a CSS Class to each row, and writing a list of valid filters as links which would use jQuery to hide other rows... I'll try to look back at the article tonight and see if I can't work out something for you. (edit: I guess that would require using FormattedOutput instead of the raw DD block output)Regarding the barcode checkout, I've toyed with the idea of creating a page (assume it's something like /barcodecheckout/{CheckinId}/{BeginDateTime} so that there are two factors to make tampering harder) which requires a staff login - in theory you can output the URL as a QR code using ZPL on the receipt- your staff worker would then be logged into Rock on their phone and use a QR code reader to scan the receipt - since they're logged in it would take them to the designated page (which they're already logged into) and if both the factors match in the database, would perform the check out. Depending on the app, they'd have to go "back" into the app between each scan, but that seems like a reasonable workflow. I just haven't tried to actually do it.I think that a barcode checkout would be harder- it would need software that knew what to do with the number the barcode stored. A QR code has the benefit of being able to store an entire URL, and every QR code reader app I've ever seen knows what to do with a URL naively, so it wouldn't need native or custom support...just an internet connection.Sorry for the mental dump, but maybe this helps you find a path? I'll try to ping back in here if I get a manage to publish something on the QR solution
Michael Garrison 7 years ago Sure, you can make the table look like a standard Rock grid by changing<table style="width:100%;">to instead read:<table class="grid-table table table-bordered table-striped table-hover">