Bug 33908: Improve translation of title tags: Acquisitions
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / basket.tt
1 [% USE Koha %]
2 [% USE raw %]
3 [% USE Asset %]
4 [% PROCESS 'i18n.inc' %]
5 [% BLOCK csv_export %]
6     <div class="btn-group">
7         <a id="exportbutton" class="btn btn-default" href="[% script_name | url %]?op=export&amp;basketno=[% basketno | uri %]&amp;booksellerid=[% booksellerid | uri %]"><i class="fa fa-download"></i> Export as CSV</a>
8         <a class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
9         <ul class="dropdown-menu" id="export-csv-menu">
10             <li><a href="#">Default</a></li>
11             [% IF csv_profiles.count %]
12                 [% FOR csv IN csv_profiles %]
13                     <li><a href="#" data-value="[% csv.export_format_id | html %]">[% csv.profile | html %]</a></li>
14                 [% END %]
15             [% END %]
16         </ul>
17     </div>
18 [% END %]
19 [% USE KohaDates %]
20 [% USE Branches %]
21 [% USE Price %]
22 [% USE AuthorisedValues %]
23 [% USE TablesSettings %]
24 [% SET footerjs = 1 %]
25 [% INCLUDE 'doc-head-open.inc' %]
26 <title>[% FILTER collapse %]
27     [% tx("Basket {basketname} ({basketnumber}) for {vendor}", { basketname = basketname, basketnumber = basketno, vendor = booksellername }) | html %] &rsaquo;
28     [% t("Acquisitions") | html %] &rsaquo;
29     [% t("Koha") | html %]
30 [% END %]</title>
31 [% INCLUDE 'doc-head-close.inc' %]
32 <style>
33     .sortmsg {font-size: 80%;}
34 </style>
35 </head>
36
37 <body id="acq_basket" class="acq">
38 [% WRAPPER 'header.inc' %]
39     [% INCLUDE 'acquisitions-search.inc' %]
40 [% END %]
41
42 [% WRAPPER 'sub-header.inc' %]
43     [% WRAPPER breadcrumbs %]
44         [% WRAPPER breadcrumb_item %]
45             <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
46         [% END %]
47         [% WRAPPER breadcrumb_item %]
48             <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% booksellername | html %]</a>
49         [% END %]
50         [% WRAPPER breadcrumb_item bc_active= 1 %]
51             [% UNLESS ( basketno ) %]
52                 [% IF ( delete_confirmed ) %]
53                     <span>Deleted</span>
54                 [% ELSE %]
55                     <span>New</span>
56                 [% END %]
57             [% END %]
58             [% IF ( basketno ) %]
59                 <span>Basket [% basketname | html %] ([% basketno | html %]) for [% booksellername | html %]</span>
60             [% ELSE %]
61                 <span>Basket [% basketname | html %] for [% booksellername | html %]</span>
62             [% END %]
63         [% END %]
64     [% END #/ WRAPPER breadcrumbs %]
65 [% END #/ WRAPPER sub-header.inc %]
66
67 <div class="main container-fluid">
68     <div class="row">
69         <div class="col-sm-10 col-sm-push-2">
70             <main>
71
72                 [% IF (cannot_manage_basket) %]
73                     <div class="dialog alert">You are not authorised to manage this basket.</div>
74                 [% ELSE %]
75
76                     [% IF !confirm_close && !edi_confirm %]
77                         [% UNLESS ( selectbasketg ) %]
78                             [% UNLESS ( closedate ) %]
79                                 [% UNLESS ( delete_confirmed ) %]
80                                     <div id="toolbar" class="btn-toolbar fh-fixedHeader">
81                                         [% IF active %]
82                                             <div class="btn-group"><a href="#addtoBasket" role="button" class="btn btn-default" data-toggle="modal"><i class="fa fa-plus"></i> Add to basket</a></div>
83                                         [% END %]
84                                         <div class="btn-group"><a href="basketheader.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]&amp;op=add_form" class="btn btn-default" id="basketheadbutton"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit basket</a></div>
85                                         [% IF CAN_user_acquisition_delete_baskets %]
86                                             <div class="btn-group"><a href="#deleteBasketModal" role="button" class="btn btn-default" data-toggle="modal" id="delbasketbutton"><i class="fa fa-trash-can"></i> Delete basket</a></div>
87                                         [% END %]
88                                         [% IF ( unclosable ) %]
89                                         [% ELSIF ( uncertainprices ) %]
90                                             <div class="btn-group"><a href="/cgi-bin/koha/acqui/uncertainprice.pl?booksellerid=[% booksellerid | uri %]&amp;owner=1" class="btn btn-default" id="uncertpricesbutton"><i class="fa-solid fa-dollar-sign"></i> Uncertain prices</a></div>
91                                             <div title="Can not close baskets that have items with uncertain prices in them." class="btn-group">
92                                                 <a href="" class="btn btn-default disabled" id="closebutton"><i class="fa fa-times-circle"></i> Close basket</a>
93                                             </div>
94                                         [% ELSE %]
95                                             <div class="btn-group">
96                                                 <a href="/cgi-bin/koha/acqui/basket.pl?op=close&amp;basketno=[% basketno | uri %]&amp;booksellerid=[% booksellerid | uri %]" class="btn btn-default" id="closebutton"><i class="fa fa-times-circle"></i> Close basket</a>
97                                             </div>
98                                         [% END %]
99
100                                         [% PROCESS csv_export %]
101
102                                         [% IF Koha.Preference('EDIFACT') && ediaccount %]
103                                             <div class="btn-group"><a href="/cgi-bin/koha/acqui/edi_ean.pl?op=ediorder&amp;basketno=[% basketno | uri %]&amp;booksellerid=[% booksellerid | uri %]" class="btn btn-default" id="ediorderbutton"><i class="fa fa-download"></i> Create EDIFACT order</a></div>
104                                         [% END %]
105
106                                         [% IF ( active && books_loop ) %]
107                                             <div class="btn-group">
108                                                 <form action="/cgi-bin/koha/acqui/basket.pl" method="post">
109                                                     <input type="hidden" name="op" value="email" />
110                                                     <input type="hidden" name="basketno" value="[% basketno | html %]" />
111                                                     <button type="submit" class="btn btn-default" id="emailvendorbutton"><i class="fa-solid fa-envelope"></i> E-mail order</button>
112                                                 </form>
113                                             </div>
114                                         [% END %]
115                                     </div> <!-- /#toolbar -->
116                                 [% END # / UNLESS ( delete_confirmed ) %]
117
118                                 <!-- Modal for confirm deletion box-->
119                                 <div class="modal" id="deleteBasketModal" tabindex="-1" role="dialog" aria-labelledby="delbasketModalLabel" aria-hidden="true">
120                                     <div class="modal-dialog">
121                                         <div class="modal-content">
122                                             <div class="modal-header">
123                                                 <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
124                                                 <h3>Confirm deletion</h3>
125                                             </div>
126                                             [% UNLESS book_foot_loop %]
127                                                 <div class="modal-body">
128                                                     <p>Are you sure you want to delete this basket?</p>
129                                                 </div>
130                                                 <div class="modal-footer">
131                                                     <button type="button" class="btn btn-primary" data-dismiss="modal">Cancel</button>
132                                                     <form action="/cgi-bin/koha/acqui/basket.pl" method="get">
133                                                         <input type="hidden" name="op" value="delete_confirm" />
134                                                         <input type="hidden" name="basketno" value="[% basketno | html %]" />
135                                                         <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
136                                                         <input type="hidden" name="delbiblio" value="0" />
137                                                         <button type="submit" class="btn btn-default btn-default">Delete basket</button>
138                                                     </form>
139                                                 </div>
140                                             [% ELSE %]
141                                                 <div class="modal-body">
142                                                     <p>Are you sure you want to delete this basket?</p>
143                                                     <p>Warning:</p>
144                                                     <p>All orders of this basket will be cancelled and used funds will be refunded.</p>
145                                                     <p>If items have been created when ordering or receiving, they will be deleted.</p>
146                                                     <p>You can choose to delete bibliographic records if possible (bibliographic records that have other items or that are used in a subscription or another order will not be deleted).</p>
147                                                 </div>
148                                                 <div class="modal-footer">
149                                                     <button type="button" class="btn btn-primary" data-dismiss="modal">Cancel</button>
150                                                     <form action="/cgi-bin/koha/acqui/basket.pl" method="get">
151                                                         <input type="hidden" name="op" value="delete_confirm" />
152                                                         <input type="hidden" name="basketno" value="[% basketno | html %]" />
153                                                         <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
154                                                         <input type="hidden" name="delbiblio" value="0" />
155                                                         <button type="submit" class="btn btn-default btn-default">Delete basket and orders</button>
156                                                     </form>
157
158                                                     <form action="/cgi-bin/koha/acqui/basket.pl" method="get">
159                                                         <input type="hidden" name="op" value="delete_confirm" />
160                                                         <input type="hidden" name="basketno" value="[% basketno | html %]" />
161                                                         <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
162                                                         <input type="hidden" name="delbiblio" value="1" />
163                                                         <button type="submit" class="btn btn-default btn-default">Delete basket, orders, and records</button>
164                                                     </form>
165                                                 </div> <!-- /.modal-footer -->
166                                             [% END # /UNLESS book_foot_loop %]
167                                         </div> <!-- /.modal-content -->
168                                     </div> <!-- /.modal-dialog -->
169                                 </div> <!-- /.modal#deleteBasketModal -->
170                                 <!-- End of Modal-->
171                             [% ELSE # UNLESS ( closedate ) %]
172                                 <div id="toolbar" class="btn-toolbar">
173                                     [% IF grouped %]
174                                         <div title="Can not reopen baskets that are part of a basket group." class="btn-group">
175                                             <div class="btn-group"><a href="#" class="btn btn-default disabled" id="reopenbutton"><i class="fa-solid fa-rotate"></i> Reopen basket</a></div>
176                                         </div>
177                                     [% ELSE %]
178                                         <div class="btn-group"><a href="#" class="btn btn-default" id="reopenbutton"><i class="fa-solid fa-rotate"></i> Reopen basket</a></div>
179
180                                         [% PROCESS csv_export %]
181                                     [% END %]
182                                 </div>
183                             [% END # /UNLESS ( closedate ) %]
184                         [% END # /UNLESS ( selectbasketg ) %]
185
186                         [% IF ( NO_BOOKSELLER ) %]
187                             <h1>Vendor not found</h1>
188                         [% ELSE %]
189                             [% IF ( delete_confirmed ) %]
190                                 <div class="dialog message">
191                                     <h3>Basket deleted</h3>
192                                 </div>
193                                 [% IF (cannotdelbiblios) %]
194                                     <div class="dialog alert">
195                                         <p><strong>Warning:</strong></p>
196                                         <p><strong>The following records could not be deleted:</strong></p>
197                                         <ul>
198                                             [% FOREACH cannotdelbiblio IN cannotdelbiblios %]
199                                                 <li>
200                                                     <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% cannotdelbiblio.biblionumber | uri %]">[% cannotdelbiblio.title | html %]</a> by [% cannotdelbiblio.author | html %]:
201                                                     <ul>
202                                                         [% IF (cannotdelbiblio.itemcount) %]<li>[% cannotdelbiblio.itemcount | html %] item(s) attached.</li>[% END %]
203                                                         [% IF (cannotdelbiblio.subscriptions) %]<li>[% cannotdelbiblio.subscriptions | html %] subscription(s) attached.</li>[% END %]
204                                                         [% IF (cannotdelbiblio.countbiblio) %]<li>[% cannotdelbiblio.countbiblio | html %] order(s) attached.</li>[% END %]
205                                                         [% IF (cannotdelbiblio.othererror) %]<li>Unknown error.</li>[% END %]
206                                                     </ul>
207                                                 </li>
208                                             [% END %]
209                                         </ul>
210                                     </div>
211                                     <a href="booksellers.pl">Go back to vendor page</a>
212                                 [% ELSE %]
213                                     <a href="/cgi-bin/koha/acqui/booksellers.pl?booksellerid=[% booksellerid | uri %]" class="btn btn-default btn-sm">Show baskets for vendor [% booksellername | html %]</a> <a href="/cgi-bin/koha/acqui/booksellers.pl" class="btn btn-default btn-sm">Show all active baskets</a>
214                                 [% END # /IF (cannotdelbiblios) %]
215                             [% ELSE # IF ( delete_confirmed ) %]
216
217                                 [% FOR m IN messages %]
218                                     <div class="dialog [% m.type | html %]">
219                                         [% SWITCH m.code %]
220                                         [% CASE 'no_email' %]
221                                             <span>This vendor has no contact selected for sending orders to or is missing an e-mail address.</span>
222                                         [% CASE 'no_basketno' %]
223                                             <span>No basket given.</span>
224                                         [% CASE 'no_letter' %]
225                                             <span>There is no notice template with code ACQORDER defined.</span>
226                                         [% CASE 'email_sent' %]
227                                             <span>Order e-mail was sent to the vendor.</span>
228                                         [% CASE %]
229                                             <span>ERROR! - [% m.code | html %]</span>
230                                         [% END %]
231                                     </div>
232                                 [% END # /FOR m %]
233
234                                 <h1>[% UNLESS ( basketno ) %]New [% END %]Basket [% basketname | html %] ([% basketno | html %]) for <a href="supplier.pl?booksellerid=[% booksellerid | uri %]">[% booksellername | html %]</a></h1>
235
236                                 [% IF ( basketno ) %]
237                                     <div id="acqui_basket_summary" class="row">
238                                         <div class="rows">
239                                             <div class="col-sm-6">
240                                                 <div class="page-section">
241                                                     <h2>General information</h3>
242                                                     <ol>
243                                                         [% IF ( basketnote ) %]
244                                                             <li><span class="label">Internal note:</span> [% basketnote | html %]</li>
245                                                         [% END %]
246                                                         [% IF ( basketbooksellernote ) %]
247                                                             <li><span class="label">Vendor note:</span> [% basketbooksellernote | html %]</li>
248                                                         [% END %]
249                                                         [% IF ( basketcontractno ) %]
250                                                             <li><span class="label">Contract name:</span> <a href="../admin/aqcontract.pl?op=add_form&amp;contractnumber=[% basketcontractno | uri %]&amp;booksellerid=[% booksellerid | uri %]">[% basketcontractname | html %]</a></li>
251                                                         [% END %]
252                                                         [% IF deliveryplace %]
253                                                             <li><span class="label">Delivery place:</span> [% Branches.GetName( deliveryplace ) | html %]</li>
254                                                         [% END %]
255                                                         [% IF billingplace %]
256                                                             <li><span class="label">Billing place:</span> [% Branches.GetName( billingplace ) | html %]</li>
257                                                         [% END %]
258                                                         [% IF ( authorisedbyname ) %]
259                                                             <li><span class="label">[% tp('basket created by', 'Created by:') | html %]</span>  [% authorisedbyname | html %]</li>
260                                                         [% END %]
261
262                                                         [% IF ( creationdate ) %]
263                                                             <li><span class="label">Opened on:</span>  [% creationdate | $KohaDates %]</li>
264                                                         [% END %]
265                                                         [% IF ( closedate ) %]
266                                                             <li><span class="label">Closed on:</span> [% closedate | $KohaDates %]</li>
267                                                         [% END %]
268
269                                                         [% IF ( ediaccount ) %]
270                                                             [%- BLOCK edi_status -%]
271                                                                 [%- SWITCH edi_order.status -%]
272                                                                     [%- CASE 'Pending'   -%]<span>Pending</span>
273                                                                     [%- CASE 'Sent'      -%]<span>Sent</span>
274                                                                     [%- CASE 'Processed' -%]<span>Processed</span>
275                                                                 [%- END -%]
276                                                             [%- END -%]
277                                                             [% IF ( edi_order ) %]
278                                                                 <li><span class="label">EDI status:</span> [%- PROCESS edi_status edi_order=edi_order -%] ([% edi_order.transfer_date | $KohaDates %])</li>
279                                                             [% ELSE %]
280                                                                 <li><span class="label">EDI status:</span> Not ordered</li>
281                                                             [% END %]
282                                                         [% END %]
283                                                         [% IF ( estimateddeliverydate ) %]
284                                                             <li><span class="label">Estimated delivery date:</span> [% estimateddeliverydate | $KohaDates %]</li>
285                                                         [% END %]
286                                                         <li><span class="label">Orders are standing:</span> [% IF is_standing %]Yes[% ELSE %]No[% END %]</li>
287
288                                                         [% IF basket.create_items %]
289                                                             <li>
290                                                                 <span class="label">Create items when:</span>
291                                                                 [% SWITCH basket.create_items %]
292                                                                     [% CASE 'receiving' %]<span>Receiving items</span>
293                                                                     [% CASE 'cataloguing' %]<span>Cataloguing items</span>
294                                                                     [% CASE %]<span>Placing orders</span>
295                                                                 [% END %]
296                                                             </li>
297                                                         [% END %]
298
299                                                         [% INCLUDE 'additional-fields-display.inc' available=available_additional_fields values=additional_field_values %]
300
301                                                     </ol>
302                                                 </div> <!-- /.page-section -->
303                                             </div> <!-- /.col-sm-6 -->
304
305                                             <div class="col-sm-6">
306                                                 <div class="page-section">
307                                                     <h2>Settings</h2>
308
309                                                     <ol>
310                                                         <li id="managedby">
311                                                             <form action="/cgi-bin/koha/acqui/basket.pl" method="post">
312                                                                 <span class="label">Managed by:</span>
313                                                                 <div style="display:inline-block">
314                                                                     <ul id="users_names" style="padding-left:0">
315                                                                         [% FOREACH user IN users %]
316                                                                             <li id="user_[% user.borrowernumber | html %]">
317                                                                                 [% user.firstname | html %] [% user.surname | html %]
318                                                                                 <a href="#" data-borrowernumber="[% user.borrowernumber | html %]" class="del_user"><i class="fa fa-trash-can"></i> Delete user</a>
319                                                                             </li>
320                                                                         [% END %]
321                                                                         <li>
322                                                                             <a href="#" id="add_user"><i class="fa fa-plus"></i> Add user</a>
323                                                                         </li>
324                                                                         <li id="add_user_submit" style="display:none;">
325                                                                             <button type="submit" class="btn btn-default btn-xs">Save changes</button>
326                                                                         </li>
327                                                                     </ul>
328                                                                 </div>
329                                                                 <input type="hidden" id="basketno" name="basketno" value="[% basketno | html %]" />
330                                                                 <input type="hidden" id="users_ids" name="users_ids" value="[% users_ids | html %]" />
331                                                                 <input type="hidden" id="op" name="op" value="mod_users" />
332                                                             </form>
333
334                                                         </li> <!-- /#managedby -->
335                                                         <li id="branch">
336                                                             <span class="label">Managing library:</span>
337                                                             [% IF basketbranchcode %]
338                                                                 [% Branches.GetName( basketbranchcode ) | html %]
339                                                                 <a href="#" id="set_managing_library"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Change library</a>
340                                                             [% ELSE %]
341                                                                 No library
342                                                                 <a href="#" id="set_managing_library"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Set library</a>
343                                                             [% END %]
344                                                         </li> <!-- /#branch -->
345                                                         [% IF branches_loop.size %]
346                                                             <li id="managing_library_entry" style="display:none;">
347                                                                 <span class="label">&nbsp;</span>
348                                                                 <div>
349                                                                     <form action="/cgi-bin/koha/acqui/basket.pl" method="post">
350                                                                         <select id="select_managing_library" name="branch">
351                                                                             <option value="">(no library)</option>
352                                                                             [% FOREACH branch IN branches_loop %]
353                                                                                 [% IF ( basketbranchcode == branch.branchcode ) %]
354                                                                                     <option selected="selected" value="[% branch.branchcode | html %]"> [% branch.branchname | html %]</option>
355                                                                                 [% ELSE %]
356                                                                                     <option value="[% branch.branchcode | html %]"> [% branch.branchname | html %]</option>
357                                                                                 [% END %]
358                                                                             [% END %]
359                                                                         </select>
360                                                                         <a id="library_entry_cancel" href="#" class="cancel">Cancel</a>
361                                                                         <input type="hidden" id="basketno" name="basketno" value="[% basketno | html %]" />
362                                                                         <input type="hidden" id="op" name="op" value="mod_branch" />
363                                                                     </form>
364                                                                 </div>
365                                                             </li> <!-- #/managing_library_entry -->
366                                                         [% END # /IF branches_loop.size %]
367
368                                                     </ol>
369
370                                                     [% IF ( closedate ) %]
371                                                         <ol>
372                                                             <li>
373                                                                 <span class="label">Basket group:</span>
374                                                                 [% IF basketgroup.id and not basketgroup.name %]
375                                                                     [% SET basketgroup.name = "Basket group no. " _ basketgroup.id %]
376                                                                 [% END %]
377
378                                                                 [% IF basketgroup.closed %]
379                                                                     [% IF ( CAN_user_acquisition_group_manage ) %]
380                                                                         <a href="basketgroup.pl?op=add&booksellerid=[% booksellerid | uri %]&basketgroupid=[% basketgroup.id | uri %]" title="basketgroup">[% basketgroup.name | html %] <span>(closed)</span></a>
381                                                                     [% ELSE %]
382                                                                         [% basketgroup.name | html %] <span>(closed)</span>
383                                                                     [% END %]
384                                                                 [% ELSIF ( ! CAN_user_acquisition_group_manage ) %]
385                                                                     [%- IF basketgroup.id -%]
386                                                                         [% basketgroup.name | html %]
387                                                                     [%- ELSE -%]
388                                                                         <span>No group</span>
389                                                                     [%- END -%]
390                                                                 [% ELSE %]
391                                                                     [% IF ( CAN_user_acquisition_group_manage ) %]
392                                                                         [% IF ( basketgroup.id ) %]
393                                                                             <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% basket.booksellerid | uri %]&amp;basketgroupid=[% basketgroup.id | uri %]">
394                                                                                 [% basketgroup.name | html %]
395                                                                             </a>
396                                                                             <a href="#" id="set_basket_group"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Change basket group</a>
397                                                                         [% ELSE %]
398                                                                             No group
399                                                                             <a href="#" id="set_basket_group"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Set basket group</a>
400                                                                         [% END %]
401                                                                     [% END %]
402                                                                 [% END %]
403                                                             </li>
404                                                             [% IF ( CAN_user_acquisition_group_manage ) %]
405                                                                 <li id="basket_grouping" style="display:none;">
406                                                                     <span class="label">&nbsp;</span>
407                                                                     <div style="float:left">
408                                                                         <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="post">
409                                                                             <select id="basketgroupid" name="basketgroupid">
410                                                                                 <option value="">No group</option>
411                                                                                 [% FOREACH bg IN basketgroups %]
412                                                                                     [% IF ( bg.default ) %]
413                                                                                         <option value="[% bg.id | html %]" selected="selected">[% bg.name | html %]</option>
414                                                                                     [% ELSE %]
415                                                                                         [% UNLESS bg.closed %]
416                                                                                             <option value="[% bg.id | html %]">[% bg.name | html %]</option>
417                                                                                         [% ELSE %]
418                                                                                             <option value="[% bg.id | html %]" disabled="disabled">[% bg.name | html %] <span>(closed)</span></option>
419                                                                                         [% END %]
420                                                                                     [% END %]
421                                                                                 [% END %]
422                                                                                 <option value="new">Add new group</option>
423                                                                             </select>
424                                                                             <a href="#" id="basket_group_cancel" class="cancel">Cancel</a>
425                                                                             <input type="hidden" id="basketno" value="[% basketno | html %]" name="basketno" />
426                                                                             <input type="hidden" value="mod_basket" name="op" />
427                                                                             <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
428                                                                         </form>
429                                                                     </div>
430                                                                 </li>
431                                                             [% END # /IF ( CAN_user_acquisition_group_manage ) %]
432                                                             [% IF basketgroup.deliveryplace %]
433                                                                 <li>
434                                                                     <span class="label">Basket group delivery placename:</span> [% Branches.GetName( basketgroup.deliveryplace ) | html %]
435                                                                 </li>
436                                                             [% END %]
437                                                             [% IF basketgroup.billingplace %]
438                                                                 <li>
439                                                                     <span class="label">Basket group billing place:</span> [% Branches.GetName( basketgroup.billingplace ) | html %]
440                                                                 </li>
441                                                             [% END %]
442                                                         </ol>
443                                                     [% END # /IF closeddate %]
444                                                 </div> <!-- /.page-section -->
445                                             </div> <!-- /.rows -->
446                                         </div> <!-- /.col-sm-6 -->
447                                     </div> <!-- /#acqui_basket_summary.row -->
448                                 [% END # /IF ( basketno ) %]
449
450                                 [% IF ( duplinbatch ) %]
451                                     <div class="dialog alert">
452                                         <h4>Duplicate warning</h4>
453                                         <p>Some records have not been automatically added because they match an existing record in your catalog:<a href="/cgi-bin/koha/acqui/addorderiso2709.pl?import_batch_id=[% duplinbatch | uri %]&amp;basketno=[% basketno | uri %]&amp;booksellerid=[% booksellerid | uri %]" title="Open in new window" target="_blank" style="margin-left:10px"><i class="fa-solid fa-window-restore"></i> Display them</a></p>
454                                     </div>
455                                 [% END %]
456
457                                 <div id="acqui_basket_content" class="page-section">
458                                     [% IF ( books_loop ) %]
459                                         <h2>Orders</h2>
460                                         <table id="orders">
461                                             <thead>
462                                                 <tr>
463                                                     <th>No.</th>
464                                                     <th>[% tp('noun', 'Order') | html %]</th>
465                                                     <th>RRP tax exc.</th>
466                                                     <th>Actual cost tax exc.</th>
467                                                     <th>Budgeted cost tax exc.</th>
468                                                     <th>RRP tax inc.</th>
469                                                     <th>Actual cost tax inc.</th>
470                                                     <th>Budgeted cost tax inc.</th>
471                                                     <th>Replacement price</th>
472                                                     <th>Qty.</th>
473                                                     <th>Total tax exc. ([% currency | html %])</th>
474                                                     <th>Total tax inc. ([% currency | html %])</th>
475                                                     <th>GST %</th>
476                                                     <th>GST</th>
477                                                     <th>Fund</th>
478                                                     <th>Estimated delivery date</th>
479                                                     [% IF Koha.Preference('EDIFACT') && ediaccount %]
480                                                         <th>Supplier report</th>
481                                                     [% END %]
482                                                     [% IF ( active ) %]
483                                                         [% UNLESS ( closedate ) %]
484                                                             <th class="NoSort">Modify</th>
485                                                             <th class="NoSort">Cancel order</th>
486                                                         [% END %]
487                                                     [% END %]
488                                                 </tr>
489                                             </thead>
490                                             <tfoot>
491                                                 [% FOREACH foot_loo IN book_foot_loop %]
492                                                     <tr>
493                                                         <th></th>
494                                                         <th>Total (GST [% foot_loo.tax_rate * 100 | html %])</th>
495                                                         <th>&nbsp;</th>
496                                                         <th>&nbsp;</th>
497                                                         <th>&nbsp;</th>
498                                                         <th>&nbsp;</th>
499                                                         <th>&nbsp;</th>
500                                                         <th>&nbsp;</th>
501                                                         <th>&nbsp;</th>
502                                                         <th>[% foot_loo.quantity | html %]</th>
503                                                         <th>[% foot_loo.total_tax_excluded | $Price %]</th>
504                                                         <th>[% foot_loo.total_tax_included | $Price %]</th>
505                                                         <th>&nbsp;</th>
506                                                         <th>[% foot_loo.tax_value | $Price %]</th>
507                                                         <th>&nbsp;</th>
508                                                         <th>&nbsp;</th>
509                                                         [% IF Koha.Preference('EDIFACT') && ediaccount %]
510                                                             <th>&nbsp;</th>
511                                                         [% END %]
512                                                         [% IF ( active ) %]
513                                                             [% UNLESS ( closedate ) %]
514                                                                 <th>&nbsp;</th>
515                                                                 <th>&nbsp;</th>
516                                                             [% END %]
517                                                         [% END %]
518                                                     </tr>
519                                                 [% END %]
520                                                 <tr>
521                                                     <th></th>
522                                                     <th>Total ([% currency | html %])</th>
523                                                     <th>&nbsp;</th>
524                                                     <th>&nbsp;</th>
525                                                     <th>&nbsp;</th>
526                                                     <th>&nbsp;</th>
527                                                     <th>&nbsp;</th>
528                                                     <th>&nbsp;</th>
529                                                     <th>&nbsp;</th>
530                                                     <th>[% total_quantity | html %]</th>
531                                                     <th>[% total_tax_excluded | $Price %]</th>
532                                                     <th>[% total_tax_included | $Price %]</th>
533                                                     <th>&nbsp;</th>
534                                                     <th>[% total_tax_value | $Price %]</th>
535                                                     <th>&nbsp;</th>
536                                                     <th>&nbsp;</th>
537                                                     [% IF Koha.Preference('EDIFACT') && ediaccount %]
538                                                         <th>&nbsp;</th>
539                                                     [% END %]
540                                                     [% IF ( active ) %]
541                                                         [% UNLESS ( closedate ) %]
542                                                             <th>&nbsp;</th>
543                                                             <th>&nbsp;</th>
544                                                         [% END %]
545                                                     [% END %]
546                                                 </tr>
547                                             </tfoot>
548                                             <tbody>
549                                                 [% FOREACH books_loo IN books_loop %]
550                                                     [% IF ( books_loo.order_received ) %]
551                                                         <tr class="disabled">
552                                                     [% ELSE %]
553                                                         <tr>
554                                                     [% END %]
555                                                         <td>
556                                                             [% books_loo.ordernumber | html %]
557                                                         </td>
558                                                         <td>
559                                                             <p>
560                                                                 [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
561                                                                 [% IF books_loo.title %]
562                                                                     [% INCLUDE 'biblio-title.inc' biblio=books_loo link = 1 %] [% IF books_loo.author %] by [% books_loo.author | html %][% END %]
563                                                                 [% ELSE %]
564                                                                     <em>Deleted bibliographic record, can't find title</em><br />
565                                                                 [%- END %]
566                                                                 <br />
567                                                                 [%- IF ( books_loo.isbn ) %] - [% books_loo.isbn | html %][% END -%]
568                                                                 [%- IF ( books_loo.issn ) %] - [% books_loo.issn | html %][% END -%]
569                                                                 [%- IF ( books_loo.publishercode ) %], [% books_loo.publishercode | html %][% END -%]
570                                                                 [%- IF ( books_loo.publicationyear ) %], [% books_loo.publicationyear | html -%]
571                                                                 [%- ELSIF ( books_loo.copyrightdate ) %] [% books_loo.copyrightdate | html %][% END -%]
572                                                                 [%- IF ( books_loo.editionstatement ) %], [% books_loo.editionstatement | html %][% END -%]
573                                                                 [%- IF ( books_loo.suggestionid ) %]
574                                                                     <br/>
575                                                                     Suggested by: [% books_loo.surnamesuggestedby | html %][% IF ( books_loo.firstnamesuggestedby ) %], [% books_loo.firstnamesuggestedby | html %] [% END %]
576                                                                     (<a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% books_loo.suggestionid | uri %]&amp;op=show">suggestion #[% books_loo.suggestionid | html %]</a>)
577                                                                 [% END %]
578                                                             </p>
579                                                             [% IF ( books_loo.order_internalnote ) %]
580                                                                 <p class="ordernote"><strong>Internal note: </strong><span id="internal-note-[% books_loo.ordernumber | html %]">[% books_loo.order_internalnote | html %]</span> <a class="edit_note noExport" data-ordernumber="[% books_loo.ordernumber | html %]" data-note_type="internal" href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber=[% books_loo.ordernumber | html %]&type=internal" title="Edit internal note"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit internal note</a></p>
581                                                             [% ELSE %]
582                                                                 <a class="edit_note noExport" data-ordernumber="[% books_loo.ordernumber | html %]" data-note_type="internal" href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber=[% books_loo.ordernumber | html %]&type=internal" title="Add internal note"><i class="fa fa-plus"></i> Add internal note</a>
583                                                             [% END %]
584                                                             [% IF ( books_loo.order_vendornote ) %]
585                                                                 <p class="ordernote"><strong>Vendor note: </strong> <span id="vendor-note-[% books_loo.ordernumber | html %]">[% books_loo.order_vendornote | html %]</span> <a class="edit_note noExport" data-ordernumber="[% books_loo.ordernumber | html %]" data-note_type="vendor" href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber=[% books_loo.ordernumber | html %]&type=vendor" title="Edit vendor note"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit vendor note</a></p>
586                                                             [% ELSE %]
587                                                                 <a class="edit_note noExport" data-ordernumber="[% books_loo.ordernumber | html %]" data-note_type="vendor" href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber=[% books_loo.ordernumber | html %]&type=vendor" title="Add vendor note"><i class="fa fa-plus"></i> Add vendor note</a>
588                                                             [% END %]
589                                                             [% IF (books_loo.transferred_from) %]
590                                                                 [% basket = books_loo.transferred_from.basket %]
591                                                                 [% bookseller = books_loo.transferred_from.bookseller %]
592                                                                 [% timestamp = books_loo.transferred_from.timestamp %]
593                                                                 <p>
594                                                                     Transferred from basket:
595                                                                     <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basket.basketno | uri %]"> [% basket.basketname | html %]</a>
596                                                                     (<a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% bookseller.id | uri %]">[% bookseller.name | html %]</a>)
597                                                                     on <span title="[% timestamp | $KohaDates with_hours = 1 %]">
598                                                                     [% timestamp | $KohaDates %]
599                                                                     </span>
600                                                                 </p>
601                                                             [% END %]
602                                                             [% SET claims = books_loo.order_object.claims %]
603                                                             [% IF claims.count %]
604                                                                 <p>
605                                                                     This order has been claimed [% claims.count | html %] times. On [% FOR c IN claims %][% c.claimed_on | $KohaDates %][% UNLESS loop.last %], [% END %][% END %]
606                                                                 </p>
607                                                             [% END %]
608                                                         </td>
609                                                         [% SET zero_regex = "^0{1,}\.?0{1,}[^1-9]" %] [%# 0 or 0.0 or 0.00 or 00 or 00.0 or 00.00 or 0.000 ... %]
610                                                         [%# FIXME: use of a regexp is not ideal; bugs 9410 and 10929 suggest better way of handling this %]
611                                                         <td class="number [% IF books_loo.rrp_tax_excluded.search(zero_regex) %]error[% END %]">
612                                                             [% books_loo.rrp_tax_excluded | $Price %] [% IF ( books_loo.uncertainprice ) %] <span>(Uncertain)</span> [% END %]
613                                                         </td>
614                                                         <td class="number [% IF books_loo.unitprice_tax_excluded.search(zero_regex) %]error[% END %]">
615                                                             [% books_loo.unitprice_tax_excluded | $Price %]
616                                                         </td>
617                                                         <td class="number [% IF books_loo.ecost_tax_excluded.search(zero_regex) %]error[% END %]">
618                                                             [% books_loo.ecost_tax_excluded | $Price %]
619                                                         </td>
620                                                         <td class="number [% IF books_loo.rrp_tax_included.search(zero_regex) %]error[% END %]">
621                                                             [% books_loo.rrp_tax_included | $Price %]
622                                                         </td>
623                                                         <td class="number [% IF books_loo.unitprice_tax_included.search(zero_regex) %]error[% END %]">
624                                                             [% books_loo.unitprice_tax_included | $Price %]
625                                                         </td>
626                                                         <td class="number [% IF books_loo.ecost_tax_included.search(zero_regex) %]error[% END %]">
627                                                             [% books_loo.ecost_tax_included | $Price %]
628                                                         </td>
629                                                         <td class="number [% IF books_loo.replacementprice.search(zero_regex) %]error[% END %]">
630                                                             [% books_loo.replacementprice | $Price %]
631                                                         </td>
632                                                         <td class="number [% IF books_loo.quantity.search(zero_regex) %]error[% END %]">
633                                                             [% books_loo.quantity | html %]
634                                                         </td>
635                                                         <td class="number [% IF books_loo.total_tax_excluded.search(zero_regex) %]error[% END %]">
636                                                             [% books_loo.total_tax_excluded | $Price %]
637                                                         </td>
638                                                         <td class="number [% IF books_loo.total_tax_included.search(zero_regex) %]error[% END %]">
639                                                             [% books_loo.total_tax_included | $Price %]
640                                                         </td>
641                                                         <td class="number">
642                                                             [% books_loo.tax_rate * 100 | html %]
643                                                         </td>
644                                                         <td class="number [% IF books_loo.tax_value.search(zero_regex) %]error[% END %]">
645                                                             [% books_loo.tax_value | $Price %]
646                                                         </td>
647                                                         <td>
648                                                             [% books_loo.budget_name | html %]
649                                                         </td>
650                                                         <td data-order="[% books_loo.estimated_delivery_date | html %]" class="actions">
651                                                             [% books_loo.estimated_delivery_date | $KohaDates %]
652                                                             [% IF CAN_user_acquisition_order_manage %]
653                                                                     <a class="edit_delivery_date" href="/cgi-bin/koha/acqui/moddeliverydate.pl?ordernumber=[% books_loo.ordernumber | html %]" title="Edit delivery date" data-ordernumber="[% books_loo.ordernumber | html %]" id="delivery_date_[% books_loo.ordernumber | html %]" data-delivery_date="[% books_loo.estimated_delivery_date | html %]">
654                                                                     <i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a>
655                                                             [% END %]
656                                                         </td>
657                                                         [% IF Koha.Preference('EDIFACT') && ediaccount %]
658                                                             <td>[% books_loo.suppliers_report | html %]</td>
659                                                         [% END %]
660                                                         [% IF ( active ) %]
661                                                             [% UNLESS ( closedate ) %]
662                                                                 <td>
663                                                                     [% UNLESS (books_loo.order_received) %]
664                                                                         <a href="neworderempty.pl?ordernumber=[% books_loo.ordernumber | uri %]&amp;booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">Modify</a>
665                                                                         <br />
666                                                                         <a href="#" class="transfer_order" data-ordernumber="[% books_loo.ordernumber | html %]">Transfer</a>
667                                                                     [% END %]
668                                                                 </td>
669                                                                 <td>
670                                                                     [% IF ( books_loo.orderstatus != "complete") %]
671                                                                         [% IF ( books_loo.left_holds_on_order ) %]
672                                                                             <span class="button" title="Can't cancel order, ([% books_loo.holds_on_order | html %]) holds are linked with this order. Cancel holds first">Can't cancel order</span><br>
673                                                                         [% ELSE %]
674                                                                             <a href="/cgi-bin/koha/acqui/cancelorder.pl?ordernumber=[% books_loo.ordernumber | uri %]&biblionumber=[% books_loo.biblionumber | uri %]&basketno=[% basketno | uri %]&referrer=/cgi-bin/koha/acqui/basket.pl%3Fbasketno=[% basketno | uri %]" class="button">Cancel order</a><br>
675                                                                         [% END %]
676                                                                         [% IF ( books_loo.can_del_bib ) %]
677                                                                             <a href="/cgi-bin/koha/acqui/cancelorder.pl?ordernumber=[% books_loo.ordernumber | uri %]&biblionumber=[% books_loo.biblionumber | uri %]&basketno=[% basketno | uri %]&del_biblio=1&referrer=/cgi-bin/koha/acqui/basket.pl%3Fbasketno=[% basketno | uri %]" class="button">Cancel order and delete catalog record</a><br>
678                                                                         [% ELSE %]
679                                                                             <span class="button" title="Can't delete catalog record, see constraints below">Can't cancel order and delete catalog record</span><br>
680                                                                         [% END %]
681                                                                         [% IF ( books_loo.left_item ) %]
682                                                                             <strong title="Can't delete catalog record, because of [% books_loo.items | html %] existing hold(s)" >[% books_loo.items | html %] item(s) left</strong><br>
683                                                                         [% END %]
684                                                                         [% IF ( books_loo.left_biblio ) %]
685                                                                             <strong title="Can't delete catalog record, delete other orders linked to it first">[% books_loo.biblios | html %] order(s) left</strong><br>
686                                                                         [% END %]
687                                                                         [% IF ( books_loo.left_subscription ) %]
688                                                                             <strong title="Can't delete catalog record, delete subscriptions first">[% books_loo.subscriptions | html %] subscription(s) left</strong><br>
689                                                                         [% END %]
690                                                                         [% IF ( books_loo.left_holds ) %]
691                                                                             <strong title="Can't delete catalog record or order, cancel holds first">[% books_loo.holds | html %] hold(s) left</strong>
692                                                                         [% END %]
693                                                                     [% END %]
694                                                                 </td>
695                                                             [% END %]
696                                                         [% END %]
697                                                     </tr>
698                                                 [% END %]
699                                             </tbody>
700                                         </table> <!-- /#orders -->
701                                     [% END # / IF ( books_loop ) %]
702                                     [% IF ( listincgst ) %]<small class="highlight">** Vendor's listings already include tax.</small>[% END %]
703                                 </div> <!-- /#acqui_basket_content -->
704
705                                 [% IF (cancelledorders_loop) %]
706                                     <div id="cancelledorders" class="page-section">
707                                         <h2>Cancelled orders</h2>
708                                         <table id="cancelledorderst">
709                                             <thead>
710                                                 <tr>
711                                                     <th>No.</th>
712                                                     <th>[% tp('noun', 'Order') | html %]</th>
713                                                     <th class="tax_excluded">RRP tax exc.</th>
714                                                     <th class="tax_excluded">ecost tax exc.</th>
715                                                     <th class="tax_included">RRP tax inc.</th>
716                                                     <th class="tax_included">ecost tax inc.</th>
717                                                     <th class="replacementprice">Replacement price</th>
718                                                     <th>Qty.</th>
719                                                     <th class="tax_excluded">Total tax exc. ([% currency | html %])</th>
720                                                     <th class="tax_included">Total tax inc. ([% currency | html %])</th>
721                                                     <th>GST %</th>
722                                                     <th>GST</th>
723                                                     <th>Fund</th>
724                                                 </tr>
725                                             </thead>
726                                             <tbody>
727                                                 [% FOREACH order IN cancelledorders_loop %]
728                                                     <tr style="color:grey">
729                                                         <td>
730                                                             [% order.ordernumber | html %]
731                                                         </td>
732                                                         <td>
733                                                             <p>
734                                                                 [% IF ( order.order_received ) %] <span class="order-received">(received)</span>[% END %]
735                                                                 [% IF (order.title) %]
736                                                                     [% order.title | html %][% IF order.author %] by [% order.author | html %][% END %]
737                                                                 [% ELSE %]
738                                                                     <em>Deleted bibliographic record, can't find title</em>
739                                                                 [% END %]
740                                                                 <br />
741                                                                 [% IF ( order.order_internalnote ) %] [% order.order_internalnote | html %][% END %]
742                                                                 [% IF ( order.isbn ) %] - [% order.isbn | html %][% END %]
743                                                                 [% IF ( order.issn ) %] - [% order.issn | html %][% END %]
744                                                                 [% IF ( order.publishercode ) %], [% order.publishercode | html %][% END %]
745                                                                 [% IF ( order.publicationyear ) %]
746                                                                     , [% order.publicationyear | html %]
747                                                                 [% ELSIF ( order.copyrightdate ) %]
748                                                                     [% order.copyrightdate | html %]
749                                                                 [% END %]
750                                                                 [% IF ( books_loo.editionstatement ) %], [% books_loo.editionstatement | html %][% END %]
751                                                                 [% IF ( order.cancellationreason ) %]
752                                                                     <br />
753                                                                     Cancellation reason: [% AuthorisedValues.GetByCode( 'ORDER_CANCELLATION_REASON', order.cancellationreason ) | html %]
754                                                                 [% END %]
755                                                             </p>
756                                                             [% IF order.transferred_to %]
757                                                                 [% basket = order.transferred_to.basket %]
758                                                                 [% bookseller = order.transferred_to.bookseller %]
759                                                                 [% timestamp = order.transferred_to.timestamp %]
760                                                                 <p>Transferred to basket:
761                                                                     <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basket.basketno | uri %]"> [% basket.basketname | html %]</a>
762                                                                     (<a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% bookseller.id | uri %]">[% bookseller.name | html %]</a>)
763                                                                     on <span title="[% timestamp | $KohaDates with_hours = 1 %]">
764                                                                         [% timestamp | $KohaDates %]
765                                                                     </span>
766                                                                 </p>
767                                                             [% END %]
768                                                         </td>
769                                                         <td class="number">
770                                                             [% order.rrp_tax_excluded | $Price %]
771                                                             [% IF ( order.uncertain ) %]
772                                                                 <span>(Uncertain)</span>
773                                                             [% END %]
774                                                         </td>
775                                                         <td class="number">[% order.ecost_tax_excluded | $Price %]</td>
776                                                         <td class="number">[% order.rrp_tax_included | $Price %]</td>
777                                                         <td class="number">[% order.ecost_tax_included | $Price %]</td>
778                                                         <td class="number">[% order.replacementprice | $Price %]</td>
779                                                         <td class="number">[% order.quantity | html %]</td>
780                                                         <td class="number">[% order.total_tax_excluded | $Price %]</td>
781                                                         <td class="number">[% order.total_tax_included | $Price %]</td>
782                                                         <td class="number">[% order.tax_rate * 100 | html %]</td>
783                                                         <td class="number">[% order.tax_value | $Price %]</td>
784                                                         <td>[% order.budget_name | html %]
785                                                     </tr>
786                                                 [% END # /FOREACH order %]
787                                             </tbody>
788                                         </table> <!-- /#cancelledorderst -->
789                                     </div> <!-- /#cancelledorders -->
790                                 [% END # /IF (cancelledorders_loop) %]
791                                 <br />
792
793                                 [% UNLESS ( closedate ) %]
794                                     <!-- Modal -->
795                                     <div id="addtoBasket" class="modal" tabindex="-1" role="dialog" aria-labelledby="addtoBasketLabel" aria-hidden="true" data-basketno="[% basket.basketname | html %]">
796                                         <div class="modal-dialog" role="document">
797                                             <div class="modal-content">
798                                                 <div class="modal-header">
799                                                     <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
800                                                     <h4 class="modal-title" id="addtoBasketLabel">Add order to basket</h4>
801                                                 </div>
802                                                 <div class="modal-body">
803                                                     [% IF active %]
804                                                         [% INCLUDE 'acquisitions-add-to-basket.inc' %]
805                                                     [% END %]
806                                                 </div>
807                                                 <div class="modal-footer">
808                                                     <a href="#" class="cancel" data-dismiss="modal" aria-hidden="true">Cancel</a>
809                                                 </div>
810                                             </div><!-- /.modal-content -->
811                                         </div><!-- /.modal-dialog -->
812                                     </div><!-- /.modal#addtoBasket -->
813                                 [% END # /UNLESS ( closedate ) %]
814
815                             [% END # /IF ( delete_confirmed ) %]
816                         [% END # /IF ( NO_BOOKSELLER ) %]
817                     [% ELSE %]
818                         <!-- if we want just to select a basketgroup for a closed basket -->
819                     [% END #/IF !confirm_close && !edi_confirm  %]
820
821                     [% IF ( confirm_close ) %]
822                         <div id="closebasket_needsconfirmation" class="dialog alert">
823
824                             <form action="/cgi-bin/koha/acqui/basket.pl">
825                                 <h1>Are you sure you want to close basket [% basketname | html %]?</h1>
826                                 [% IF ( CAN_user_acquisition_group_manage ) %]
827                                     <p>
828                                         <label for="createbasketgroup">Attach this basket to a new basket group with the same name</label>
829                                         <input type="checkbox" id="createbasketgroup" name="createbasketgroup"/>
830                                     </p>
831                                 [% END %]
832                                 <input type="hidden" id="basketno" value="[% basketno | html %]" name="basketno" />
833                                 <input type="hidden" value="close" name="op" />
834                                 <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
835                                 <input type="hidden" name="confirm" value="1" />
836                                 <input type="hidden" name="basketgroupname" value="[% basketgroupname | html %]" />
837                                 <button type="submit" class="approve" accesskey="y"><i class="fa fa-fw fa-check"></i> Yes, close (Y)</button>
838                             </form>
839                             <form action="/cgi-bin/koha/acqui/basket.pl" method="get">
840                                 <input type="hidden" name="basketno" value="[% basketno | html %]" />
841                                 <button type="submit" class="deny" accesskey="n"><i class="fa fa-fw fa-times"></i> No, don't close (N)</button>
842                             </form>
843                         </div>
844                     [% END # /IF ( confirm_close ) %]
845
846                     [% IF edi_confirm %]
847                         <div id="closebasket_needsconfirmation" class="dialog alert">
848                             <form action="/cgi-bin/koha/acqui/basket.pl">
849                                 <h1>Are you sure you want to generate an EDIFACT order and close basket [% basketname | html %]?</h1>
850                                 [% IF CAN_user_acquisition_group_manage %]
851                                     <p>
852                                         <label for="createbasketgroup">Attach this basket to a new basket group with the same name</label>
853                                         <input type="checkbox" id="createbasketgroup" name="createbasketgroup"/>
854                                     </p>
855                                 [% END %]
856                                 <input type="hidden" id="basketno" value="[% basketno | html %]" name="basketno" />
857                                 <input type="hidden" value="ediorder" name="op" />
858                                 <input type="hidden" name="ean" value="[% ean | html %]" />
859                                 <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
860                                 <input type="hidden" name="confirm" value="1" />
861                                 <input type="hidden" name="basketgroupname" value="[% basketgroupname | html %]" />
862                                 <button type="submit" class="approve" accesskey="Y"><i class="fa fa-fw fa-check"></i> Yes, close (Y)</button>
863                             </form>
864                             <form action="/cgi-bin/koha/acqui/basket.pl" method="get">
865                                 <input type="hidden" name="basketno" value="[% basketno | html %]" />
866                                 <button type="submit" class="deny" accesskey="N"><i class="fa fa-fw fa-times"></i> No, don't close (N)</button>
867                             </form>
868                         </div> <!-- /#closebasket_needsconfirmation -->
869                     [% END # /IF edi_confirm %]
870                 [% END # /IF (cannot_manage_basket) %]
871             </main>
872         </div> <!-- /.col-sm-10.col-sm-push-2 -->
873
874         <div class="col-sm-2 col-sm-pull-10">
875             <aside>
876                 [% INCLUDE 'vendor-menu.inc' %]
877                 [% INCLUDE 'acquisitions-menu.inc' %]
878             </aside>
879         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
880     </div> <!-- /.row -->
881
882
883     <!-- Modal for editing vendor and internal notes -->
884     <div class="modal" id="noteEditor" tabindex="-1" role="dialog" aria-labelledby="noteEditorLabel">
885         <div class="modal-dialog" role="document">
886             <form id="modify_order_notes" action="/cgi-bin/koha/acqui/modordernotes.pl" method="post">
887                 <div class="modal-content">
888                     <div class="modal-header">
889                         <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
890                         <h4 class="modal-title" id="noteEditorLabel">Order note</h4>
891                     </div>
892                     <div class="modal-body">
893                         <textarea id="ordernotes" name="ordernotes" rows="3" cols="30" class="focus">[% ordernotes | html %]</textarea>
894                         <input type="hidden" id="ordernumber" name="ordernumber" value="" />
895                         <input type="hidden" name="op" value="save" />
896                         <input type="hidden" id="type" name="type" value="" />
897                     </div>
898                     <div class="modal-footer">
899                         <button type="submit" class="btn btn-default">Save</button>
900                         <button type="button" class="btn btn-link cancel" data-dismiss="modal">Cancel</button>
901                     </div>
902                 </div> <!-- /.modal-content -->
903             </form> <!-- /#modify_order_notes -->
904         </div> <!-- /.modal-dialog -->
905     </div> <!-- /.modal#noteEditor -->
906
907     <!-- Modal for editing estimated delivery date -->
908     <div class="modal" id="dateEditor" tabindex="-1" role="dialog" aria-labelledby="dateEditorLabel">
909         <div class="modal-dialog" role="document">
910             <form id="modify_estimated_delivery_date" action="/cgi-bin/koha/acqui/moddeliverydate.pl" method="post">
911                 <div class="modal-content">
912                     <div class="modal-header">
913                         <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
914                         <h4 class="modal-title" id="dateEditorLabel">Estimated delivery date</h4>
915                     </div>
916                     <div class="modal-body">
917                         <input type="text" id="estimated_delivery_date" size="10" name="estimated_delivery_date" class="flatpickr" value="[% books_loo.estimated_delivery_date | html %]"/>
918                         <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
919                         <input type="hidden" id="date_ordernumber" name="ordernumber" value="" />
920                         <input type="hidden" name="op" value="save" />
921                     </div>
922                     <div class="modal-footer">
923                         <button type="submit" class="btn btn-default">Save</button>
924                         <button type="button" class="btn btn-link cancel" data-dismiss="modal">Cancel</button>
925                     </div>
926                 </div> <!-- /.modal-content -->
927             </form> <!-- /#modify_estimated_delivery_date -->
928         </div> <!-- /.modal-dialog -->
929     </div> <!-- /.modal#dateEditor -->
930
931 [% MACRO jsinclude BLOCK %]
932     [% Asset.js("js/acquisitions-menu.js") | $raw %]
933     [% INCLUDE 'datatables.inc' %]
934     [% INCLUDE 'columns_settings.inc' %]
935     [% Asset.js("lib/hc-sticky.js") | $raw %]
936     [% Asset.js("js/acq.js") | $raw %]
937     [% INCLUDE 'calendar.inc' %]
938     <script>
939         function updateColumnsVisibility(visible) {
940             if ( visible ) {
941                 $("table .tax_excluded, .tax_included").show();
942             } else {
943                 [% IF ( listincgst ) %]
944                     $("table .tax_excluded").hide();
945                 [% ELSE %]
946                     $("table .tax_included").hide();
947                 [% END %]
948             }
949         }
950
951         var Sticky;
952
953         $(document).ready(function() {
954             if ( $('#toolbar').length ) {
955                 Sticky = $("#toolbar");
956                 Sticky.hcSticky({
957                     stickTo: "main",
958                     stickyClass: "floating"
959                 });
960             }
961
962             [% UNLESS ( closedate ) %]
963                 $('#addtoBasket').on('show', function () {
964                    $(this).find(".modal-body").html($(".acqui_basket_add")[0].outerHTML);
965                 });
966             [% END %]
967
968             $("body").on("click", ".del_user", function(e){
969                 e.preventDefault();
970                 del_user( $(this).data("borrowernumber") );
971             });
972
973             $("#add_user").on("click",function(e){
974                 e.preventDefault();
975                 UserSearchPopup();
976             });
977
978             $(".transfer_order").on("click",function(e){
979                 e.preventDefault();
980                 transfer_order_popup( $(this).data("ordernumber"));
981             });
982
983             $(".edit_note").on("click", function(e) {
984                 e.preventDefault();
985                 var ordernumber = $(this).data("ordernumber");
986                 var note_type = $(this).data("note_type");
987                 var modalTitle = $(this).attr("title") + " (order number " + ordernumber + ")";
988                 var note_text = $( "#" + note_type + "-note-" + ordernumber ).html();
989                 $("#noteEditor .modal-title").text(modalTitle);
990                 $("#ordernumber").val( ordernumber );
991                 $("#ordernotes").html( note_text );
992                 $("#type").val( note_type );
993                 $("#noteEditor").modal("show");
994                 $("#ordernotes").focus();
995             });
996
997              $("#noteEditor").on('hidden.bs.modal', function (e) {
998                 $("#noteEditorLabel").html("");
999                 $("#noteEditor .modal-title").text("");
1000                 $("#ordernotes").html( "" );
1001                 $("#ordernumber").val("");
1002                 $("#type").val("");
1003             });
1004
1005             $("#set_managing_library").on("click", function(e){
1006                 e.preventDefault();
1007                 $(this).hide();
1008                 $("#managing_library_entry").show();
1009             });
1010
1011             $("#library_entry_cancel").on("click", function(e){
1012                 e.preventDefault();
1013                 $("#managing_library_entry").hide();
1014                 $("#set_managing_library").show();
1015             });
1016
1017             $("#set_basket_group").on("click", function(e){
1018                 e.preventDefault();
1019                 $(this).hide();
1020                 $("#basket_grouping").show();
1021             });
1022
1023             $("#basket_group_cancel").on("click", function(e){
1024                 e.preventDefault();
1025                 $("#basket_grouping").hide();
1026                 $("#set_basket_group").show();
1027             });
1028
1029             $("#addtoBasket").on("shown.bs.modal", function(){
1030                 var basket = $(this).data("basketno");
1031                 var legend = _("Add order to basket %s").format(basket);
1032                 $(this).find("h4").text( legend );
1033                 $(this).find("legend").html(legend);
1034                 $(this).find("input:text").focus();
1035             });
1036         });
1037     </script>
1038
1039     [% UNLESS ( closedate ) %]
1040         <script>
1041             function transfer_order_popup(ordernumber) {
1042                 var url = "/cgi-bin/koha/acqui/transferorder.pl?"
1043                     + "ordernumber=" + ordernumber
1044                 window.open(url, 'TransferOrder','width=600,height=400,toolbar=false,scrollbars=yes');
1045             }
1046
1047             function confirm_ediorder() {
1048                 var is_confirmed = confirm(_("Are you sure you want to close this basket and generate an EDIFACT order?"));
1049                 if (is_confirmed) {
1050                     window.location = "/cgi-bin/koha/acqui/basket.pl?op=edi_confirm&basketno=[% basketno | html %]";
1051                 }
1052             }
1053         </script>
1054     [% ELSE %]
1055         <script>
1056             $(document).ready(function(){
1057                 $("#basketgroupid").change(function(){
1058                     if($(this).val() == "new"){
1059                         location.href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% booksellerid | html %]";
1060                     } else {
1061                         $(this).parent().submit();
1062                     }
1063                 });
1064             });
1065         </script>
1066         [% UNLESS ( grouped ) %]
1067             <script>
1068                 function confirm_reopen() {
1069                     var skip = [% IF ( skip_confirm_reopen ) %] 1 [% ELSE %] 0 [% END %];
1070                     var is_confirmed = skip || confirm(_("Are you sure you want to reopen this basket?"));
1071                     if (is_confirmed) {
1072                         window.location = "/cgi-bin/koha/acqui/basket.pl?op=reopen&basketno=[% basketno | html %]";
1073                     }
1074                 }
1075             </script>
1076         [% END # /UNLESS grouped %]
1077     [% END # /UNLESS (closedate) %]
1078     <script>
1079         $(document).ready(function() {
1080             var table_settings = [% TablesSettings.GetTableSettings( 'acqui', 'basket', 'orders', 'json' ) | $raw %];
1081             [% IF !(Koha.Preference('EDIFACT') && ediaccount) %]
1082                 table_settings['columns'].splice(16, 1);
1083             [% END %]
1084             KohaTable("orders", {
1085                 "sPaginationType": "full",
1086                 "autoWidth": false,
1087                 "exportColumns": [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15[% IF (Koha.Preference('EDIFACT') && ediaccount) %],16[% END %]],
1088             }, table_settings);
1089
1090             var cancelledorderst = $("#cancelledorderst").dataTable($.extend(true, {}, dataTablesDefaults, {
1091                 "sPaginationType": "full"
1092             } ) );
1093             $("#reopenbutton").on("click",function(e){
1094                 e.preventDefault();
1095                 confirm_reopen();
1096             });
1097             // Generates a dynamic link for exporting the selections data as CSV
1098             $("#exportbutton, #export-csv-menu a").click(function() {
1099                 // Building the url from currently checked boxes
1100                 var url = '/cgi-bin/koha/acqui/basket.pl';
1101                 url += $('#exportbutton').attr('href');
1102                 if($(this).attr("data-value")) {
1103                     url += '&amp;csv_profile=' + $(this).attr("data-value");
1104                 }
1105                 // And redirecting to the CSV page
1106                 location.href = url;
1107                 return false;
1108             });
1109             $("#select_managing_library").on("change", function(){
1110                 $(this).parent().submit();
1111             });
1112
1113             $(".edit_delivery_date").on("click", function(e) {
1114                 e.preventDefault();
1115                 var ordernumber = $(this).data("ordernumber");
1116                 var modalTitle = $(this).attr("title") + " (order number " + ordernumber + ")";
1117                 var delivery_date = $( "#delivery_date_" + ordernumber ).data("delivery_date");
1118                 const estimated_delivery_date = document.querySelector("#estimated_delivery_date")._flatpickr;
1119                 estimated_delivery_date.setDate( delivery_date );
1120                 $("#dateEditor .modal-title").text(modalTitle);
1121                 $("#date_ordernumber").val(ordernumber);
1122                 $("#dateEditor").modal("show");
1123             });
1124
1125              $("#dateEditor").on('hidden.bs.modal', function (e) {
1126                 $("#dateEditorLabel").html("");
1127                 $("#dateEditor .modal-title").text("");
1128                 $("#estimated_delivery_date").html( "" );
1129                 $("#date_ordernumber").val("");
1130             });
1131         });
1132
1133         function UserSearchPopup(f) {
1134             window.open(
1135                 "/cgi-bin/koha/members/search.pl?columns=cardnumber,name,category,branch,action&selection_type=add&filter=baskets_managers",
1136                 'UserSearchPopup',
1137                 'width=1024, height=768, scrollbars=yes, toolbar=no,'
1138              );
1139         }
1140
1141         function add_user(borrowernumber, borrowername) {
1142             var ids = $("#users_ids").val();
1143             if(ids.length > 0) {
1144                 ids = ids.split(':');
1145             } else {
1146                 ids = new Array;
1147             }
1148             if (ids.indexOf(borrowernumber.toString()) < 0) {
1149                 ids.push(borrowernumber);
1150                 $("#users_ids").val(ids.join(':'));
1151                 var li = '<li id="user_'+borrowernumber+'">'+borrowername
1152                 + ' <a href="#" data-borrowernumber="'+borrowernumber+'" class="del_user"><i class="fa fa-trash-can"></i> '
1153                     + _("Delete user") + '</a></li>';
1154                 $("#users_names").prepend(li);
1155                 $("#add_user_submit").show();
1156                 return 0;
1157             }
1158             return -1;
1159         }
1160
1161         function del_user(borrowernumber) {
1162             $("#user_"+borrowernumber).remove();
1163             var ids = $("#users_ids").val().split(':');
1164             ids.splice(ids.indexOf(borrowernumber.toString()), 1);
1165             $("#users_ids").val(ids.join(':'));
1166             $("#add_user_submit").show();
1167         }
1168     </script>
1169 [% END %]
1170
1171 [% INCLUDE 'intranet-bottom.inc' %]