Bug 27631: labels and members folders
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / maninvoice.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE Price %]
5 [% USE Branches %]
6 [% SET footerjs = 1 %]
7
8 [% PROCESS 'accounts.inc' %]
9
10 [% INCLUDE 'doc-head-open.inc' %]
11 <title>Create manual invoice &rsaquo; Patrons &rsaquo; Koha</title>
12 [% INCLUDE 'doc-head-close.inc' %]
13 </head>
14
15 <body id="pat_maninvoice" class="pat">
16 [% INCLUDE 'header.inc' %]
17 [% INCLUDE 'patron-search-header.inc' %]
18
19 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
20     <ol>
21         <li>
22             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
23         </li>
24         <li>
25             <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
26         </li>
27         <li>
28             <a href="#" aria-current="page">
29                 Manual invoice
30             </a>
31         </li>
32     </ol>
33 </nav>
34
35 <div class="main container-fluid">
36     <div class="row">
37         <div class="col-sm-10 col-sm-push-2">
38             <main>
39
40                 <h1>Manual invoice</h1>
41
42             [% INCLUDE 'members-toolbar.inc' %]
43
44             <!-- The manual invoice and credit buttons -->
45             <div class="statictabs">
46                 <ul>
47                     <li><a href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | uri %]">Transactions</a></li>
48                     <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Make a payment</a></li>
49                     <li class="active"><a href="/cgi-bin/koha/members/maninvoice.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Create manual invoice</a></li>
50                     <li><a href="/cgi-bin/koha/members/mancredit.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Create manual credit</a></li>
51                 </ul>
52                 <div class="tabs-container">
53
54                 [% IF error == 'itemnumber' %]
55                     <div id="error_message" class="dialog alert">
56                         Error: Invalid barcode entered, please try again
57                     </div>
58                 [% ELSIF error %]
59                     <div id="error_message" class="dialog alert">
60                         An error occurred, please try again: [% error | html %]
61                     </div>
62                 [% END %]
63                 <form action="/cgi-bin/koha/members/maninvoice.pl" method="post" id="maninvoice">
64                     <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
65                     <input type="hidden" name="csrf_token" value="[% csrf_token | html %]" />
66                     <fieldset class="rows">
67                         <legend>Manual invoice</legend>
68                         <ol>
69                             <li>
70                                 <label for="type">Type: </label>
71                                 <select name="type" id="type">
72                                     [% FOREACH debit_type IN debit_types %]
73                                     [% IF debit_type.code == type %]
74                                     <option value="[% debit_type.code | html %]" selected="selected">[%- PROCESS debit_type_description debit_type=debit_type -%]</option>
75                                     [% ELSE %]
76                                     <option value="[% debit_type.code | html %]">[%- PROCESS debit_type_description debit_type=debit_type -%]</option>
77                                     [% END %]
78                                     [% END %]
79                                 </select>
80                             </li>
81                             <li><label for="barcode">Barcode: </label><input type="text" name="barcode" id="barcode" value="[% barcode | html %]" /></li>
82                             <li><label for="desc">Description: </label><input type="text" name="desc" id="desc" size="50" value="[% desc | html %]" /></li>
83                             <li><label for="note">Note: </label><input type="text" name="note" size="50" id="note" value="[% note | html %]" /></li>
84                             <li><label for="amount">Amount: </label><input type="text" inputmode="decimal" pattern="^\d+(\.\d{2})?$" name="amount" id="amount" required="required" min="0" value="[% amount | $Price on_editing => 1 %]" /> Example: 5.00</li>
85                         </ol>
86                     </fieldset>
87                     <fieldset class="action">
88                         <button type="submit" name="add" value="save">Save</button>
89                         <button type="submit" name="add" value="save and pay">Save and pay</button>
90                         <a class="cancel" href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | html %]">Cancel</a>
91                     </fieldset>
92                 </form>
93
94                 </div>
95             </div>
96
97             </main>
98         </div> <!-- /.col-sm-10.col-sm-push-2 -->
99
100         <div class="col-sm-2 col-sm-pull-10">
101             <aside>
102                 [% INCLUDE 'circ-menu.inc' %]
103             </aside>
104         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
105      </div> <!-- /.row -->
106
107 [% MACRO jsinclude BLOCK %]
108     [% INCLUDE 'str/members-menu.inc' %]
109     [% Asset.js("js/members-menu.js") | $raw %]
110     <script>
111         var type_fees = {};
112         [% FOREACH debit_type IN debit_types %]
113             type_fees['[% debit_type.code | html %]'] = "[% IF debit_type.default_amount %][% debit_type.default_amount | $Price %][% END %]";
114         [% END %]
115         $(document).ready(function(){
116             $('#maninvoice').preventDoubleFormSubmit();
117             $("fieldset.rows input, fieldset.rows select").addClass("noEnterSubmit");
118             $("#invoice_type").on("change",function(){
119                 this.form.desc.value = this.options[this.selectedIndex].value;
120                 this.form.amount.value = type_fees[this.options[this.selectedIndex].value];
121             });
122             [% UNLESS amount.defined %]
123             $("#maninvoice #desc").val($("#maninvoice #type option:selected").text());
124             $("#maninvoice #amount").val(type_fees[$("#maninvoice #type option:selected").val()]);
125             [% END %]
126             $("#maninvoice #type").change(function(){
127                 $("#maninvoice #desc").val($(this).find("option:selected").text());
128                 $("#maninvoice #amount").val(type_fees[$(this).val()]);
129             });
130         });
131     </script>
132 [% END %]
133
134 [% INCLUDE 'intranet-bottom.inc' %]