From 9db272d7d5995442489047f2837edce6fe918827 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 11 May 2021 11:51:54 -0400 Subject: [PATCH] LP1904036 template repairs Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts b/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts index fc4a46a73e..30cf8019aa 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts @@ -43,6 +43,7 @@ export class CheckoutComponent implements OnInit, AfterViewInit { dueDate: string; dueDateOptions: 0 | 1 | 2 = 0; // auto date; specific date; session date printOnComplete = true; + strictBarcode = false; private copiesInFlight: {[barcode: string]: boolean} = {}; @@ -96,6 +97,9 @@ export class CheckoutComponent implements OnInit, AfterViewInit { noPrint.includes('Checkout') ); }); + + this.serverStore.getItem('circ.checkout.strict_barcode') + .then(strict => this.strictBarcode = strict); } ngAfterViewInit() { -- 2.11.0