Replace EXPR.

Prevents log error:
	EXPR:at pos 14: non-initialized variable notforloantext

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
Joe Atzberger 2008-06-20 14:36:31 -05:00 committed by Joshua Ferraro
parent 38bf3b1e18
commit 757f42d94b
2 changed files with 4 additions and 1 deletions

View file

@ -94,6 +94,9 @@ foreach my $item (@items){
$item->{'datelastseen'} = format_date($item->{'datelastseen'}); $item->{'datelastseen'} = format_date($item->{'datelastseen'});
$item->{'ordernumber'} = $ordernum; $item->{'ordernumber'} = $ordernum;
$item->{'booksellerinvoicenumber'} = $order->{'booksellerinvoicenumber'}; $item->{'booksellerinvoicenumber'} = $order->{'booksellerinvoicenumber'};
if ($item->{notforloantext} or $item->{itemlost} or $item->{damaged} or $item->{wthdrawn}) {
$item->{status_advisory} = 1;
}
if (C4::Context->preference("IndependantBranches")) { if (C4::Context->preference("IndependantBranches")) {
#verifying rights #verifying rights

View file

@ -50,7 +50,7 @@
<!-- TMPL_IF NAME="copyvol" --><li><span class="label">Copy / Vol :</span> <!-- TMPL_VAR NAME="copyvol" -->&nbsp;</li> <!-- /TMPL_IF --> <!-- TMPL_IF NAME="copyvol" --><li><span class="label">Copy / Vol :</span> <!-- TMPL_VAR NAME="copyvol" -->&nbsp;</li> <!-- /TMPL_IF -->
<!-- TMPL_IF NAME="replacementprice" --><li><span class="label">Replacement Price:</span> <!-- TMPL_VAR NAME="replacementprice" -->&nbsp;</li> <!-- /TMPL_IF --> <!-- TMPL_IF NAME="replacementprice" --><li><span class="label">Replacement Price:</span> <!-- TMPL_VAR NAME="replacementprice" -->&nbsp;</li> <!-- /TMPL_IF -->
</ol></div> </ol></div>
<div class="listgroup"><h4>Statuses <!-- TMPL_IF EXPR="notforloantext || itemlost || damaged || wthdrawn" -->( <div class="listgroup"><h4>Statuses <!-- TMPL_IF NAME="status_advisory" -->(
<!-- TMPL_IF name="notforloantext" --><!-- TMPL_VAR name="notforloantext" --> <!-- /TMPL_IF --> <!-- TMPL_IF name="notforloantext" --><!-- TMPL_VAR name="notforloantext" --> <!-- /TMPL_IF -->
<!-- TMPL_IF name="itemlost"-->Lost<!-- /TMPL_IF --> <!-- TMPL_IF name="itemlost"-->Lost<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="damaged" -->Damaged<!-- /TMPL_IF --> <!-- TMPL_IF NAME="damaged" -->Damaged<!-- /TMPL_IF -->