Fixes a bug where storage transactions don't show up in searches if NULL.

1.  Also adds a configuration for a directory to write/download csv files from.
2.  Including directions for the above.
This commit is contained in:
Jonathan Rosenbaum
2015-01-13 05:56:03 +00:00
parent bf2527e1cf
commit e168381a05
3 changed files with 21 additions and 3 deletions
+8
View File
@@ -266,6 +266,14 @@ $(function() {
}
});
// If storage date is NULL, update to 0000-00-00 on save
$("#save_transaction").click(function() {
if ( !$("#date").val().length ) {
$("#date").val("0000-00-00");
}
});
} // end testing for storage presentation