[Bug 16705] New: Status missing in Opac, serials subscription history
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Bug ID: 16705 Summary: Status missing in Opac, serials subscription history Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Serials Assignee: koha-bugs@lists.koha-community.org Reporter: duytinh.nguyen@live.fr QA Contact: testopia@bugs.koha-community.org CC: colin.campbell@ptfs-europe.com Status like Missing (never received), Missing (sold out), Missing (damaged), Missing (lost) can be assigned in Intranet, but missing in Opac. Related to bug_10851. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 --- Comment #1 from duy tinh <duy-tinh.nguyen@biblibre.com> --- Created attachment 52221 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=52221&action=edit Bug 16705 - Add missing status The bug is related to 10851. Due to add of status in 10851, status added were missing in opac-detail.tt and opac-full-serial-issues.tt. The patch just added these missing status. To test: 1) Create New subscription in Serials, in Intranet 2) Do a search of the new subscription by Title 3) Take Serial receive as Actions to edit the status to Missing (<something>) 4) Go to Opac and Search the subscription created, by its title and See missing status 5) Apply patch, status must be showed. 6) Sign off -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 --- Comment #2 from duy tinh <duy-tinh.nguyen@biblibre.com> --- Comment on attachment 52221 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=52221 Bug 16705 - Add missing status The bug is related to 10851. Due to add of status in 10851, status added were missing in opac-detail.tt and opac-full-serial-issues.tt. The patch just added these missing status.
From c5905e53f8b11af13743dce1ad88c89c2f09ba93 Mon Sep 17 00:00:00 2001 From: NguyenDuyTinh <duy-tinh.nguyen@biblibre.com> Date: Fri, 10 Jun 2016 10:14:12 +0000 Subject: [NEED SIGN OFF] Bug 16705 - Add missing status The bug is related to 10851. Due to add of status in 10851, status added were missing in opac-detail.tt and opac-full-serial-issues.tt. The patch just added these missing status.
To test: 1) Create New subscription in Serials, in Intranet 2) Do a search of the new subscription by Title 3) Take Serial receive as Actions to edit the status to Missing (<something>) 4) Go to Opac and Search the subscription created, by its title and See missing status 5) Apply patch, status must be showed. 6) Sign off --- .../opac-tmpl/bootstrap/en/modules/opac-detail.tt | 31 +++++++++------------- .../en/modules/opac-full-serial-issues.tt | 4 +++ 2 files changed, 16 insertions(+), 19 deletions(-)
diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt index fe72d01..fe8e606 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -832,25 +832,18 @@ <td>[% latestserial.serialseq %]</td> <td>[% latestserial.planneddate %]</td> <td> - [% IF ( latestserial.status1 ) %] - Awaited - [% ELSE %] - [% IF ( latestserial.status2 ) %] - Arrived - [% ELSE %] - [% IF ( latestserial.status3 ) %] - Late - [% ELSE %] - [% IF ( latestserial.status4 ) %] - Missing - [% ELSE %] - [% IF ( latestserial.status5 ) %] - Not issued - [% END %] - [% END %] - [% END %] - [% END %] - [% END %] + [% IF (latestserial.status1 ) %]Expected[% END %] + [% IF (latestserial.status2 ) %]Arrived[% END %] + [% IF (latestserial.status3 ) %]Late[% END %] + [% IF (latestserial.status4 ) %]Missing[% END %] + [% IF (latestserial.status41 ) %]Missing (never received)[% END %] + [% IF (latestserial.status42 ) %]Missing (sold out)[% END %] + [% IF (latestserial.status43 ) %]Missing (damaged)[% END %] + [% IF (latestserial.status44 ) %]Missing (lost)[% END %] + [% IF (latestserial.status5 ) %]Not issued[% END %] + [% IF (latestserial.status6 ) %]Delete[% END %] + [% IF (latestserial.status7 ) %]Claimed[% END %] + [% IF (latestserial.status8 ) %]Stopped[% END %] </td> <td>[% latestserial.notes %]</td> </tr> diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt index dbe1e11..e633dd3 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt @@ -112,6 +112,10 @@ [% IF ( serial.status2 ) %]Arrived[% END %] [% IF ( serial.status3 ) %]Late[% END %] [% IF ( serial.status4 ) %]Missing[% END %] + [% IF ( serial.status41 ) %]Missing (never received)[% END %] + [% IF ( serial.status42 ) %]Missing (sold out)[% END %] + [% IF ( serial.status43 ) %]Missing (damaged)[% END %] + [% IF ( serial.status44 ) %]Missing (lost)[% END %] [% IF ( serial.status5 ) %]Not available[% END %] [% IF ( serial.status6 ) %]Delete[% END %] [% IF ( serial.status7 ) %]Claimed[% END %] -- 2.7.4
-- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 duy tinh <duy-tinh.nguyen@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Marc Véron <veron@veron.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #52221|0 |1 is obsolete| | --- Comment #3 from Marc Véron <veron@veron.ch> --- Created attachment 52442 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=52442&action=edit Bug 16705 - Add missing status The bug is related to 10851. Due to add of status in 10851, status added were missing in opac-detail.tt and opac-full-serial-issues.tt. The patch just added these missing status. To test: 1) Create New subscription in Serials, in Intranet 2) Do a search of the new subscription by Title 3) Take Serial receive as Actions to edit the status to Missing (<something>) 4) Go to Opac and Search the subscription created, by its title and See missing status 5) Apply patch, status must be showed. 6) Sign off Followed test plan, works as expected. Signed-off-by: Marc Véron <veron@veron.ch> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 --- Comment #4 from Marc Véron <veron@veron.ch> --- Created attachment 52443 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=52443&action=edit Bug 16705 - Add missing status to serials history in OPAC The bug is related to 10851. Due to add of status in 10851, status added were missing in opac-detail.tt and opac-full-serial-issues.tt. The patch just added these missing status. To test: 1) Create New subscription in Serials, in Intranet 2) Do a search of the new subscription by Title 3) Take Serial receive as Actions to edit the status to Missing (<something>) 4) Go to Opac and Search the subscription created, by its title and See missing status 5) Apply patch, status must be showed. 6) Sign off Followed test plan, works as expected. Amended to format commit title and message. Signed-off-by: Marc Véron <veron@veron.ch> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Marc Véron <veron@veron.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch CC| |veron@veron.ch Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |duy-tinh.nguyen@biblibre.co |ity.org |m CC| |katrin.fischer@bsz-bw.de -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #52442|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #52443|0 |1 is obsolete| | --- Comment #5 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 52545 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=52545&action=edit [PASSED QA] Bug 16705 - Add missing status to serials history in OPAC The bug is related to 10851. Due to add of status in 10851, status added were missing in opac-detail.tt and opac-full-serial-issues.tt. The patch just added these missing status. To test: 1) Create New subscription in Serials, in Intranet 2) Do a search of the new subscription by Title 3) Take Serial receive as Actions to edit the status to Missing (<something>) 4) Go to Opac and Search the subscription created, by its title and See missing status 5) Apply patch, status must be showed. 6) Sign off Followed test plan, works as expected. Amended to format commit title and message. Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Kyle M Hall <kyle@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle@bywatersolutions.com Status|Passed QA |Pushed to Master --- Comment #6 from Kyle M Hall <kyle@bywatersolutions.com> --- Pushed to master for Koha 16.11, thanks Duy Tinh! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Frédéric Demians <frederic@tamil.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic@tamil.fr --- Comment #7 from Frédéric Demians <frederic@tamil.fr> --- Pushed in 16.05. Will be in 16.05.02. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Frédéric Demians <frederic@tamil.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to Master |Pushed to Stable -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16705 Julian Maurice <julian.maurice@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julian.maurice@biblibre.com --- Comment #8 from Julian Maurice <julian.maurice@biblibre.com> --- Patches pushed to 3.22.x, will be in 3.22.10 -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org