Bugzilla – Attachment 120645 Details for
Bug 15516
Allow to place a hold on first available item from a group of titles
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15516: Allow to reserve first available item from a group of titles
Bug-15516-Allow-to-reserve-first-available-item-fr.patch (text/plain), 19.30 KB, created by
Victor Grousset/tuxayo
on 2021-05-07 00:30:18 UTC
(
hide
)
Description:
Bug 15516: Allow to reserve first available item from a group of titles
Filename:
MIME Type:
Creator:
Victor Grousset/tuxayo
Created:
2021-05-07 00:30:18 UTC
Size:
19.30 KB
patch
obsolete
>From f77576494d60303b70ab6b318de2413998eb2fe4 Mon Sep 17 00:00:00 2001 >From: Aleisha Amohia <aleishaamohia@hotmail.com> >Date: Mon, 1 Mar 2021 15:28:18 +1300 >Subject: [PATCH] Bug 15516: Allow to reserve first available item from a group > of titles > >It can be useful, for instance, if a library has the same title from >different publishers (so 1 title but several biblio records) but the >user only wants a copy of the book, regardless of the publisher. > >This feature only applies to the staff client. > >Test plan: >0. Run updatedatabase.pl and misc/devel/update_dbix_class_files.pl >1. Go to intranet search, display some results, click on some checkboxes >and click on 'Place hold' button at the top of the results. >2. Search for a patron >3. Check the 'Treat as hold group' checkbox >4. Click on 'Place hold' >5. In the next screen you should see all the holds you placed with the >additional text '(part of a hold group)' in Details column. >6. Click on the "hold group" link. A modal window should appear with >the content of the hold group (a list of holds) >7. Check in an item of one of the reserved biblios and confirm the hold >8. The hold status is changed to Waiting, and all other holds are deleted. >Note: the "hold group" link is displayed in the following pages: >- reserve/request.pl >- circ/circulation.pl >- members/moremember.pl >- circ/pendingreserves.pl >Note: A hold group is counted as only one hold > >Sponsored-by: Catalyst IT > >Signed-off-by: Michal Denar <black23@gmail.com> >Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> >--- > .../prog/en/includes/hold-group-modal.inc | 15 +++++++ > .../prog/en/includes/holds_table.inc | 3 ++ > .../prog/en/modules/circ/circulation.tt | 3 ++ > .../prog/en/modules/circ/pendingreserves.tt | 6 +++ > .../prog/en/modules/members/moremember.tt | 3 ++ > .../prog/en/modules/reserve/hold-group.tt | 30 ++++++++++++++ > .../prog/en/modules/reserve/request.tt | 17 ++++++-- > koha-tmpl/intranet-tmpl/prog/js/hold-group.js | 8 ++++ > koha-tmpl/intranet-tmpl/prog/js/holds.js | 6 +++ > opac/opac-reserve.pl | 2 +- > reserve/hold-group.pl | 41 +++++++++++++++++++ > reserve/placerequest.pl | 9 ++++ > reserve/request.pl | 1 + > svc/holds | 1 + > 14 files changed, 140 insertions(+), 5 deletions(-) > create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/hold-group-modal.inc > create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/reserve/hold-group.tt > create mode 100644 koha-tmpl/intranet-tmpl/prog/js/hold-group.js > create mode 100644 reserve/hold-group.pl > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/hold-group-modal.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/hold-group-modal.inc >new file mode 100644 >index 0000000000..2b011dbf46 >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/hold-group-modal.inc >@@ -0,0 +1,15 @@ >+<div id="hold-group-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="hold-group-modal-label"> >+ <div class="modal-dialog" role="document"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >+ <h4 class="modal-title" id="hold-group-modal-label">Hold group</h4> >+ </div> >+ <div class="modal-body"> >+ </div> >+ <div class="modal-footer"> >+ <button type="button" class="btn btn-default deny" data-dismiss="modal">Close</button> >+ </div> >+ </div><!-- /.modal-content --> >+ </div><!-- /.modal-dialog --> >+</div><!-- /.modal --> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >index 59f33cd2a0..a200baa286 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >@@ -177,6 +177,9 @@ > [% IF hold.non_priority %] > <br><i>Non priority hold</i> > [% END %] >+ [% IF hold.hold_group_id %] >+ <div>(part of a <a href="/cgi-bin/koha/reserve/hold-group.pl?hold_group_id=[% hold.hold_group_id %]" class="hold-group">hold group</a>)</div> >+ [% END %] > </td> > > [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index fb3abec220..f553b24f24 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -1165,6 +1165,8 @@ > </div> <!-- /.modal-dialog --> > </div> <!-- /#barcodeSubmittedModal --> > >+[% INCLUDE 'hold-group-modal.inc' %] >+ > [% MACRO jsinclude BLOCK %] > [% INCLUDE 'calendar.inc' %] > [% INCLUDE 'datatables.inc' %] >@@ -1198,6 +1200,7 @@ > [% Asset.js("js/checkouts.js") | $raw %] > [% Asset.js("js/holds.js") | $raw %] > [% Asset.js("js/circ-patron-search-results.js") | $raw %] >+ [% Asset.js("js/hold-group.js") | $raw %] > <script> > columns_settings_issues_table = [% TablesSettings.GetColumns( 'circ', 'circulation', 'issues-table', 'json' ) | $raw %] > columns_settings_borrowers_table = [% TablesSettings.GetColumns( 'circ', 'circulation', 'table_borrowers', 'json' ) | $raw %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >index fb90eeacdd..996f7610d6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >@@ -106,6 +106,9 @@ > [% ELSE %] > [% IF ( biblio.biblioitem.publicationyear ) %]<p>[% biblio.biblioitem.publicationyear | html %]</p>[% END %] > [% END %] >+ [% IF ( hold.hold_group_id ) %] >+ <p>(part of a <a class="hold-group" href="/cgi-bin/koha/reserve/hold-group.pl?hold_group_id=[% hold.hold_group_id | html %]">hold group</a>)</p> >+ [% END %] > </td> > [% ELSE %] > <td>"</td> >@@ -295,10 +298,13 @@ > </div> <!-- /.col-sm-2.col-sm-pull-10 --> > </div> <!-- /.row --> > >+ [% INCLUDE 'hold-group-modal.inc' %] >+ > [% MACRO jsinclude BLOCK %] > [% INCLUDE 'calendar.inc' %] > [% INCLUDE 'datatables.inc' %] > [% INCLUDE 'columns_settings.inc' %] >+ [% Asset.js("js/hold-group.js") | $raw %] > <script> > $(document).ready(function() { > var columns_settings = [% TablesSettings.GetColumns('circ', 'holds', 'holds-to-pull', 'json') | $raw %]; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >index eaa0d18841..2fda1362bb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >@@ -926,6 +926,8 @@ > </div> <!-- /.col-sm-2.col-sm-pull-10 --> > </div> <!-- /.row --> > >+ [% INCLUDE 'hold-group-modal.inc' %] >+ > [% MACRO jsinclude BLOCK %] > [% INCLUDE 'datatables.inc' %] > [% Asset.js("lib/jquery/plugins/rowGroup/dataTables.rowGroup.min.js") | $raw %] >@@ -961,6 +963,7 @@ > [% INCLUDE 'str/members-menu.inc' %] > [% Asset.js("js/members-menu.js") | $raw %] > [% Asset.js("js/messaging-preference-form.js") | $raw %] >+ [% Asset.js("js/hold-group.js") | $raw %] > <script> > > columns_settings_issues_table = [% TablesSettings.GetColumns( 'members', 'moremember', 'issues-table', 'json' ) | $raw %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/hold-group.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/hold-group.tt >new file mode 100644 >index 0000000000..8eaff99201 >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/hold-group.tt >@@ -0,0 +1,30 @@ >+[% INCLUDE 'doc-head-open.inc' %] >+ <title>Koha › Circulation › Holds › Holds group ([% hold_group.id | html %])</title> >+ [% INCLUDE 'doc-head-close.inc' %] >+</head> >+<body id="hold-group"> >+ <h1>Holds group ([% hold_group.id | html %])</h1> >+ <div id="main"> >+ [% holds = hold_group.holds %] >+ [% IF holds.count %] >+ <table> >+ <thead> >+ <tr> >+ <th>Title</th> >+ <th>Priority</th> >+ <th>Notes</th> >+ </tr> >+ </thead> >+ <tbody> >+ [% FOREACH hold IN holds %] >+ [% biblio = hold.biblio %] >+ <tr> >+ <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblio.biblionumber | uri %]">[% biblio.title | html %]</a></td> >+ <td>[% hold.priority %]</td> >+ <td>[% hold.reservenotes %]</td> >+ </tr> >+ [% END %] >+ </tbody> >+ <table> >+ [% END %] >+ [% INCLUDE 'intranet-bottom.inc' %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index 1a397b07ef..e1de137209 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -483,7 +483,7 @@ > > [% UNLESS ( multi_hold ) %] > <li> >- <label for="requestany">Hold next available item </label> >+ <label for="requestany">Hold next available item: </label> > [% IF force_hold_level == 'item' %] > <input type="checkbox" id="requestany" name="request" disabled="true" /> > [% ELSIF force_hold_level == 'record' %] >@@ -498,7 +498,7 @@ > > [% IF remaining_holds_for_record > 1 %] > <li> >- <label for="holds_to_place_count">Holds to place (count)</label> >+ <label for="holds_to_place_count">Holds to place (count): </label> > <input type="text" inputmode="numeric" pattern="[0-9]*" id="holds_to_place_count" name="holds_to_place_count" maxlength="[% remaining_holds_for_record | html %]" value="1" /> > </li> > [% ELSE %] >@@ -511,6 +511,12 @@ > <input name="non_priority" id="non_priority" type="checkbox" /> > <span class="hint">A non priority hold doesn't prevent a current checkout from renewing</span> > </li> >+ >+ <li id="hold_group_list_item"> >+ <label for="hold_group">Treat as hold group: </label> >+ <input name="hold_group" id="hold_group" type="checkbox" /> >+ <span class="hint">Place a hold on the next available title from this group</span> >+ </li> > </ol> > > [% UNLESS ( multi_hold ) %] >@@ -584,9 +590,9 @@ > Hold must be record level > </span> > [% ELSIF ( itemloo.available ) %] >- <input type="radio" name="checkitem" value="[% itemloo.itemnumber | html %]" /> >+ <input type="checkbox" name="checkitem" value="[% itemloo.itemnumber | html %]" /> > [% ELSIF ( itemloo.override ) %] >- <input type="radio" name="checkitem" class="needsoverride" value="[% itemloo.itemnumber | html %]" /> >+ <input type="checkbox" name="checkitem" class="needsoverride" value="[% itemloo.itemnumber | html %]" /> > <i class="fa fa-exclamation-triangle fa-lg" style="color:gold" title="Requires override of hold policy"/></i> > [% ELSE %] > <span class="error"> >@@ -1015,6 +1021,8 @@ > </div> > </div> > >+ [% INCLUDE 'hold-group-modal.inc' %] >+ > [% MACRO jsinclude BLOCK %] > [% INCLUDE 'datatables.inc' %] > [% INCLUDE 'calendar.inc' %] >@@ -1022,6 +1030,7 @@ > [% Asset.js("lib/hc-sticky.js") | $raw %] > [% Asset.js("js/circ-patron-search-results.js") | $raw %] > [% INCLUDE 'select2.inc' %] >+ [% Asset.js("js/hold-group.js") | $raw %] > <script> > var Sticky; > var biblionumber = "[% biblionumber | $raw %]"; >diff --git a/koha-tmpl/intranet-tmpl/prog/js/hold-group.js b/koha-tmpl/intranet-tmpl/prog/js/hold-group.js >new file mode 100644 >index 0000000000..4e95fc0318 >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/js/hold-group.js >@@ -0,0 +1,8 @@ >+$(document).ready(function() { >+ $('body').on('click', 'a.hold-group', function() { >+ var href = $(this).attr('href'); >+ $('#hold-group-modal .modal-body').load(href + " #main"); >+ $('#hold-group-modal').modal('show'); >+ return false; >+ }); >+}); >diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js >index e076fa5536..df30fb2e45 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/holds.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js >@@ -50,6 +50,12 @@ $(document).ready(function() { > title += " - <span class='" + span_class + "'>" + oObj.itemnotes.escapeHtml() + "</span>" > } > >+ if ( oObj.hold_group_id ) { >+ title += '<br>'; >+ var link = '<a class="hold-group" href="/cgi-bin/koha/reserve/hold-group.pl?hold_group_id=' + oObj.hold_group_id + '">' + __("part of a hold group") +'</a>' >+ title += '<span>(' + link + ')</span>'; >+ } >+ > return title; > } > }, >diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl >index a6182400ad..638cbfc1cf 100755 >--- a/opac/opac-reserve.pl >+++ b/opac/opac-reserve.pl >@@ -196,7 +196,7 @@ foreach my $biblioNumber (@biblionumbers) { > if ( $query->param('place_reserve') ) { > my $reserve_cnt = 0; > if ($maxreserves) { >- $reserve_cnt = $patron->holds->count; >+ $reserve_cnt = $patron->holds->count_grouped; > } > > # List is composed of alternating biblio/item/branch >diff --git a/reserve/hold-group.pl b/reserve/hold-group.pl >new file mode 100644 >index 0000000000..6fa25057d1 >--- /dev/null >+++ b/reserve/hold-group.pl >@@ -0,0 +1,41 @@ >+#!/usr/bin/env perl >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+use CGI qw( -utf8 ); >+ >+use C4::Auth; >+use C4::Output; >+use Koha::HoldGroups; >+ >+my $cgi = new CGI; >+my ($template, $loggedinuser, $cookie) = get_template_and_user({ >+ template_name => "reserve/hold-group.tt", >+ query => $cgi, >+ type => "intranet", >+ authnotrequired => 0, >+ flagsrequired => { circulate => 'circulate_remaining_permissions' }, >+}); >+ >+my $reserve_group_id = $cgi->param('hold_group_id'); >+my $hold_group = Koha::HoldGroups->find($reserve_group_id); >+ >+$template->param( >+ hold_group => $hold_group, >+); >+ >+output_html_with_http_headers $cgi, $cookie, $template->output; >diff --git a/reserve/placerequest.pl b/reserve/placerequest.pl >index ea81592ef0..3b107e3cf1 100755 >--- a/reserve/placerequest.pl >+++ b/reserve/placerequest.pl >@@ -34,6 +34,7 @@ use C4::Auth qw/checkauth/; > > use Koha::Items; > use Koha::Patrons; >+use Koha::HoldGroup; > > my $input = CGI->new(); > >@@ -53,6 +54,7 @@ my $checkitem = $input->param('checkitem'); > my $expirationdate = $input->param('expiration_date'); > my $itemtype = $input->param('itemtype') || undef; > my $non_priority = $input->param('non_priority'); >+my $hold_group = $input->param('hold_group') || undef; > > my $borrower = Koha::Patrons->find( $borrowernumber ); > $borrower = $borrower->unblessed if $borrower; >@@ -76,6 +78,10 @@ my $found; > > if ( $type eq 'str8' && $borrower ) { > >+ if ( @biblionumbers > 1 && $hold_group ) { >+ $hold_group = Koha::HoldGroup->new->store; >+ } >+ > foreach my $biblionumber ( keys %bibinfos ) { > my $count = @bibitems; > @bibitems = sort @bibitems; >@@ -116,6 +122,7 @@ if ( $type eq 'str8' && $borrower ) { > found => $found, > itemtype => $itemtype, > non_priority => $non_priority, >+ hold_group_id => $hold_group ? $hold_group->id : undef, > } > ); > >@@ -138,6 +145,7 @@ if ( $type eq 'str8' && $borrower ) { > found => $found, > itemtype => $itemtype, > non_priority => $non_priority, >+ hold_group_id => $hold_group ? $hold_group->id : undef, > } > ); > } >@@ -159,6 +167,7 @@ if ( $type eq 'str8' && $borrower ) { > found => $found, > itemtype => $itemtype, > non_priority => $non_priority, >+ hold_group_id => $hold_group ? $hold_group->id : undef, > } > ); > } >diff --git a/reserve/request.pl b/reserve/request.pl >index 49d8a2fa26..f497fbdc08 100755 >--- a/reserve/request.pl >+++ b/reserve/request.pl >@@ -695,6 +695,7 @@ foreach my $biblionumber (@biblionumbers) { > $reserve{branchcode} = $res->branchcode(); > $reserve{non_priority} = $res->non_priority(); > $reserve{object} = $res; >+ $reserve{hold_group_id} = $res->hold_group_id; > > push( @reserveloop, \%reserve ); > } >diff --git a/svc/holds b/svc/holds >index 5e0a9d91fb..322ad6bcc3 100755 >--- a/svc/holds >+++ b/svc/holds >@@ -114,6 +114,7 @@ while ( my $h = $holds_rs->next() ) { > waiting_here => $h->branch()->branchcode() eq $branch, > priority => $h->priority(), > itemtype_limit => $itemtype_limit, >+ hold_group_id => $h->hold_group_id, > reservedate_formatted => $h->reservedate() ? output_pref( > { dt => dt_from_string( $h->reservedate() ), dateonly => 1 } > ) >-- >2.31.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 15516
:
46392
|
47498
|
47570
|
47961
|
47962
|
47963
|
48097
|
48098
|
48448
|
48449
|
50094
|
50095
|
50096
|
53742
|
53743
|
53744
|
53770
|
53771
|
53772
|
53774
|
53775
|
53776
|
54977
|
55300
|
55304
|
55305
|
55306
|
55307
|
55308
|
55768
|
55769
|
55770
|
55771
|
55772
|
58799
|
58800
|
58801
|
58802
|
58803
|
59314
|
59315
|
59316
|
59317
|
59318
|
69902
|
69903
|
69904
|
69905
|
69906
|
72485
|
72486
|
72487
|
72488
|
72489
|
72491
|
79077
|
79078
|
79080
|
79081
|
79082
|
79083
|
79213
|
79214
|
79215
|
79216
|
79217
|
79218
|
79219
|
79220
|
79221
|
79222
|
81453
|
81454
|
81455
|
81456
|
81457
|
81458
|
81459
|
81460
|
81461
|
81462
|
81463
|
84554
|
84555
|
84556
|
84557
|
84558
|
84559
|
84560
|
84561
|
84562
|
84563
|
84564
|
87828
|
87829
|
87830
|
87831
|
87832
|
87833
|
87834
|
87835
|
87836
|
87837
|
87838
|
88038
|
88039
|
88125
|
88173
|
88174
|
88175
|
88176
|
88177
|
88178
|
88179
|
88180
|
88181
|
88182
|
88183
|
88184
|
88185
|
88186
|
90289
|
90290
|
90291
|
90292
|
90293
|
90294
|
90295
|
90296
|
90297
|
90298
|
90299
|
90300
|
90301
|
90302
|
90303
|
90829
|
90830
|
90831
|
90832
|
90833
|
90834
|
90835
|
90836
|
90837
|
90838
|
90839
|
90840
|
90841
|
90842
|
90843
|
90844
|
92783
|
92784
|
92785
|
92786
|
92787
|
92788
|
92789
|
92790
|
92791
|
92792
|
92793
|
92794
|
92795
|
92796
|
92797
|
92798
|
114513
|
114514
|
114515
|
114516
|
114517
|
114518
|
114585
|
114586
|
114603
|
114624
|
114625
|
114626
|
114627
|
114628
|
114629
|
114630
|
114631
|
114632
|
114633
|
114634
|
114635
|
114636
|
114637
|
114638
|
114639
|
114640
|
114641
|
114642
|
114643
|
114644
|
114645
|
114647
|
114648
|
114649
|
114650
|
114651
|
114652
|
114653
|
114654
|
114655
|
114656
|
114657
|
114658
|
114659
|
117423
|
117424
|
117425
|
117426
|
118281
|
118282
|
118283
|
118284
|
118285
|
118286
|
118350
|
118351
|
118352
|
118353
|
118354
|
118355
|
120368
|
120369
|
120370
|
120371
|
120372
|
120373
|
120574
|
120643
|
120644
|
120645
|
120646
|
120647
|
120648
|
120649
|
120650
|
120651
|
121523
|
121623
|
122097
|
122102
|
122627
|
128189
|
128190
|
128191
|
128192
|
128193
|
128194
|
128195
|
128196
|
128197
|
128198
|
128199
|
128200
|
128201
|
128202
|
128255
|
128256
|
128257
|
128258
|
128259
|
128260
|
128261
|
128262
|
128263
|
128264
|
128265
|
128266
|
128267
|
128268
|
128269
|
128285
|
128286
|
128287
|
128288
|
128289
|
128290
|
128291
|
128292
|
128293
|
128294
|
128295
|
128296
|
128297
|
128298
|
128299
|
138576
|
138577
|
138578
|
138579
|
138580
|
138581
|
138582
|
138583
|
138584
|
138585
|
138586
|
138587
|
138588
|
138589
|
138593
|
138594
|
138595
|
138596
|
138597
|
138738
|
138739
|
138740
|
138741
|
138742
|
138772
|
138868
|
138869
|
162076
|
162077
|
162078
|
162079
|
162080
|
162081
|
162082
|
162083
|
162084