View | Details | Raw Unified | Return to bug 5143
Collapse All | Expand All

(-)a/circ/view_holdsqueue.pl (-1 / +7 lines)
Lines 96-102 sub GetHoldsQueueItems { Link Here
96
	$sth->execute(@bind_params);
96
	$sth->execute(@bind_params);
97
	my $items = [];
97
	my $items = [];
98
    while ( my $row = $sth->fetchrow_hashref ){
98
    while ( my $row = $sth->fetchrow_hashref ){
99
		$row->{reservedate} = format_date($row->{reservedate});
99
	$row->{reservedate} = format_date($row->{reservedate});
100
	my $record = GetMarcBiblio($row->{biblionumber});
101
    if ($record){
102
        $row->{subtitle} = GetRecordValue('subtitle',$record,'')->[0]->{subfield};
103
	    $row->{parts} = GetRecordValue('parts',$record,'')->[0]->{subfield};
104
	    $row->{numbers} = GetRecordValue('numbers',$record,'')->[0]->{subfield};
105
	}
100
        push @$items, $row;
106
        push @$items, $row;
101
    }
107
    }
102
    return $items;
108
    return $items;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tmpl (+3 lines)
Lines 42-52 function confirmnotdup(){ Link Here
42
 * 
42
 * 
43
 */
43
 */
44
function Check(dest){
44
function Check(dest){
45
    alert("WHAT!!");
45
    var StrAlert = AreMandatoriesNotOk();
46
    var StrAlert = AreMandatoriesNotOk();
47
    alert("didnt get here");
46
    if( ! StrAlert ){
48
    if( ! StrAlert ){
47
        document.f.submit();
49
        document.f.submit();
48
        return true;
50
        return true;
49
    } else {
51
    } else {
52
        alert("test");
50
        alert(StrAlert);
53
        alert(StrAlert);
51
        return false;
54
        return false;
52
    }
55
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tmpl (-2 / +2 lines)
Lines 45-51 Link Here
45
	</thead>
45
	</thead>
46
     <tbody><!-- TMPL_LOOP NAME="itemsloop"-->
46
     <tbody><!-- TMPL_LOOP NAME="itemsloop"-->
47
        <tr>
47
        <tr>
48
            <td><p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->"><strong><!-- TMPL_VAR NAME="title" escape="html"--></strong></a></p> 
48
            <td><p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->"><strong><!-- TMPL_VAR NAME="title" escape="html"--></strong></a></p>
49
	    <p><!-- TMPL_VAR NAME="subtitle" ESCAPE="HTML"--> <!-- TMPL_VAR NAME="parts" --> <!-- TMPL_VAR NAME="numbers" --></p>
49
			<p><strong><!-- TMPL_VAR NAME="author" --></strong>
50
			<p><strong><!-- TMPL_VAR NAME="author" --></strong>
50
			<!-- TMPL_IF name="publishercode" --><!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
51
			<!-- TMPL_IF name="publishercode" --><!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
51
										<!-- TMPL_IF name="publicationyear" -->, <!-- TMPL_VAR name="publicationyear" -->
52
										<!-- TMPL_IF name="publicationyear" -->, <!-- TMPL_VAR name="publicationyear" -->
52
- 

Return to bug 5143