Bug 24157: Handle the case where logged in user does not have edit_invoices
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / invoice.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE Price %]
6 [% SET footerjs = 1 %]
7 [% USE AuthorisedValues %]
8
9 [% INCLUDE 'doc-head-open.inc' %]
10 <title>Koha &rsaquo; Acquisitions &rsaquo; Invoice</title>
11 [% INCLUDE 'doc-head-close.inc' %]
12 </head>
13
14 <body id="acq_invoice" class="acq">
15 [% INCLUDE 'header.inc' %]
16 [% INCLUDE 'acquisitions-search.inc' %]
17
18 [% SET readonly = NOT CAN_user_acquisition_edit_invoices %]
19
20 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo; <a href="/cgi-bin/koha/acqui/invoices.pl">Invoices</a> &rsaquo; <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% invoiceid | html %]">[% invoicenumber | html %]</a></div>
21
22 <div class="main container-fluid">
23     <div class="row">
24         <div class="col-sm-10 col-sm-push-2">
25             <main>
26
27                 [% INCLUDE 'blocking_errors.inc' %]
28
29       [% IF ( modified ) %]
30         <div class="dialog message">
31           <p>Invoice has been modified</p>
32         </div>
33       [% END %]
34       <h1>Invoice: [% invoicenumber | html %]</h1>
35
36       <p>Vendor: <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% suppliername | html %]</a></p>
37         <form action="/cgi-bin/koha/acqui/invoice.pl" method="post" class="validated">
38         <fieldset class="rows">
39             <ol>
40             <li>
41                 [% IF readonly %]
42                     <label for="shipmentdate">Invoice number:</label>
43                     [% invoicenumber | html %]
44                 [% ELSE %]
45                     <label for="shipmentdate" class="required">Invoice number:</label>
46                     <input type="text" id="invoicenumber" name="invoicenumber" value="[% invoicenumber | html %]" class="required" required="required"/>
47                     <span class="required">Required</span>
48                 [% END %]
49             </li>
50
51             <li>
52                 <label for="shipmentdate">Shipment date:</label>
53                 [% IF readonly %]
54                     [% shipmentdate | $KohaDates %]
55                 [% ELSE %]
56                     <input type="text" size="10" id="shipmentdate" name="shipmentdate" value="[% shipmentdate | $KohaDates %]" class="datepicker" />
57                 [% END %]
58             </li>
59
60             <li>
61                 <label for="billingdate">Billing date:</label>
62                 [% IF readonly %]
63                     [% billingdate | $KohaDates %]
64                 [% ELSE %]
65                     <input type="text" size="10" id="billingdate" name="billingdate" value="[% billingdate | $KohaDates %]" class="datepicker" />
66                 [% END %]
67             </li>
68
69             <li>
70                 <label for="shipmentcost">Shipping cost:</label>
71                 [% IF readonly %]
72                     [% shipmentcost | $Price %]
73                 [% ELSE %]
74                     <input type="text" size="10" id="shipmentcost" name="shipmentcost" value="[% shipmentcost | $Price on_editing => 1 %]" />
75                 [% END %]
76             </li>
77             <li>
78                 <label for="shipment_budget_id">Shipping fund: </label>
79                 [% IF readonly %]
80                     [% budget.budget_name | html %]
81                 [% ELSE %]
82                     <select id="shipment_budget_id" name="shipment_budget_id">
83                         <option value="">No fund</option>
84                         [% FOREACH budget IN budgets %]
85                             [% IF ( budget.selected ) %]
86                                 <option value="[% budget.b_id | html %]" selected="selected">[% budget.b_txt | html %] [% IF ( !budget.b_active ) %](inactive)[% END %]</option>
87                             [% ELSIF ( budget.b_active ) %]
88                                 <option value="[% budget.b_id | html %]">[% budget.b_txt | html %]</option>
89                             [% ELSE %]
90                                 <option value="[% budget.b_id | html %]" class="b_inactive">[% budget.b_txt | html %] (inactive)</option>
91                             [% END %]
92                         [% END %]
93                     </select>
94                     <label for="showallfunds" style="float:none;width:auto;">&nbsp;Show inactive:</label>
95                     <input type="checkbox" id="showallfunds" />
96                 [% END %]
97             </li>
98
99             [% IF ( invoiceclosedate ) %]
100             <li><span class="label">Status:</span>
101                 Closed on [% invoiceclosedate | $KohaDates %]</li>
102
103                 [% IF CAN_user_acquisition_reopen_closed_invoices AND NOT readonly %]
104                     <li>
105                         <label for="reopen">Reopen: </label>
106                         <input type="checkbox" name="reopen" id="reopen" />
107                     </li>
108                 [% END %]
109             [% ELSE %]
110                 <li>
111                     <span class="label">Status:</span>
112                     Open
113                 </li>
114                 [% UNLESS ( readonly ) %]
115                     <li>
116                         <label for="close">Close: </label>
117                         <input type="checkbox" name="close" id="close" />
118                     </li>
119                 [% END %]
120             [% END %]
121             </ol>
122         [% UNLESS readonly %]
123           <input type="hidden" name="op" value="mod" />
124           <input type="hidden" name="invoiceid" value="[% invoiceid | html %]" />
125             <fieldset class="action">
126                 <input type="submit" value="Save" />
127                 [% IF CAN_user_acquisition_delete_invoices AND NOT orders_loop.size %]
128                 <a href="invoice.pl?op=delete&invoiceid=[% invoiceid | uri %]" id="delete">Delete</a>
129                 [% END %]
130             </fieldset>
131         [% END %]
132         </fieldset>
133       </form>
134
135       <hr />
136
137         <h3>Adjustments</h3>
138
139           <form action="/cgi-bin/koha/acqui/invoice.pl" method="post" class="validated">
140               <fieldset class="rows">
141                   <input type="hidden" name="invoiceid" value="[% invoiceid | html %]" />
142                   [% IF (adjustments && adjustments.count > 0) %]
143                       <table id="invoice_adj_table">
144                           <tr>
145                              <th>Id</th>
146                              <th>Amount</th>
147                              <th>Reason</th>
148                              <th>Note</th>
149                              <th>Fund</th>
150                              <th>Encumber while invoice open</th>
151                              [% UNLESS readonly %]<th>&nbsp</th>[% END %]
152                           </tr>
153                           [% total_adj = 0 %]
154                           [% FOREACH adjustment IN adjustments %]
155                               [% total_adj = total_adj + adjustment.adjustment %]
156                               <tr>
157                                   <td><input type="hidden" name="adjustment_id" value="[% adjustment.adjustment_id | html %]" />[% adjustment.adjustment_id | html %]</td>
158                                   <td>
159                                     [% IF readonly %]
160                                         [% adjustment.adjustment | $Price %]
161                                     [% ELSE %]
162                                         <input type="text" name="adjustment" id="adjustment_[% adjustment.adjustment_id | html %]" value="[% adjustment.adjustment | $Price on_editing => 1 %]" />
163                                     [% END %]
164                                   </td>
165                                   <td>
166                                       [% IF readonly %]
167                                           [% AuthorisedValues.GetByCode('ADJ_REASON', adjustment.reason) | html %]
168                                       [% ELSE %]
169                                           [% reasons = AuthorisedValues.Get("ADJ_REASON") %]
170                                           [% IF reasons.0 %]
171                                               <select id="reason_[% adjustment.adjustment_id | html %]" name="reason">
172                                                   <option value="">No reason</option>
173                                                   [% FOREACH reason IN reasons %]
174                                                       [% IF ( adjustment.reason == reason.authorised_value ) %]
175                                                           <option selected="selected" value="[% reason.authorised_value | html %]">
176                                                       [% ELSE %]
177                                                           <option value="[% reason.authorised_value | html %]">
178                                                       [% END %]
179                                                       [% reason.lib | html %]
180                                                       </option>
181                                                   [% END %]
182                                               </select>
183                                           [% ELSE %]
184                                               <p title="Define values in authorised value category ADJ_REASON to enable">None</p>
185                                               <input type="hidden" name="reason" id="reason_[% adjustment.adjustment_id | html %]" value="" />
186                                           [% END %]
187                                         [% END %]
188                                   </td>
189                                   <td>
190                                       [% IF readonly %]
191                                           [% adjustment.note | html %]
192                                       [% ELSE %]
193                                           <input type="text" name="note" id="note_new" value="[% adjustment.note | html %]"/>
194                                       [% END %]
195                                   </td>
196                                   <td>
197                                       [% IF readonly %]
198                                           [% adjustement.fund.budget_name | html %]
199                                       [% ELSE %]
200                                           <select id="budget_id_[% adjustment.adjustment_id | html %]" name="budget_id">
201                                               <option value="">No fund</option>
202                                               [% FOREACH budget IN budgets %]
203                                                   [% IF ( budget.b_id == adjustment.budget_id ) %]
204                                                       <option selected="selected" value="[% budget.b_id | html %]">
205                                                   [% ELSE %]
206                                                       <option value="[% budget.b_id | html %]">
207                                                   [% END %]
208                                                   [% budget.b_txt | html %]
209                                                   </option>
210                                               [% END %]
211                                           </select>
212                                       [% END %]
213                                   </td>
214                                   [% IF adjustment.encumber_open %]
215                                       <td>
216                                         [% IF readonly %]
217                                           <input type="checkbox" checked="checked" readonly="readonly" />
218                                         [% ELSE %]
219                                           <input type="checkbox" name="encumber_open" id="encumber_[% adjustment.adjustment_id | html %]"  value="[% adjustment.adjustment_id | html %]" checked/>
220                                         [% END %]
221                                       </td>
222                                   [% ELSE %]
223                                       <td>
224                                         [% IF readonly %]
225                                           <input type="checkbox" disabled="disabled" />
226                                         [% ELSE %]
227                                           <input type="checkbox" name="encumber_open" id="encumber_[% adjustment.adjustment_id | html %]"  value="[% adjustment.adjustment_id | html %]" />
228                                         [% END %]
229                                       </td>
230                                   [% END %]
231                                   [% UNLESS readonly %]
232                                       <td>
233                                          <a class="btn btn-default btn-xs delete_adjustment" href="/cgi-bin/koha/acqui/invoice.pl?op=del_adj&adjustment_id=[% adjustment.adjustment_id | html %]&invoiceid=[% invoiceid | html %]"><i class="fa fa-trash"></i> Delete</a>
234                                       </td>
235                                   [% END %]
236                               </tr>
237                           [% END %]
238                       </table>
239                   [% END %]
240
241                   [% UNLESS readonly %]
242                       <p>
243                           <a href="#" id="show_invoice_adjustment" class="toggle_invoice_adjustment"><i class="fa fa-plus"></i> Add an adjustment</a>
244                       </p>
245
246                       <fieldset id="add_invoice_adjustment" style="display:none">
247                           <h4>Add an adjustment</h4>
248                           <input type="hidden" name="adjustment_id" value="new" />
249                               <ol>
250                                   <li>
251                                       <label for="adjustment_new">Amount: </label>
252                                       <input type="text" name="adjustment" id="adjustment_new" />
253                                   </li>
254                                   [% reasons = AuthorisedValues.Get("ADJ_REASON") %]
255                                   [% IF reasons.0 %]
256                                       <li>
257                                           <label for="reason_[% adjustment.adjustment_id | html %]">Reason: </label>
258                                           <select id="reason_[% adjustment.adjustment_id | html %]" name="reason">
259                                               <option value="">No reason</option>
260                                               [% FOREACH reason IN reasons %]
261                                                   <option value="[% reason.authorised_value | html %]">
262                                                       [% reason.lib | html %]
263                                                   </option>
264                                               [% END %]
265                                           </select>
266                                       </li>
267                                   [% ELSE %]
268                                       <li>
269                                           <span class="label">Reason: </span>
270                                           <span>None</span>
271                                           <div class="hint">Define values in authorised value category ADJ_REASON to enable</div>
272                                       </li>
273                                   [% END %]
274                                   <li>
275                                       <label for="note_new">Note: </label>
276                                       <input type="text" name="note" id="note_new" value=""/>
277                                   </li>
278                                   <li>
279                                       <label for="budget_id_new">Fund: </label>
280                                       <select id="budget_id_new" name="budget_id">
281                                           <option selected="selected" value="">No fund</option>
282                                           [% FOREACH budget IN budgets %]
283                                               <option value="[% budget.b_id | html %]">
284                                               [% budget.b_txt | html %]
285                                               </option>
286                                           [% END %]
287                                       </select>
288                                   </li>
289                                   <li>
290                                       <label for="encumber_new">Encumber while invoice open? </label>
291                                       <input type="checkbox" name="encumber_open" id="encumber_new" value="new" />
292                                       <input type="hidden" name="delete" value="">
293                                   </li>
294                                   <li>
295                                       <span class="label">&nbsp;</span>
296                                       <a href="#" id="cancel_invoice_adjustment" class="toggle_invoice_adjustment" style="display:none"><i class="fa fa-remove"></i> Cancel</a>
297                                   </li>
298                               </ol>
299                           </fieldset>
300                           <fieldset class="action">
301                               <input type="hidden" name="op" value="mod_adj" />
302                               <input type="submit" value="Update adjustments" />
303                           </fieldset>
304                     [% END %]
305                   </fieldset>
306               </form>
307       <p>
308           <a href="/cgi-bin/koha/acqui/parcel.pl?invoiceid=[% invoiceid | uri %]">Go to receipt page</a>
309           [% IF Koha.Preference('AcqEnableFiles') %]| <a href="/cgi-bin/koha/acqui/invoice-files.pl?invoiceid=[% invoiceid | uri %]">Manage invoice files</a>[% END %]
310       </p>
311       <h2>Invoice details</h2>
312       <fieldset>
313       [% IF orders_loop.size %]
314           <label for="show_all_details">
315             <input type="checkbox" style="vertical-align: middle;" id="show_all_details" />
316             Show all details
317           </label>
318           <table id="orderst">
319             <thead>
320               <tr>
321                 <th class="anti-the">Summary</th>
322                 <th>Library</th>
323                 <th class="tax_excluded">Actual cost tax exc.</th>
324                 <th class="tax_included">Actual cost tax inc.</th>
325                 <th class="replacementprice">Replacement price</th>
326                 <th>Qty.</th>
327                 <th class="tax_excluded">Total tax exc. ([% currency.symbol | html %])</th>
328                 <th class="tax_included">Total tax inc. ([% currency.symbol | html %])</th>
329                 <th>GST %</th>
330                 <th>GST</th>
331                 <th>Fund</th>
332               </tr>
333             </thead>
334             <tbody>
335               [% FOREACH order IN orders_loop %]
336                 <tr>
337                   <td>
338                     [% IF order.biblionumber %]
339                       <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]">[% order.title | html %]</a>
340                       [% IF ( order.author ) %]
341                         <br /><em>by</em> [% order.author | html %]
342                       [% END %]
343                     [% ELSE %]
344                       <em>Deleted bibliographic record, can't find title</em>
345                     [% END %]
346                     [% IF ( order.isbn ) %] &ndash; [% order.isbn | html %][% END %]
347                     [% IF ( order.publishercode ) %]
348                       <br/>[% order.publishercode | html %]
349                         [% IF order.publicationyear %], [% order.publicationyear | html %]
350                         [% ELSIF ( order.copyrightdate ) %][% order.copyrightdate | html %][% END %]
351                     [% END %]
352                   </td>
353                   <td><p>[% order.branchcode | html %]</p></td>
354                   <td class="number tax_excluded">[% order.unitprice_tax_excluded | $Price %]</td>
355                   <td class="number tax_included">[% order.unitprice_tax_included | $Price %]</td>
356                   <td class="number replacementprice">[% order.replacementprice | $Price %] [% IF ( order.uncertainprice ) %] (Uncertain) [% END %]</td>
357                   <td class="number">[% order.quantity | html %]</td>
358                   <td class="number tax_excluded">[% order.total_tax_excluded | $Price %]</td>
359                   <td class="number tax_included">[% order.total_tax_included | $Price %]</td>
360                   <td class="number">[% order.tax_rate * 100 | html %]</td>
361                   <td class="number">[% order.tax_value | $Price %]</td>
362                   <td>[% order.budget_name | html %]</td>
363                 </tr>
364               [% END %]
365             </tbody>
366             <tfoot>
367               [% FOR tf IN foot_loop %]
368                 <tr>
369                     <th colspan="2">Total (GST [% tf.tax_rate * 100 | html %] %)</th>
370                     <th class="tax_excluded"></th>
371                     <th class="tax_included"></th>
372                     <th class="replacementprice"/>
373                     <th>[% tf.quantity | html %]</th>
374                     <th class="tax_excluded">[% tf.total_tax_excluded | $Price %]</th>
375                     <th class="tax_included">[% tf.total_tax_included | $Price %]</th>
376                     <th>&nbsp;</th>
377                     <th>[% tf.tax_value | $Price %]</th>
378                     <th>&nbsp;</th>
379                 </tr>
380               [% END %]
381               <tr>
382                 <th colspan="2">Total ([% currency.symbol | html %])</th>
383                 <th class="tax_excluded"></th>
384                 <th class="tax_included"></th>
385                 <th class="replacementprice"/>
386                 <th>[% total_quantity | html %]</th>
387                 <th class="tax_excluded">[% total_tax_excluded | $Price %]</th>
388                 <th class="tax_included">[% total_tax_included | $Price %]</th>
389                 <th>&nbsp;</th>
390                 <th>[% total_tax_value | $Price %]</th>
391                 <th>&nbsp;</th>
392               </tr>
393               <tr>
394                 <th colspan="2">Total + adjustments + shipment cost ([% currency.symbol | html %])</th>
395                 <th class="tax_excluded"></th>
396                 <th class="tax_included"></th>
397                 <th class="replacementprice"/>
398                 <th>[% total_quantity | html %]</th>
399                 <th class="tax_excluded">[% total_tax_excluded_shipment + total_adj | $Price %]</th>
400                 <th class="tax_included">[% total_tax_included_shipment + total_adj | $Price %]</th>
401                 <th>&nbsp;</th>
402                 <th>[% total_tax_value | $Price %]</th>
403                 <th>&nbsp;</th>
404               </tr>
405             </tfoot>
406           </table>
407         [% ELSE %]
408             <div class="dialog message"><p>No orders yet</p>
409             [% IF adjustments && adjustments.count > 0 || shipmentcost && shipmentcost > 0 %]
410             <p>Adjustments plus shipping: [% total_adj + shipmentcost | $Price %]</p>
411             [% END %]
412             </div>
413         [% END %]
414         [% IF ( (Koha.Preference('AcqEnableFiles')) && files ) %]
415             <br />
416             <h2>Files attached to invoice</h2>
417             <table id="invoice_files_table">
418                 <thead>
419                     <tr>
420                         <th>Name</th>
421                         <th>Type</th>
422                         <th>Description</th>
423                         <th>Uploaded</th>
424                     </tr>
425                 </thead>
426                 <tbody>
427                 [% FOREACH f IN files %]
428                     <tr>
429                          <td><a href="/cgi-bin/koha/acqui/invoice-files.pl?invoiceid=[% invoiceid | uri %]&amp;op=download&amp;view=1&amp;file_id=[% f.file_id | uri %]">[% f.file_name | html %]</a></td>
430                          <td>[% f.file_type | html %]</td>
431                          <td>[% f.file_description | html %]</td>
432                          <td class="title-string">
433                            <span title="[% f.date_uploaded | html %]">[% f.date_uploaded | $KohaDates %]</span>
434                          </td>
435                     </tr>
436                 [% END %]
437                 </tbody>
438             </table>
439         [% END %]
440         </fieldset>
441     </main>
442   </div> <!-- /.col-sm-10.col-sm-push-2 -->
443
444     <aside>
445         <div class="col-sm-2 col-sm-pull-10">
446             [% INCLUDE 'acquisitions-menu.inc' %]
447         </div>
448     </aside>
449 </div> <!-- /.row -->
450
451 [% MACRO jsinclude BLOCK %]
452     [% Asset.js("js/acquisitions-menu.js") | $raw %]
453     [% INCLUDE 'calendar.inc' %]
454     [% INCLUDE 'datatables.inc' %]
455     <script>
456         function updateColumnsVisibility(visible) {
457             if ( visible ) {
458                 $("table .tax_excluded, .tax_included").show();
459             } else {
460                 [% IF ( invoiceincgst ) %]
461                     $("table .tax_excluded").hide();
462                 [% ELSE %]
463                     $("table .tax_included").hide();
464                 [% END %]
465             }
466         }
467
468         $(document).ready(function() {
469             $("#delete").click(function(){
470                 return confirmDelete(_("Are you sure you want to delete this invoice?"));
471             });
472             $("#orderst").dataTable($.extend(true, {}, dataTablesDefaults, {
473                 bInfo: false,
474                 bPaginate: false,
475                 bFilter: false,
476                 sDom: "t",
477                 "aoColumnDefs": [
478                     { "sType": "anti-the", "aTargets": [ "anti-the" ] }
479                 ]
480             }));
481             [% IF ( (Koha.Preference('AcqEnableFiles')) && files ) %]
482                 $("#invoice_files_table").dataTable($.extend(true, {}, dataTablesDefaults, {
483                     "aoColumnDefs": [
484                         { "aTargets": [ "title-string" ], "sType": "title-string" }
485                     ],
486                     bInfo: false,
487                     bPaginate: false,
488                     bFilter: false,
489                     sDom: "t"
490                 }));
491             [% END %]
492             $("#show_all_details").click(function(){
493                 updateColumnsVisibility( $(this).is(":checked") );
494             });
495
496             $("#show_all_details").prop('checked', false);
497             updateColumnsVisibility(false);
498             $(".toggle_invoice_adjustment").on("click", function(e){
499                 e.preventDefault();
500                 $("#show_invoice_adjustment, #cancel_invoice_adjustment, #add_invoice_adjustment").toggle();
501             });
502             $("a.delete_adjustment").click(function(){
503                 return ( confirm( _("Are you sure you want to delete this file ?") ) );
504             });
505
506             //keep a copy of all budgets before removing the inactives
507             var budgetId = $("#shipment_budget_id");
508             var disabledBudgetsCopy = budgetId.html();
509             $('.b_inactive').remove();
510
511             $('#showallfunds').click(function() {
512                 if ($(this).is(":checked")) {
513                     budgetId.html(disabledBudgetsCopy); //Puts back all the funds
514                 }
515                 else {
516                     $('.b_inactive').remove();
517                 }
518             });
519         });
520     </script>
521 [% END %]
522
523 [% INCLUDE 'intranet-bottom.inc' %]