[OPEN-ILS-DEV] Patron Search

Grant Johnson fgjohnson at upei.ca
Mon May 25 16:09:45 EDT 2009


How much work would it be to add a "Search for Patron by username"?
and where would I look first ?

I expect I would start @ the ID bit from search_form.js.

					'ident' : [
						['render'],
						function(e) {
							return function() {
								if (params.query&&params.query.ident) {
									e.setAttribute('value',params.query.ident);
									e.value = params.query.ident;
								} else if (params.query&&params.query.ident_value) {
									e.setAttribute('value',params.query.ident_value);
									e.value = params.query.ident_value;
								} else if (params.query&&params.query.ident_value2) {
									e.setAttribute('value',params.query.ident_value2);
									e.value = params.query.ident_value2;
								} else {
									e.value = '';
								}
							};
						}
					],




More information about the Open-ils-dev mailing list