Bug 33001: (follow-up) Add spans for translatability
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / invoices.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE AuthorisedValues %]
4 [% USE KohaDates %]
5 [% USE Branches %]
6 [% SET footerjs = 1 %]
7 [% INCLUDE 'doc-head-open.inc' %]
8 <title>Invoices &rsaquo; Acquisitions &rsaquo; Koha</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10
11 </head>
12
13 <body id="acq_invoices" class="acq">
14 [% WRAPPER 'header.inc' %]
15     [% INCLUDE 'acquisitions-search.inc' %]
16 [% END %]
17
18 [% WRAPPER 'sub-header.inc' %]
19     [% WRAPPER breadcrumbs %]
20         [% WRAPPER breadcrumb_item %]
21             <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
22         [% END %]
23         [% WRAPPER breadcrumb_item bc_active= 1 %]
24             <span>Invoices</span>
25         [% END %]
26     [% END #/ WRAPPER breadcrumbs %]
27 [% END #/ WRAPPER sub-header.inc %]
28
29 <div class="main container-fluid">
30     <div class="row">
31         <div class="col-sm-10 col-sm-push-2">
32             <main>
33
34                 [% INCLUDE 'blocking_errors.inc' %]
35
36                 <h1>Invoices</h1>
37                 [% IF ( do_search ) %]
38                     [% IF invoices %]
39                         [% BLOCK invoices_table %]
40                             [% IF closed %]
41                                 [% SET tab = 'closed' %]
42                             [% ELSE %]
43                                 [% SET tab = 'opened' %]
44                             [% END %]
45                             <input type="checkbox" style="vertical-align: middle;" id="show_only_subscription_[% tab | html %]" class="show_only_subscription" data-tableid="[% tab | html %]resultst"/>
46                             <label for="show_only_subscription_[% tab | html %]">
47                                 Show only subscriptions
48                             </label>
49                             <p><a id="CheckAll[% tab | html %]table" data-cb="[% tab | html %]" class="checkall" href="#"><i class="fa fa-check"></i> Select all</a> | <a id="UncheckAll[% tab | html %]table" data-cb="[% tab | html %]" class="uncheckall" href="#"><i class="fa fa-remove"></i> Clear all</a></p>
50                             <table id="[% tab | html %]resultst" class="result">
51                                 <thead>
52                                     <tr>
53                                         [% IF CAN_user_acquisition_merge_invoices %]
54                                             <th>&nbsp;</th>
55                                         [% END %]
56                                         <th>&nbsp;</th>
57                                         <th>Invoice number</th>
58                                         <th>Vendor</th>
59                                         <th>Shipment date</th>
60                                         <th>Billing date</th>
61                                         <th>Received bibliographic records</th>
62                                         <th>Received items</th>
63                                         <th>Status</th>
64                                         <th>&nbsp;</th>
65                                     </tr>
66                                 </thead>
67                                 <tbody>
68                                     [% FOREACH invoice IN invoices %]
69                                         <tr data-invoiceid="[% invoice.invoiceid | html %]" data-booksellerid="[% invoice.booksellerid | html %]" data-shipmentdate="[% invoice.shipmentdate | $KohaDates %]" data-billingdate="[% invoice.billingdate | $KohaDates %]" data-shipmentcost="[% invoice.shipmentcost | html %]" data-shipment_budgetid="[% invoice.shipmentcost_budgetid | html %]" data-closedate="[% invoice.closedate | $KohaDates %]">
70                                             [% IF CAN_user_acquisition_merge_invoices %]
71                                                 <td>[% invoice.is_linked_to_subscriptions | html %]</td>
72                                             [% END %]
73                                             <td><input type="checkbox" class="select-invoice" value="[% invoice.invoiceid | html %]" /></td>
74                                             <td><a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% invoice.invoiceid | uri %]">[% invoice.invoicenumber | html %]</a></td>
75                                             <td><a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% invoice.booksellerid | uri %]">[% invoice.suppliername | html %]</a></td>
76                                             <td data-order="[% invoice.shipmentdate | html %]">
77                                                 [% invoice.shipmentdate | $KohaDates %]
78                                             </td>
79                                             <td data-order="[% invoice.billingdate | html %]">
80                                                 [% invoice.billingdate | $KohaDates %]
81                                             </td>
82                                             <td>[% invoice.receivedbiblios | html %]</td>
83                                             <td>[% invoice.receiveditems | html %]</td>
84                                             <td>
85                                                 [% IF invoice.closedate %]
86                                                     <span>Closed on [% invoice.closedate | $KohaDates %]</span>
87                                                 [% ELSE %]
88                                                     <span>Open</span>
89                                                 [% END %]
90                                             </td>
91                                             <td>
92
93                                                 <div class="btn-group dropup">
94                                                     <a class="btn btn-default btn-xs dropdown-toggle" id="invoiceactions[% invoice.invoiceid | html %]" role="button" data-toggle="dropdown" href="#">
95                                                         Actions <b class="caret"></b>
96                                                     </a>
97                                                     <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="invoiceactions[% invoice.invoiceid | html %]">
98                                                         <li><a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% invoice.invoiceid | uri %]"><i class="fa fa-search"></i> Details</a></li>
99                                                         [% IF invoice.closedate %]
100                                                             [% IF CAN_user_acquisition_reopen_closed_invoices %]
101                                                                 <li><a href="invoice.pl?op=reopen&amp;invoiceid=[% invoice.invoiceid | uri %]&amp;referer=/cgi-bin/koha/acqui/invoices.pl%3Fop=do_search%26invoicenumber=[% invoicenumber | uri %]%26supplier=[% booksellerid | uri %]%26shipmentdatefrom=[% shipmentdatefrom | $KohaDates %]%26shipmentdateto=[% shipmentdateto | $KohaDates %]%26billingdatefrom=[% billingdatefrom | $KohaDates %]%26billingdateto=[% billingdateto | $KohaDates %]%26isbneanissn=[% isbneanissn | uri %]%26title=[% title | uri %]%26author=[% author | uri %]%26publisher=[% publisher | uri %]%26publicationyear=[% publicationyear | uri %]%26branch=[% branch | uri %]"><i class="fa fa-refresh"></i> Reopen</a></li>
102                                                             [% END %]
103                                                         [% ELSE %]
104                                                             [% IF CAN_user_acquisition_edit_invoices %]
105                                                                 <li><a href="invoice.pl?op=close&amp;invoiceid=[% invoice.invoiceid | uri %]&amp;referer=/cgi-bin/koha/acqui/invoices.pl%3Fop=do_search%26invoicenumber=[% invoicenumber | uri %]%26supplier=[% booksellerid | uri %]%26shipmentdatefrom=[% shipmentdatefrom | $KohaDates %]%26shipmentdateto=[% shipmentdateto | $KohaDates %]%26billingdatefrom=[% billingdatefrom | $KohaDates %]%26billingdateto=[% billingdateto | $KohaDates %]%26isbneanissn=[% isbneanissn | uri %]%26title=[% title | uri %]%26author=[% author | uri %]%26publisher=[% publisher | uri %]%26publicationyear=[% publicationyear | uri %]%26branch=[% branch | uri %]"><i class="fa fa-times-circle"></i> Close</a></li>
106                                                             [% END %]
107                                                         [% END # /IF invoice.closedate %]
108                                                         [% UNLESS invoice.receivedbiblios || invoice.receiveditems %]
109                                                             [% IF CAN_user_acquisition_delete_invoices %]
110                                                                 <li><a href="invoice.pl?op=delete&amp;invoiceid=[% invoice.invoiceid | uri %]&amp;referer=/cgi-bin/koha/acqui/invoices.pl%3Fop=do_search%26invoicenumber=[% invoicenumber | uri %]%26supplier=[% booksellerid | uri %]%26shipmentdatefrom=[% shipmentdatefrom | $KohaDates %]%26shipmentdateto=[% shipmentdateto | $KohaDates %]%26billingdatefrom=[% billingdatefrom | $KohaDates %]%26billingdateto=[% billingdateto | $KohaDates %]%26isbneanissn=[% isbneanissn | uri %]%26title=[% title | uri %]%26author=[% author | uri %]%26publisher=[% publisher | uri %]%26publicationyear=[% publicationyear | uri %]%26branch=[% branch | uri %]" class="delete_invoice"><i class="fa fa-trash"></i> Delete</a></li>
111                                                             [% END %]
112                                                         [% END %]
113                                                     </ul>
114                                                 </div> <!-- /.btn-group dropup -->
115                                             </td>
116                                         </tr>
117                                     [% END # /FOREACH invoice %]
118                                 </tbody>
119                             </table> <!-- /#[% tab | html %]resultst -->
120
121                             [% IF CAN_user_acquisition_merge_invoices %]
122                                 [% IF tab == 'closed' %]
123                                     <a class="btn btn-default merge" id="merge_closed" href="#merge_invoices" data-table="closedresultst"><i class="fa fa-compress"></i> Merge selected invoices</a>
124                                     <a class="btn btn-default" id="open_sel" href="#reopen_selected" data-table="closedresultst" data-op="reopen" data-referer="referer=/cgi-bin/koha/acqui/invoices.pl%3Fop=do_search%26invoicenumber=[% invoicenumber | uri %]%26supplier=[% booksellerid | uri %]%26shipmentdatefrom=[% shipmentdatefrom | $KohaDates %]%26shipmentdateto=[% shipmentdateto | $KohaDates %]%26billingdatefrom=[% billingdatefrom | $KohaDates %]%26billingdateto=[% billingdateto | $KohaDates %]%26isbneanissn=[% isbneanissn | uri %]%26title=[% title | uri %]%26author=[% author | uri %]%26publisher=[% publisher | uri %]%26publicationyear=[% publicationyear | uri %]%26branch=[% branch | uri %]"><i class="fa fa-refresh"></i> Reopen selected invoices</a>
125                                 [% ELSE  %]
126                                     <a class="btn btn-default merge" id="merge_open" href="#merge_invoices" data-table="openedresultst"><i class="fa fa-compress"></i> Merge selected invoices</a>
127                                     <a class="btn btn-default" id="close_sel" href="#close_selected" data-table="openedresultst" data-op="close" data-referer="referer=/cgi-bin/koha/acqui/invoices.pl%3Fop=do_search%26invoicenumber=[% invoicenumber | uri %]%26supplier=[% booksellerid | uri %]%26shipmentdatefrom=[% shipmentdatefrom | $KohaDates %]%26shipmentdateto=[% shipmentdateto | $KohaDates %]%26billingdatefrom=[% billingdatefrom | $KohaDates %]%26billingdateto=[% billingdateto | $KohaDates %]%26isbneanissn=[% isbneanissn | uri %]%26title=[% title | uri %]%26author=[% author | uri %]%26publisher=[% publisher | uri %]%26publicationyear=[% publicationyear | uri %]%26branch=[% branch | uri %]"><i class="fa fa-times-circle"></i> Close selected invoices</a>
128                                 [% END # /IF tab == 'closed' %]
129                             [% END # /IF CAN_user_acquisition_merge_invoices %]
130                         [% END # /BLOCK invoices_table %]
131
132                         [% WRAPPER tabs id= "invoicestabs" %]
133                             [% WRAPPER tabs_nav %]
134                                 [% WRAPPER tab_item tabname= "opened" bt_active= 1 %] Open invoices ([% openedinvoices.size || 0 | html %]) [% END %]
135                                 [% WRAPPER tab_item tabname= "closed" %] Closed invoices ([% closedinvoices.size || 0 | html %]) [% END %]
136                             [% END %]
137                             [% WRAPPER tab_panels %]
138                                 [% WRAPPER tab_panel tabname="opened" bt_active= 1 %]
139                                     [% IF openedinvoices %]
140                                         [% INCLUDE invoices_table invoices = openedinvoices %]
141                                     [% ELSE %]
142                                         <div class="dialog message">
143                                             <p>Your search returned no open invoices.</p>
144                                         </div>
145                                     [% END %]
146                                 [% END # /#opened %]
147
148                                 [% WRAPPER tab_panel tabname="closed" %]
149                                     [% IF closedinvoices %]
150                                         [% INCLUDE invoices_table invoices = closedinvoices closed = 1 %]
151                                     [% ELSE %]
152                                         <div class="dialog message">
153                                             <p>Your search returned no closed invoices.</p>
154                                         </div>
155                                     [% END %]
156                                 [% END # /#closed %]
157                             [% END # /tab_panels %]
158                         [% END # /#invoicestabs %]
159
160                         <div id="merge_invoices">
161                             <form id="merge_invoice_form" action="/cgi-bin/koha/acqui/invoice.pl" method="post">
162                                 <fieldset class="rows">
163                                     <ol>
164                                         <li><h2>Merge invoices</h2></li>
165                                         <li>
166                                             <table id="merge_table">
167                                                 <thead>
168                                                     <tr>
169                                                         <th>Invoice number</th>
170                                                         <th>Shipment date</th>
171                                                         <th>Billing date</th>
172                                                         <th>Shipment cost</th>
173                                                     </tr>
174                                                 </thead>
175                                                 <tbody>
176                                                 </tbody>
177                                             </table>
178                                         </li>
179
180                                         <li>
181                                             <label for="merge_invoicenumber" class="required">Invoice number:</label>
182                                             <input type="text" size="10" id="merge_invoicenumber" name="invoicenumber" value="" class="required" required="required" />
183                                             <span class="required">Required</span>
184                                         </li>
185
186                                         <li>
187                                             <label for="merge_shipmentdate">Shipment date:</label>
188                                             <input type="text" size="10" id="merge_shipmentdate" name="shipmentdate" value="" class="flatpickr" />
189                                             <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
190                                         </li>
191
192                                         <li>
193                                             <label for="merge_billingdate">Billing date:</label>
194                                             <input type="text" size="10" id="merge_billingdate" name="billingdate" value="" class="flatpickr" />
195                                             <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
196                                         </li>
197
198                                         <li>
199                                             <label for="merge_shipmentcost">Shipment cost:</label>
200                                             <input type="text" size="10" id="merge_shipmentcost" name="shipmentcost" value="" />
201                                         </li>
202                                         <li>
203                                             <label for="merge_shipment_budgetid">Fund:</label>
204                                             <select id="merge_shipment_budgetid" name="shipment_budget_id">
205                                                 <option value="">No fund</option>
206                                                 [% FOREACH budget IN budgets_loop %]
207                                                     <option value="[% budget.budget_id | html %]">[% budget.budget_name | html %]</option>
208                                                 [% END %]
209                                             </select>
210                                         </li>
211
212                                         <li>
213                                             <span class="label">Status:</span> <span id="merge_status"></span>
214                                         </li>
215                                         <li>
216                                             <input type="submit" class="btn btn-primary" value="Merge" />
217                                         </li>
218                                     </ol>
219                                     <input type="hidden" name="op" value="mod" />
220                                     <input type="hidden" id="merge_invoiceid" name="invoiceid" value="" />
221                                 </fieldset> <!-- /.rows -->
222                             </form> <!-- /#merge_invoice_form -->
223                         </div> <!-- /#merge_invoices -->
224                     [% ELSE # IF invoices %]
225                         <p>Sorry, but there are no results for your search.</p>
226                         <p>Search was:
227                             <ul>
228                                 [% IF ( invoicenumber ) %]
229                                     <li>Invoice number: [% invoicenumber | html %]</li>
230                                 [% END %]
231                                 [% IF booksellerid %]
232                                     <li>Vendor: [% suppliername | html %]</li>
233                                 [% END %]
234                                 [% IF shipmentdatefrom %]
235                                     <li>
236                                         <span>Shipment date:</span>
237                                         [% IF shipmentdateto %]
238                                             <span>From [% shipmentdatefrom | $KohaDates %]</span>
239                                             <span>To [% shipmentdateto | $KohaDates %]</span>
240                                         [% ELSE %]
241                                             <span>All since [% shipmentdatefrom | $KohaDates %]</span>
242                                         [% END %]
243                                     </li>
244                                 [% ELSE %]
245                                     [% IF shipmentdateto %]
246                                         <li>
247                                             Shipment date:
248                                             All until [% shipmentdateto | $KohaDates %]
249                                         </li>
250                                     [% END %]
251                                 [% END %]
252                                 [% IF billingdatefrom %]
253                                     <li>
254                                         <span>Billing date:</span>
255                                         [% IF billingdateto %]
256                                             <span>From [% billingdatefrom | $KohaDates %]</span>
257                                             <span>To [% billingdateto | $KohaDates %]</span>
258                                         [% ELSE %]
259                                             <span>All since [% billingdatefrom | $KohaDates %]</span>
260                                         [% END %]
261                                     </li>
262                                 [% ELSE %]
263                                     [% IF billingdateto %]
264                                         <li>
265                                             Billing date:
266                                             All until [% billingdateto | $KohaDates %]
267                                         </li>
268                                     [% END %]
269                                 [% END %]
270                                 [% IF ( isbneanissn ) %]
271                                     <li>ISBN/EAN/ISSN: [% isbneanissn | html %]</li>
272                                 [% END %]
273                                 [% IF ( title ) %]
274                                     <li>Title: [% title | html %]</li>
275                                 [% END %]
276                                 [% IF ( author ) %]
277                                     <li>Author: [% author | html %]</li>
278                                 [% END %]
279                                 [% IF ( publisher ) %]
280                                     <li>Publisher: [% publisher | html %]</li>
281                                 [% END %]
282                                 [% IF ( publicationyear ) %]
283                                     <li>Publication year: [% publicationyear | html %]</li>
284                                 [% END %]
285                                 [% IF ( branch ) %]
286                                     <li>Library: [% Branches.GetName( branch ) | html %]</li>
287                                 [% END %]
288                             </ul>
289                         </p>
290                     [% END # /IF invoices %]
291                 [% ELSE %]
292                     <p>Use the search form on the left to find invoices.</p>
293                 [% END %]<!-- do_search -->
294             </main>
295         </div> <!-- /.col-sm-10.col-sm-push-2 -->
296
297         <div class="col-sm-2 col-sm-pull-10">
298             <aside>
299                 <form action="" method="get">
300                     <fieldset class="sidebar brief">
301                         <h3>Search filters</h3>
302                         <ol>
303                             <li>
304                                 <label for="invoicenumber">Invoice number</label>
305                                 <input type="text" id="invoicenumber" name="invoicenumber" value="[% invoicenumber | html %]"
306                                     class="focus" />
307                             </li>
308                             <li>
309                                 <label for="supplier">Vendor:</label>
310                                 <select id="supplier" name="supplierid">
311                                     <option value="">All</option>
312                                     [% FOREACH supplier IN suppliers_loop %]
313                                         [% IF ( supplier.selected ) %]
314                                             <option selected="selected" value="[% supplier.booksellerid | html %]">[% supplier.suppliername | html %]</option>
315                                         [% ELSE %]
316                                             <option value="[% supplier.booksellerid | html %]">[% supplier.suppliername | html %]</option>
317                                         [% END %]
318                                     [% END %]
319                                 </select>
320                             </li>
321                             <li>
322                                 <fieldset class="brief">
323                                     <legend>Shipment date</legend>
324                                     <ol>
325                                         <li>
326                                             <label for="shipmentdatefrom">From:</label>
327                                             <input type="text" id="shipmentdatefrom" name="shipmentdatefrom" size="10" value="[% shipmentdatefrom | html %]" class="flatpickr" data-date_to="shipmentdateto" />
328                                             <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
329                                         </li>
330                                         <li>
331                                             <label for="shipmentdateto">To:</label>
332                                             <input type="text" id="shipmentdateto" name="shipmentdateto" size="10" value="[% shipmentdateto | html %]" class="flatpickr" />
333                                             <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
334                                         </li>
335                                     </ol>
336                                 </fieldset>
337                             </li>
338                             <li>
339                                 <fieldset class="brief">
340                                     <legend>Billing date</legend>
341                                     <ol>
342                                         <li>
343                                             <label for="billingdatefrom">From:</label>
344                                             <input type="text" id="billingdatefrom" name="billingdatefrom" size="10" value="[% billingdatefrom | html %]" class="flatpickr" data-date_to="billingdateto" />
345                                             <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
346                                         </li>
347                                         <li>
348                                             <label for="billingdateto">To:</label>
349                                             <input type="text" id="billingdateto" name="billingdateto" size="10" value="[% billingdateto | html %]" class="flatpickr" />
350                                             <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
351                                         </li>
352                                     </ol>
353                                 </fieldset>
354                             </li>
355                             <li>
356                                 <label for="isbneanissn">ISBN / EAN / ISSN:</label>
357                                 <input type="text" id="isbneanissn" name="isbneanissn" value="[% isbneanissn | html %]" />
358                             </li>
359                             <li>
360                                 <label for="title">Title:</label>
361                                 <input type="text" id="title" name="title" value="[% title | html %]" />
362                             </li>
363                             <li>
364                                 <label for="author">Author:</label>
365                                 <input type="text" id="author" name="author" value="[% author | html %]" />
366                             </li>
367                             <li>
368                                 <label for="publisher">Publisher:</label>
369                                 <input type="text" id="publisher" name="publisher" value="[% publisher | html %]" />
370                             </li>
371                             <li>
372                                 <label for="publicationyear">Publication year:</label>
373                                 <input type="text" id="publicationyear" name="publicationyear" value="[% publicationyear | html %]" />
374                             </li>
375                             <li>
376                                 <label for="branch">Library:</label>
377                                 <select id="branch" name="branch">
378                                     <option value="">All</option>
379                                     [%# FIXME Should not we filter the libraries %]
380                                     [% PROCESS options_for_libraries libraries => Branches.all( selected => branch, unfiltered => 1 ) %]
381                                 </select>
382                             </li>
383                         [% FOR field IN additional_fields_for_invoice %]
384                             <li>
385                                 <label for="additional_field_[% field.id | html %]ID"> [% field.name | html %]: </label>
386                                 [% IF field.authorised_value_category %]
387                                     <select id="additional_field_[% field.id | html %]" name="additional_field_[% field.id | html %]">
388                                         <option value="">All</option>
389                                         [% FOREACH av IN AuthorisedValues.GetAuthValueDropbox(field.authorised_value_category) %]
390                                             [% IF av.authorised_value == additional_field_filters.${field.id} %]
391                                                 <option value="[% av.authorised_value | html %]" selected="selected">[% av.lib | html %]</option>
392                                             [% ELSE %]
393                                                 <option value="[% av.authorised_value | html %]">[% av.lib | html %]</option>
394                                             [% END %]
395                                         [% END %]
396                                     </select>
397                                 [% ELSE %]
398                                     <input id="additional_field_[% field.id | html %]" type="text" value="[% additional_field_filters.${field.id} | html %]" name="additional_field_[% field.id | html %]" />
399                                 [% END %]
400                             </li>
401                         [% END %]
402                         </ol>
403                     </fieldset> <!-- /.sidebar.brief -->
404                     <fieldset class="action">
405                         <input type="submit" class="btn btn-primary" value="Search" />
406                     </fieldset>
407                     <input type="hidden" name="op" id="op" value="do_search" />
408                 </form>
409                 [% INCLUDE 'acquisitions-menu.inc' %]
410             </aside>
411         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
412     </div> <!-- /.row -->
413
414 [% MACRO jsinclude BLOCK %]
415     [% Asset.js("js/acquisitions-menu.js") | $raw %]
416     [% INCLUDE 'datatables.inc' %]
417     [% INCLUDE 'calendar.inc' %]
418     <script>
419         $(document).ready(function() {
420             $('[id^="CheckAll"]').click( function() {
421                 var table_id = "#" + $(this).attr('data-cb') + "resultst";
422                 $(table_id).find('.select-invoice[type="checkbox"]').each( function() {
423                     $(this).prop("checked" , true );
424                 });
425             });
426             $('[id^="UncheckAll"]').click( function() {
427                 var table_id = "#" + $(this).attr('data-cb') + "resultst";
428                 $(table_id).find('.select-invoice[type="checkbox"]').each( function() {
429                     $(this).prop("checked" , false );
430                 });
431             });
432
433             $(".delete_invoice").click(function(){
434                 return confirmDelete(_("Are you sure you want to delete this invoice?"));
435             });
436             var resultst = $("table.result").dataTable($.extend(true, {}, dataTablesDefaults, {
437                 bPaginate: false,
438                 aoColumnDefs: [
439                     { "bSortable": false, "aTargets": [1, -1] },
440                     { "bVisible": false, "aTargets": [0] }
441                 ],
442                 autoWidth: false
443             }));
444
445             $(".show_only_subscription").prop("checked", false);
446
447             $(".show_only_subscription").click(function(){
448                 var table_id = $(this).attr("data-tableid");
449                 if ( $(this).prop("checked") ) {
450                     $('#'+table_id).dataTable().fnFilter( "1", 0, true );
451                 } else {
452                     $('#'+table_id).dataTable().fnFilter( '', 0 );
453                 }
454             });
455
456             $('#open_sel,#close_sel').click(function () {
457                 var referer = $(this).attr("data-referer");
458                 var op = $(this).attr("data-op");
459                 var table = $(this).data('table');
460                 var invoice_link = "invoice.pl?op="+op;
461                 if ($('#' + table + ' .select-invoice:checked').length) {
462                     $('#' + table + ' .select-invoice:checked').each(function () {
463                             var row = $(this).parents('tr');
464                             invoice_link = invoice_link + "&amp;invoiceid="+$(row).attr('data-invoiceid');
465                     });
466                     window.location.href =invoice_link +"&amp;"+referer;
467                 } else {
468                     alert ("Please select at least one invoice." );
469                 }
470             });
471
472             $('.merge').click(function (ev) {
473                 var booksellerid;
474                 var mismatch;
475                 var invoices = [ ];
476                 var table = $(this).data('table');
477                 if ($('#' + table + ' .select-invoice:checked').size() < 2) {
478                     alert(_("You must select at least two invoices to merge."));
479                     return false;
480                 }
481                 $('#' + table + ' .select-invoice:checked').each(function () {
482                     var row = $(this).parents('tr');
483                     booksellerid = booksellerid || $(row).attr('data-booksellerid');
484                     if (booksellerid !== $(row).attr('data-booksellerid')) {
485                         mismatch = true;
486                     }
487                     invoices.push({ 'invoiceid': $(row).attr('data-invoiceid'),
488                                     'invoicenumber': $(row).find('td:nth-child(2) a').text(),
489                                     'shipmentdate': $(row).attr('data-shipmentdate'),
490                                     'billingdate': $(row).attr('data-billingdate'),
491                                     'shipmentcost': $(row).attr('data-shipmentcost'),
492                                     'shipment_budgetid': $(row).attr('data-shipment_budgetid'),
493                                     'closedate': $(row).attr('data-closedate'), });
494                     $('#merge_invoice_form').append('<input type="hidden" name="merge" value="' + $(row).attr('data-invoiceid') + '" />');
495                 });
496                 if (mismatch) {
497                     alert(_("All invoices for merging must be from the same vendor"));
498                 } else {
499                     $('#merge_table tbody').empty();
500                     $.each(invoices, function (idx, invoice) {
501                         var row = $('<tr data-invoiceid="' + invoice.invoiceid + '"><td>' + invoice.invoicenumber + '</td><td>' + invoice.shipmentdate + '</td><td>' + invoice.billingdate + '</td><td>' + invoice.shipmentcost + '</td></tr>');
502                         $(row).appendTo('#merge_table tbody');
503                         $(row).click(function () {
504                             $('#merge_table tbody tr').removeClass('active');
505                             $(this).addClass('active');
506                             $.each(['invoiceid', 'shipmentdate', 'billingdate', 'shipmentcost', 'shipment_budgetid', 'invoicenumber'], function (idx, prop) {
507                                 $('#merge_' + prop).val(invoice[prop]);
508                             });
509                             if (invoice.closedate) {
510                                 $('#merge_status').text(_("Closed on %s").format(invoice.closedate));
511                             } else {
512                                 $('#merge_status').text(_("Open"));
513                             }
514                         });
515                     });
516                     $('#merge_table tbody tr:first').click();
517                     $('#merge_invoices').show();
518                 }
519             });
520         });
521     </script>
522 [% END %]
523
524 [% INCLUDE 'intranet-bottom.inc' %]