LP1821382 Booking menu entry placeholders
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / catalog / record / holdings.component.ts
index 6405b0d..555ac83 100644 (file)
@@ -871,4 +871,18 @@ export class HoldingsMaintenanceComponent implements OnInit {
             );
         }
     }
+
+    bookItems(rows: HoldingsEntry[]) {
+        const copyIds = this.selectedCopyIds(rows);
+        if (copyIds.length > 0) {
+            alert('TODO');
+        }
+    }
+
+    makeBookable(rows: HoldingsEntry[]) {
+        const copyIds = this.selectedCopyIds(rows);
+        if (copyIds.length > 0) {
+            alert('TODO');
+        }
+    }
 }