[open-ils-commits] r13251 - trunk/Open-ILS/xul/staff_client/server/cat (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed May 27 16:16:39 EDT 2009


Author: dbs
Date: 2009-05-27 16:16:35 -0400 (Wed, 27 May 2009)
New Revision: 13251

Modified:
   trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js
Log:
Enable the 001 and 003 control fields to be edited
This can help resolve conflicting TCN values when importing records; just edit the 001 of the incoming record


Modified: trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js	2009-05-27 19:22:03 UTC (rev 13250)
+++ trunk/Open-ILS/xul/staff_client/server/cat/marcedit.js	2009-05-27 20:16:35 UTC (rev 13251)
@@ -1209,7 +1209,7 @@
 function marcControlfield (field) {
 	tagname = field. at tag.toString().substr(2);
 	var row;
-	if (tagname == '6' || tagname == '7' || tagname == '8') {
+	if (tagname == '1' || tagname == '3' || tagname == '6' || tagname == '7' || tagname == '8') {
 		row = createRow(
 			{ class : 'marcControlfieldRow',
 			  tag : '_' + tagname },



More information about the open-ils-commits mailing list