From: Mike Rylander Date: Fri, 4 Sep 2015 20:47:43 +0000 (-0400) Subject: webstaff: MARC editor button layout improvement X-Git-Tag: sprint4-merge-nov22~980 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=417e75f2120f1d31df4c355e5af3f808ef9d7e5e;p=working%2FEvergreen.git webstaff: MARC editor button layout improvement Also, add mark-vol-transfer-dest and mark-conjoined-dest Signed-off-by: Mike Rylander Signed-off-by: Galen Charlton Signed-off-by: Jason Stephenson --- diff --git a/Open-ILS/src/templates/staff/cat/share/t_marcedit.tt2 b/Open-ILS/src/templates/staff/cat/share/t_marcedit.tt2 index 9dea0d4072..dd6932cda0 100644 --- a/Open-ILS/src/templates/staff/cat/share/t_marcedit.tt2 +++ b/Open-ILS/src/templates/staff/cat/share/t_marcedit.tt2 @@ -1,5 +1,19 @@
+
+ +
+ + + + + + + + + +
+
@@ -27,7 +41,7 @@
-
+
@@ -36,17 +50,11 @@ - - -
-
- -
diff --git a/Open-ILS/web/js/ui/default/staff/cat/services/marcedit.js b/Open-ILS/web/js/ui/default/staff/cat/services/marcedit.js index a8df2aa8fe..d081f0cc93 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/services/marcedit.js +++ b/Open-ILS/web/js/ui/default/staff/cat/services/marcedit.js @@ -1110,6 +1110,14 @@ angular.module('egMarcMod', ['egCoreMod', 'ui.bootstrap']) alert($scope.record.toBreaker()); }; + $scope.markConjoined = function () { + egCore.hatch.setLocalItem('eg.cat.marked_conjoined_record',$scope.recordId); + }; + + $scope.markVolTransfer = function () { + egCore.hatch.setLocalItem('eg.cat.marked_volume_transfer_record',$scope.recordId); + }; + $scope.markOverlay = function () { egCore.hatch.setLocalItem('eg.cat.marked_overlay_record',$scope.recordId); };