LP1904036 Checkin grid get Edit Items action
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / circ / checkin / checkin.component.ts
index d072adc..f95481f 100644 (file)
@@ -421,6 +421,14 @@ export class CheckinComponent implements OnInit, AfterViewInit {
         this.holdings.spawnAddHoldingsUi(null, null, null, ids);
     }
 
+    editItems(rows: CheckinGridEntry[]) {
+        const ids = this.getCopyIds(rows);
+        if (ids.length === 0) { return; }
+
+        this.holdings.spawnAddHoldingsUi(null, null, null, ids, false, true);
+    }
+
+
     openItemPrintLabels(rows: CheckinGridEntry[]) {
         const ids = this.getCopyIds(rows);
         if (ids.length === 0) { return; }