1
0
mirror of https://github.com/fspc/Yellow-Bike-Database.git synced 2025-02-22 17:03:22 -05:00

133 Commits

Author SHA1 Message Date
Jonathan Rosenbaum
6aa95e1ad4 Added an example of a working connector.
- mailman specific
- has been tested to work properly for both subscribe, and unsubscribe
- uses node.js
- two stage security
  1) password is specific to connector for recognization
  2) password used by list not kept local
- ssl used for all communication
- yeah!
2015-02-28 09:54:13 +00:00
Jonathan Rosenbaum
39def79d87 Improves the code to connector. 2015-02-28 06:36:36 +00:00
Jonathan Rosenbaum
e51d5a1c89 Provides an interface to an email connector.
Define a url for an email connector that will connect to an email list.
The url can be a server:port, program, etc.
Name (First, Last) email address, and connector password will be sent to the connector.

The purpose of email connectors is to provide autonomy in the choice
of email services and programs.  E.g. mailman, googlegroups
See ./examples for an example connector
2015-02-28 03:08:26 +00:00
Jonathan Rosenbaum
b1a11b9f3b Saves state for waiver & email_list, and more
1).  Adds configuration options to turn off waiver & email_list options
2).  Puts waiver in Connections/waiver.txt
3).  New MySQL waiver column added, receive_newsletter used for email_list.
2015-02-25 09:23:41 +00:00
Jonathan Rosenbaum
4cd269fd06 Improves start_shop, gets contacts ready for processing.
1) Slight improvements in UI with start_shop .. the date.
2) Adds deferred promise for contact.js.
2015-02-20 07:21:03 +00:00
Jonathan Rosenbaum
55a8de3df8 Adds error validation for email list slider. 2015-02-12 18:47:25 +00:00
Jonathan Rosenbaum
763587f840 Adds a toggle for email lists.
1).  Improvments to name/email regexp
2).  beginnings of validation logic for email list toggle
2015-02-12 07:17:59 +00:00
Jonathan Rosenbaum
a1717c99af Fixes a minor textarea bug by removing whitespace in the code. 2015-02-11 07:48:30 +00:00
Jonathan Rosenbaum
386742da2d Spiffs up shop_log. 2015-02-11 07:06:32 +00:00
Jonathan Rosenbaum
2869299725 Prevents new contact_ids from being continuously created.
1). There must be at least a full_name.
2). Because of error validation that includes other required fields, too.
2015-02-11 05:22:18 +00:00
Jonathan Rosenbaum
7b64d0c494 Spiffs up contact_and_edit, adding error correction and required waiver.
1). Next step will be an opt-in/out to mailman.
2). Originally this program was using google lists, but there are too many steps for users involved.
2015-02-11 01:55:38 +00:00
Jonathan Rosenbaum
8f8e1623df Correct transaction_id for storage transactions in history. 2015-02-08 09:00:06 +00:00
Jonathan Rosenbaum
b54cfe2312 Handles anonymous correctly in history.
1) 1 if checked
2) undefined if unchecked.
2015-02-08 07:45:47 +00:00
Jonathan Rosenbaum
82a2159fd4 Changes check_number to undefined if it doesn't exist. 2015-02-08 07:34:47 +00:00
Jonathan Rosenbaum
4a562671ec Handles check_number value correctly. 2015-02-08 07:10:47 +00:00
Jonathan Rosenbaum
4c87a15566 Provides correct payment_type value. 2015-02-08 07:05:07 +00:00
Jonathan Rosenbaum
be823f25e6 Now chooses sold_to selector based on type. 2015-02-07 06:00:47 +00:00
Jonathan Rosenbaum
e9b5cec740 Added transaction_id to the blob. 2015-02-07 04:34:45 +00:00
Jonathan Rosenbaum
26a0721620 Nows uses deferred.promise, and recognizes 'keypress' for history. 2015-02-07 01:38:45 +00:00
Jonathan Rosenbaum
e47498a00a Transaction history is now stored.
1).  Next step, view history in the transaction when more than 1 transaction.
2015-02-06 09:50:57 +00:00
Jonathan Rosenbaum
82e4eb3f29 Turned error check into a function.
1).  This allows "close" to produce errors, although not actually prevent them.
2).  This provides a return code for "save" so that the transaction history can be saved.
2015-02-06 07:31:03 +00:00
Jonathan Rosenbaum
ba0b491344 Corrected the focus on transction_id, also
1).  In mysql, description is not text
2).  .. added history as blob, drupalish
2015-02-06 06:24:18 +00:00
Jonathan Rosenbaum
ebc4bdd989 Adds "use strict", and moved one function to the proper location. 2015-02-04 01:46:42 +00:00
Jonathan Rosenbaum
50ecfd22d1 Brings focus back to select > transaction_type, green in css. 2015-01-30 08:26:30 +00:00
Jonathan Rosenbaum
be43ea3245 Show start storage original date if it has changed.
1).  Some css improvments.
2).  The beginnings of transaction history.
3).  Trying to find out why the window reloads twice on transactions without errors.
2015-01-29 07:32:02 +00:00
Jonathan Rosenbaum
1ed32814e1 Reversed previous change. 2015-01-28 19:55:43 +00:00
Jonathan Rosenbaum
232309de70 More validation for storage transaction in regards to save. 2015-01-28 19:47:16 +00:00
Jonathan Rosenbaum
6b8e10355f Patron must be signed-in to complete a storage transaction. 2015-01-28 19:31:27 +00:00
Jonathan Rosenbaum
c31551d66a Fixed the payement type label bug, but altering the selector.
1).  This selector turned of edit when clicked, but because of the way it was construed it was hiding the label.  Only became obvious when the validation tests were added.
2015-01-28 08:12:13 +00:00
Jonathan Rosenbaum
a2fbb3d5cc Added SHOP_SHOP_ID option.
1). Most collectives require only one shop at a time, but YBDB provides a way to handle 2 concurrent shops in the same location.  The current shop will be shown, and users will have to remember the number of the previous shop to enter into the transaction.  Note: Remote shops function independently via there IP identification.
2015-01-28 07:16:40 +00:00
Jonathan Rosenbaum
2175ab18e4 Removes a bug where Payment Type label became hidden.
1).  Relates an on load selector with hide() that has been preempted
     by the new error validation.  But will watch to make sure new
     bugs haven't been introduced.
2015-01-28 06:44:54 +00:00
Jonathan Rosenbaum
b01649d369 Select Type is now static to avoid unnecessary errors.
1).  Makes better sense from a UI perspective.
2015-01-28 04:30:42 +00:00
Jonathan Rosenbaum
e8610e6b2f Removes "no description" now that error validation is in effect.
1).  Deposits don't require a description.
2015-01-27 22:42:18 +00:00
Jonathan Rosenbaum
116416af06 Additional check, and namespace changes. 2015-01-27 22:39:17 +00:00
Jonathan Rosenbaum
dba651a8e8 Adds checks for amount and payment_type to avoid false errors. 2015-01-27 22:25:20 +00:00
Jonathan Rosenbaum
c813ea5eec If Patron isn't logged in but sold_to will validate correctly. 2015-01-27 22:08:02 +00:00
Jonathan Rosenbaum
caedba99cc Allows storage transactions error validation to work properly. 2015-01-27 21:53:22 +00:00
Jonathan Rosenbaum
b0f940b2b1 Fixed check number error validation bug. 2015-01-27 21:18:31 +00:00
Jonathan Rosenbaum
ca4895037c Corrects payment_type error.
1). Logic for storage transactions still needs to be added
2015-01-27 19:28:33 +00:00
Jonathan Rosenbaum
597982369d Fixes a bug when decimal places get too large for nouislider. 2015-01-27 08:26:17 +00:00
Jonathan Rosenbaum
cdbfd74ddb Adds error checking for date and quantity. 2015-01-27 07:47:18 +00:00
Jonathan Rosenbaum
4254265850 Adds a large majority of error check for edit transactions.
1). Adds more to css
2). Changes $transaction_id to transaction_id in *js
3). Shortens some selectors
4). Adds additional error spans
5). A few checks need bug fixes (check_number, payment_types)
2015-01-27 07:27:27 +00:00
Jonathan Rosenbaum
60bd4befea Replaces show_soldto_location with 2 new columns.
1). show_soldto_signed_in or show_soldto_not_signed_in
2).  More info can be found in populate.sql
2015-01-26 21:10:41 +00:00
Jonathan Rosenbaum
75bf45ad0e Adds sale date error span. 2015-01-26 19:32:43 +00:00
Jonathan Rosenbaum
fd7ad163cf Adds a check for obj.sold_to. 2015-01-26 19:18:46 +00:00
Jonathan Rosenbaum
50c740feb8 Adds a hidden input field to remember non-logged user value in edit trans. 2015-01-26 19:15:36 +00:00
Jonathan Rosenbaum
304c9e2f37 Added not logged-in logic for transaction edit, also:
1). Added error spans for transaction edit
2). Removed some css from transaction.js
3). Added css for errors to transaction.css
2015-01-26 18:52:16 +00:00
Jonathan Rosenbaum
934bc4438c Gives #1 trans and id of 0. 2015-01-26 02:43:47 +00:00
Jonathan Rosenbaum
deaa8ea02f Adds new logic to handle 1-only real depost.
1).  If 1 real deposit exists, and next real deposit hasn't been
     deposited.
2015-01-26 02:09:04 +00:00
Jonathan Rosenbaum
5e11243d41 Provides fake deposits when none or only 1 exists. 2015-01-25 23:53:08 +00:00