From: Bill Erickson Date: Tue, 11 May 2021 15:51:54 +0000 (-0400) Subject: LP1904036 template repairs X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9db272d7d5995442489047f2837edce6fe918827;p=evergreen%2Fpines.git LP1904036 template repairs Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- 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() {