Merge branch 'bug_8641' into 3.12-master
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / supplier.tt
1 [% USE KohaDates %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Vendor [% bookselname %]</title>
4 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
5 [% INCLUDE 'doc-head-close.inc' %]
6 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
7 [% INCLUDE 'datatables-strings.inc' %]
8 <script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>
9
10 <script type="text/javascript">
11 //<![CDATA[
12 function confirm_deletion() {
13     if (confirm(_("Confirm deletion of this vendor ?"))) {
14         window.location="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]&op=delete";
15     }
16 }
17 function check(f) {
18 if (f.company.value == "") {
19     alert(_("You must specify a name for this vendor."));
20     return false;
21 }
22     f.submit();
23 }
24
25  $(document).ready(function() {
26     [% IF (dateformat == 'metric') %]
27         dt_add_type_uk_date();
28     [% END %]
29     var contractst = $("#contractst").dataTable($.extend(true, {}, dataTablesDefaults, {
30         "aoColumnDefs": [
31           { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
32           [% IF (dateformat == 'metric') %]
33             { "aTargets": [ 2, 3 ], "sType": "uk_date" },
34           [% END %]
35         ],
36         'bPaginate': false,
37         'bFilter': false,
38         'bInfo': false,
39     } ) );
40  });
41 //]]>
42 </script>
43 </head>
44 <body id="acq_supplier" class="acq">
45 [% INCLUDE 'header.inc' %]
46 [% INCLUDE 'acquisitions-search.inc' %]
47
48 <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; [% IF ( enter ) %][% IF ( booksellerid ) %] <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% name %]</a> &rsaquo; Update: [% name %][% ELSE %]Add vendor[% END %] [% ELSE %][% name %][% END %]</div>
49
50 <div id="doc" class="yui-t7">
51
52 <div id="bd">
53     <div id="yui-main">
54     [% IF ( enter ) %]
55         [% IF ( booksellerid ) %]
56         <h1>Update: [% name %]</h1>
57     [% ELSE %]
58         <h1>Add vendor</h1>
59     [% END %]
60     [% END %]
61 [% UNLESS ( enter ) %][% INCLUDE 'acquisitions-toolbar.inc' %][% END %]
62 [% IF ( enter ) %]
63     <form action="updatesupplier.pl" name="updatesupplier" method="post">
64     <div class="yui-g">
65         <input type="hidden" name="booksellerid" value="[% booksellerid %]" />
66         <fieldset class="rows">
67             <legend>Company details</legend>
68             <ol><li><label for="company" class="required">Name * </label>
69                 <input type="text" size="40" id="company" name="company" value="[% name %]" /></li>
70             <li><label for="company_postal">Postal address</label>
71                     <textarea id="company_postal" name="company_postal" cols="40" rows="3">[% postal %]</textarea></li>
72             <li><label for="physical">Physical address</label>
73                 <textarea id="physical" name="physical" cols="40" rows="3">[% address1 %][% address2 %][% address3 %][% address4 %]</textarea></li>
74             <li><label for="company_phone">Phone</label>
75                 <input type="text" size="20" id="company_phone" name="company_phone" value="[% phone %]" /></li>
76             <li><label for="company_fax">Fax</label>
77                 <input type="text" size="20" id="company_fax" name="company_fax" value="[% fax %]" /></li>
78             <li><label for="website">Website</label>
79                 <input type="text" size="40" id="website" name="website" value="[% url %]" /></li>
80             <li><label for="accountnumber">Account number</label>
81                 <input type="text" size="40" id="accountnumber" name="accountnumber" value="[% accountnumber %]" /></li></ol>
82         </fieldset>
83         <fieldset class="rows">
84             <legend>Contact details</legend>
85         <ol> <li><label for="company_contact_name">Contact name</label>
86                 <input type="text" size="40" id="company_contact_name" name="company_contact_name" value="[% contact %]" /></li>
87             <li><label for="company_contact_position">Position</label>
88                 <input type="text" size="40" id="company_contact_position" name="company_contact_position" value="[% contpos %]" /></li>
89             <li><label for="contact_phone">Phone</label>
90                 <input type="text" size="20" id="contact_phone" name="contact_phone" value="[% contphone %]" /> </li>
91             <li><label for="contact_phone_2">Alternative phone</label>
92                 <input type="text" size="20" id="contact_phone_2" name="contact_phone_2" value="[% contaltphone %]" /></li>
93             <li><label for="contact_fax">Fax</label>
94                 <input type="text" size="20" id="contact_fax" name="contact_fax" value="[% contfax %]" /></li>
95             <li><label for="company_email">Email</label>
96                 <input type="text" size="40" id="company_email" name="company_email" value="[% contemail %]" /></li>
97             <li><label for="contact_notes">Notes</label>
98                 <textarea id="contact_notes" name="contact_notes" cols="40" rows="4">[% contnotes %]</textarea></li></ol>
99         </fieldset>
100     </div>
101         <div class="yui-g">
102         <fieldset class="rows">
103             <legend>Ordering information</legend>
104             <ol class="radio"><li><label for="activestatus" class="radio">Vendor is:</label>
105                     [% IF ( active ) %]
106                         <label for="activestatus">Active</label> <input type="radio" id="activestatus" name="status" value="1" checked="checked" />
107                         <label for="inactivestatus">Inactive</label> <input type="radio" id="inactivestatus" name="status" value="0" />
108                     [% ELSE %]
109                         <label for="activestatus">Active</label> <input type="radio" id="activestatus" name="status" value="1" />
110                         <label for="inactivestatus">Inactive</label> <input type="radio" id="inactivestatus" name="status" value="0" checked="checked" />
111                     [% END %]</li>
112             </ol>
113             <ol>
114             <li><label for="list_currency">List prices are</label>
115                     <select name="list_currency" id="list_currency">
116                     [% FOREACH loop_currenc IN loop_currency %]
117                         [% IF ( loop_currenc.listprice ) %]<option value="[% loop_currenc.currency %]" selected="1">[% loop_currenc.currency %]</option>
118                         [% ELSE %]<option value="[% loop_currenc.currency %]">[% loop_currenc.currency %]</option>[% END %]
119                     [% END %]
120                     </select>
121             </li>
122             <li><label for="invoice_currency">Invoice prices are</label>
123                     <select name="invoice_currency" id="invoice_currency">
124                     [% FOREACH loop_currenc IN loop_currency %]
125                         [% IF ( loop_currenc.invoiceprice ) %]<option value="[% loop_currenc.currency %]" selected="1">[% loop_currenc.currency %]</option>
126                         [% ELSE %]<option value="[% loop_currenc.currency %]">[% loop_currenc.currency %]</option>[% END %]
127                     [% END %]
128                     </select>
129             </li>
130             </ol>
131             <ol class="radio">
132             <li><label for="gstyes" class="radio">Tax number registered:</label>
133                 [% IF ( gstreg ) %]
134                     <label for="gstyes">Yes</label> <input type="radio" name="gst" id="gstyes" value="1" checked="checked" />
135                     <label for="gstno">No</label> <input type="radio" name="gst" id="gstno" value="0" />
136                 [% ELSE %]
137                     <label for="gstyes">Yes</label> <input type="radio" name="gst" id="gstyes" value="1" />
138                     <label for="gstno">No</label> <input type="radio" name="gst" id="gstno" value="0" checked="checked" />
139                 [% END %]</li>
140             
141             <li><label for="list_gstyes" class="radio">List prices:</label>
142                 [% IF ( listincgst ) %]
143                     <label for="list_gstyes">Include tax</label> <input type="radio" id="list_gstyes" name="list_gst" value="1" checked="checked" />
144                     <label for="list_gstno">Don't include tax</label> <input type="radio" id="list_gstno" name="list_gst" value="0" />
145                 [% ELSE %]
146                     <label for="list_gstyes">Include tax</label> <input type="radio" id="list_gstyes" name="list_gst" value="1" />
147                     <label for="list_gstno">Don't include tax</label> <input type="radio" id="list_gstno" name="list_gst" value="0" checked="checked" />
148                 [% END %]</li>
149             
150             <li><label for="invoice_gstyes" class="radio">Invoice prices:</label>
151                 [% IF ( invoiceincgst ) %]
152                     <label for="invoice_gstyes">Include tax</label> <input type="radio" id="invoice_gstyes" name="invoice_gst" value="1" checked="checked" />
153                     <label for="invoice_gstno">Don't include tax</label> <input type="radio" id="invoice_gstno" name="invoice_gst" value="0" />
154                     [% ELSE %]
155                     <label for="invoice_gstyes">Include tax</label> <input type="radio" id="invoice_gstyes" name="invoice_gst" value="1" />
156                     <label for="invoice_gstno">Don't include tax</label> <input type="radio" id="invoice_gstno" name="invoice_gst" value="0" checked="checked" />
157                 [% END %]</li>
158             </ol>
159             [% IF gst_values %]
160                 <ol>
161                   <li>
162                     <label for="gst">Tax rate</label>
163                     <select name="gstrate" id="gstrate">
164                     [% FOREACH gst IN gst_values %]
165                       [% IF ( gstrate == gst.option ) %]
166                         <option value="[% gst.option %]" selected="selected">[% gst.option * 100 | format ("%.1f") %] %</option>
167                       [% ELSE %]
168                         <option value="[% gst.option %]">[% gst.option * 100 | format ("%.1f") %] %</option>
169                       [% END %]
170                     [% END %]
171                     </select>
172                   </li>
173                 </ol>
174             [% ELSE %]
175                 <input type="hidden" name="gstrate" value="0" />
176             [% END %]
177             <ol>
178             <li><label for="discount">Discount</label>
179                 <input type="text" size="6" id="discount" name="discount" value="[% discount %]" />%</li>
180             <li>
181                 <label for="deliverytime">Delivery time</label>
182                 <input type="text" size="2" id="deliverytime" name="deliverytime" value="[% deliverytime %]" /> days
183             </li>
184             <li><label for="notes">Notes</label>
185                 <textarea cols="40" rows="4" id="notes" name="notes" >[% notes %]</textarea></li></ol>
186         </fieldset>
187         <fieldset class="action"><input type="button" value="Save" onclick="check(this.form);" /> [% IF ( booksellerid ) %]
188         <a class="cancel" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% ELSE %]<a class="cancel" href="/cgi-bin/koha/acqui/acqui-home.pl">
189         [% END %]Cancel</a></fieldset>
190         </div>
191     </form>
192 [% ELSE %]
193     <h1>[% name %]</h1>
194         <div class="yui-g">
195             <div id="supplier-company-details" class="yui-u first">
196                 <h2>Vendor details</h2>
197                 <p><span class="label">Company name: </span>[% name %]</p>
198                 <p><span class="label">Postal address: </span>[% postal %]</p>
199                 <p><span class="label">Physical address: </span>[% address1 %][% address2 %][% address3 %][% address4 %]</p>
200                 <p><span class="label">Phone: </span>[% phone %]</p>
201                 <p><span class="label">Fax: </span>[% fax %]</p>
202                 [% IF ( url ) %]
203                     <p><span class="label">Website: </span><a href="[% url %]">[% url %]</a></p>
204                 [% END %]
205                 [% IF ( accountnumber ) %]
206                     <p><span class="label">Account number: </span>[% accountnumber %]</p>
207                 [% END %]
208             </div>
209             <div id="supplier-contact-details" class="yui-u">
210                 <h2>Contact details</h2>
211                 <p><span class="label">Contact name: </span>[% contact %]</p>
212                 <p><span class="label">Position: </span>[% contpos %]</p>
213                 <p><span class="label">Phone: </span>[% contphone %]</p>
214                 <p><span class="label">Alternative phone: </span>[% contaltphone %]</p>
215                 <p><span class="label">Fax: </span>[% contfax %]</p>
216                 [% IF ( contemail ) %]
217                     <p><span class="label">Email: </span><a href="mailto:[% contemail %]">[% contemail %]</a></p>
218                 [% END %]
219                 [% IF ( contnotes ) %]
220                     <p><span class="label">Notes: </span>[% contnotes %]</p>
221                 [% END %]
222             </div>
223         </div>
224         <div id="supplier-ordering-information" class="yui-g">
225         <h3>Ordering information</h3>
226             <p><strong>Vendor is: </strong>
227                     [% IF ( active ) %]
228                         Active
229                     [% ELSE %]
230                         Inactive
231                     [% END %]</p>
232             <p><strong>List prices are: </strong>[% listprice %]</p>
233             <p><strong>Invoice prices are: </strong>[% invoiceprice %]</p>
234             [% IF ( gstrate ) %]<p><strong>Tax number registered: </strong>
235                     [% IF ( gstreg ) %]Yes[% ELSE %]No[% END %]</p>
236             <p><strong>List item price includes tax: </strong>
237                     [% IF ( listincgst ) %]Yes[% ELSE %]No[% END %]</p>
238             <p><strong>Invoice item price includes tax: </strong>
239                     [% IF ( invoiceincgst ) %]Yes[% ELSE %]No[% END %]</p>[% END %]
240             <p><strong>Discount: </strong>
241                 [% discount %] %</p>
242             <p><strong>Tax rate: </strong>
243                 [% 0 + gstrate * 100 | format("%.1f") %]%</p>
244             [% IF deliverytime.defined %]
245                 <p><strong>Delivery time: </strong>
246                     [% deliverytime %] days</p>
247             [% END %]
248             [% IF ( notes ) %]<p><strong>Notes: </strong>
249                 [% notes %]</p>[% END %]
250         </div>
251         [% IF ( contracts ) %]
252             <div id="supplier-contracts" class="yui-g">
253                 <h2>Contract(s)</h2>
254                 <table id="contractst">
255                   <thead>
256                     <tr>
257                         <th scope="col">Name</th>
258                         <th scope="col">Description</th>
259                         <th scope="col">Start date</th>
260                         <th scope="col">End date</th>
261                         <th scope="col">&nbsp; </th>
262                         <th scope="col">&nbsp; </th>
263                     </tr>
264                   </thead>
265                   <tbody>
266                     [% FOREACH contract IN contracts %]
267                         [% IF ( loop.even ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
268                         <td>
269                             <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">[% contract.contractname %]</a>
270                         </td>
271                         <td>[% contract.contractdescription %]</td>
272                         <td>[% contract.contractstartdate | $KohaDates %]</td>
273                         <td>[% contract.contractenddate | $KohaDates %]</td>
274                         <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">Edit</a></td>
275                         <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=delete_confirm&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">Delete</a></td>
276                         </tr>
277                     [% END %]
278                   </tbody>
279                 </table>
280             </div>
281         [% END %]
282
283 [% END %]
284
285 </div>
286 </div>
287 [% INCLUDE 'intranet-bottom.inc' %]