LPXXX Angular Volcopy
authorBill Erickson <berickxx@gmail.com>
Fri, 5 Jun 2020 20:28:39 +0000 (16:28 -0400)
committerBill Erickson <berickxx@gmail.com>
Fri, 5 Jun 2020 20:28:39 +0000 (16:28 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/staff/cat/volcopy/vol-edit.component.html
Open-ILS/src/eg2/src/app/staff/cat/volcopy/vol-edit.component.ts

index 4b849b9..42fd354 100644 (file)
       </button>
     </div>
   </div>
-  <div class="p-1" [ngStyle]="{flex: flexAt(8)}"></div>
+  <div class="p-1" [ngStyle]="{flex: flexAt(8)}">
+    <label class="font-weight-bold" i18n>Generate Barcodes</label>
+    <button class="btn btn-sm btn-outline-dark label-with-material-icon" 
+      (click)="generateBarcodes()">
+      <span i18n>Generate</span>
+      <span class="material-icons">arrow_downward</span>
+    </button>
+  </div>
   <div class="p-1" [ngStyle]="{flex: flexAt(9)}"></div>
   <div class="p-1" [ngStyle]="{flex: flexAt(10)}"></div>
 </div>
index f6e927c..6b9c33a 100644 (file)
@@ -200,5 +200,8 @@ export class VolEditComponent implements OnInit {
         this.renderer.selectRootElement(
                 '#barcode-input-' + (nextId || firstId)).select();
     }
+
+    generateBarcodes() {
+    }
 }