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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt (-1 / +3 lines)
Lines 64-70 Link Here
64
	// Checks if the form can be sent (at least one checkbox must be checked)
64
	// Checks if the form can be sent (at least one checkbox must be checked)
65
	function checkForm() {
65
	function checkForm() {
66
	    if ($("input:checked").length == 0) {
66
	    if ($("input:checked").length == 0) {
67
		alert(_("Please select at least one item."));
67
		alert(_("Please select at least one issue."));
68
		return false;
68
		return false;
69
	    }
69
	    }
70
	}
70
	}
Lines 276-281 Link Here
276
                        <th>Library</th>
276
                        <th>Library</th>
277
                        <th class="anti-the">Title</th>
277
                        <th class="anti-the">Title</th>
278
                        <th>Issue number</th>
278
                        <th>Issue number</th>
279
                        <th>ISSN</th>
279
                        <th>Status</th>
280
                        <th>Status</th>
280
                        <th class="title-string">Since</th>
281
                        <th class="title-string">Since</th>
281
                        <th>Claims count</th>
282
                        <th>Claims count</th>
Lines 294-299 Link Here
294
                        <td>
295
                        <td>
295
                        <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% missingissue.subscriptionid %]">[% missingissue.title |html %]</a>
296
                        <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% missingissue.subscriptionid %]">[% missingissue.title |html %]</a>
296
                        </td>
297
                        </td>
298
                        <td>[% missingissue.issn %]</td>
297
                        <td>[% missingissue.serialseq %]</td>
299
                        <td>[% missingissue.serialseq %]</td>
298
                        <td>
300
                        <td>
299
                            [% IF ( missingissue.status1 ) %]<span class="status-expected">Expected</span>[% END %]
301
                            [% IF ( missingissue.status1 ) %]<span class="status-expected">Expected</span>[% END %]
(-)a/t/db_dependent/Serials/Claims.t (-1 / +2 lines)
Lines 11-16 my $dbh = C4::Context->dbh; Link Here
11
$dbh->{AutoCommit} = 0;
11
$dbh->{AutoCommit} = 0;
12
$dbh->{RaiseError} = 1;
12
$dbh->{RaiseError} = 1;
13
13
14
$dbh->do(q|DELETE FROM issues|);
15
14
my $branchcode = 'CPL';
16
my $branchcode = 'CPL';
15
my $bpid = AddBudgetPeriod({
17
my $bpid = AddBudgetPeriod({
16
    budget_period_startdate   => '2015-01-01',
18
    budget_period_startdate   => '2015-01-01',
17
- 

Return to bug 5342