From ef555edc9031aaeb58633fbb4862c9375b1c4b83 Mon Sep 17 00:00:00 2001 From: Gregor Gawol <gawol@ub.uni-leipzig.de> Date: Wed, 29 Jan 2020 17:19:56 +0100 Subject: [PATCH] refs #16336 [fid_adlr] is record ordered * set get it box function in template * set info message * remove notice * moved ordered message to notice block --- .../fid_adlr/templates/RecordTab/acquisitionpda.phtml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/themes/fid_adlr/templates/RecordTab/acquisitionpda.phtml b/themes/fid_adlr/templates/RecordTab/acquisitionpda.phtml index ad70355033f..79214789213 100644 --- a/themes/fid_adlr/templates/RecordTab/acquisitionpda.phtml +++ b/themes/fid_adlr/templates/RecordTab/acquisitionpda.phtml @@ -32,6 +32,8 @@ if (!$offlineMode) { } // Set page title. $this->headTitle($this->driver->getBreadcrumb()); + +$isRecordOrdered = $this->getit($this->driver)->isRecordOrdered(); ?> <div class="getitbox-getit"> @@ -39,7 +41,7 @@ $this->headTitle($this->driver->getBreadcrumb()); <?=($offlineMode == "ils-offline") ? $this->render('Helpers/ils-offline.phtml', ['offlineModeMsg' => 'ils_offline_holdings_message']) : ''?> - <?php if ($user): ?> + <?php if ($user && !$isRecordOrdered): ?> <a class="btn btn-primary pda-button <?=$controllerClass?> full-order" data-lightbox href="<?=$this->url('record-fidpda', array('id' => $id))?>" rel="nofollow"> <?=$this->transEsc('getit_order')?> </a> @@ -59,7 +61,7 @@ $this->headTitle($this->driver->getBreadcrumb()); <?php endif; ?> </div> -<?php if (!empty($getitConfig['notice'])): ?> +<?php if (!empty($getitConfig['notice']) && !$isRecordOrdered): ?> <div class="getitbox-notices"> <?php $url = '<a href="'.$this->url('myresearch-account').'?auth_method='.$account->getAuthMethod().'" target="_blank" data-lightbox>'.$this->transEsc('getit_text_3_2').'</a>'; @@ -69,5 +71,9 @@ $this->headTitle($this->driver->getBreadcrumb()); <?=$this->transEsc('getit_availability')?>: <?=$this->driver->getDeliveryStatus()?> <?php endif; ?> </div> +<?php elseif ($user && $isRecordOrdered): ?> + <div class="getitbox-notices"> + <?=$this->translate('fid::acquisition_pda_ordered')?> + </div> <?php endif; ?> <!-- fid_adlr - recordtab - acquistionpda - END --> -- GitLab