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

(-)a/C4/Serials.pm (-1 / +1 lines)
Lines 746-752 sub GetLatestSerials { Link Here
746
    my $dbh = C4::Context->dbh;
746
    my $dbh = C4::Context->dbh;
747
747
748
    my $statuses = join( ',', ( ARRIVED, MISSING_STATUSES ) );
748
    my $statuses = join( ',', ( ARRIVED, MISSING_STATUSES ) );
749
    my $strsth = "SELECT   serialid,serialseq, status, planneddate, publisheddate, notes
749
    my $strsth = "SELECT   serialid,serialseq, status, planneddate, publisheddate, publisheddatetext, notes
750
                        FROM     serial
750
                        FROM     serial
751
                        WHERE    subscriptionid = ?
751
                        WHERE    subscriptionid = ?
752
                        AND      status IN ($statuses)
752
                        AND      status IN ($statuses)
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +2 lines)
Lines 798-803 Note that permanent location is a code, and location may be an authval. Link Here
798
                    <th>Issue #</th>
798
                    <th>Issue #</th>
799
                    <th>Date arrived</th>
799
                    <th>Date arrived</th>
800
                    <th>Date published</th>
800
                    <th>Date published</th>
801
                    <th>Date published (text)</th>
801
                    <th>Status</th>
802
                    <th>Status</th>
802
                    <th>Note</th>
803
                    <th>Note</th>
803
                </tr>
804
                </tr>
Lines 806-811 Note that permanent location is a code, and location may be an authval. Link Here
806
                    <td>[% latestserial.serialseq | html %]</td>
807
                    <td>[% latestserial.serialseq | html %]</td>
807
                    <td data-order="[% latestserial.planneddate | html %]">[% latestserial.planneddate | $KohaDates %]</td>
808
                    <td data-order="[% latestserial.planneddate | html %]">[% latestserial.planneddate | $KohaDates %]</td>
808
                    <td data-order="[% latestserial.publisheddate | html %]">[% latestserial.publisheddate | $KohaDates %]</td>
809
                    <td data-order="[% latestserial.publisheddate | html %]">[% latestserial.publisheddate | $KohaDates %]</td>
810
                    <td>[% latestserial.publisheddatetext | html %]</td>
809
                    <td>
811
                    <td>
810
                      [% IF ( latestserial.status1 ) %]<span>Expected</span>[% END %]
812
                      [% IF ( latestserial.status1 ) %]<span>Expected</span>[% END %]
811
                      [% IF ( latestserial.status2 ) %]<span>Arrived</span>[% END %]
813
                      [% IF ( latestserial.status2 ) %]<span>Arrived</span>[% END %]
812
- 

Return to bug 33040