Merge remote-tracking branch 'origin/new/bug_8382'
[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              <ol>
160                 <li>
161                     <label for="gst">Tax rate</label>
162                     <select name="gstrate" id="gstrate">
163                     [% FOREACH gst IN gst_values %]
164                       [% IF ( gstrate == gst.option ) %]
165                         <option value="[% gst.option %]" selected="selected">[% gst.option * 100 | format ("%.1f") %] %</option>
166                       [% ELSE %]
167                         <option value="[% gst.option %]">[% gst.option * 100 | format ("%.1f") %] %</option>
168                       [% END %]
169                     [% END %]
170                     </select>
171                 </li>
172             </ol>
173             <ol>
174             <li><label for="discount">Discount</label>
175                 <input type="text" size="6" id="discount" name="discount" value="[% discount %]" />%</li>
176             <li>
177                 <label for="deliverytime">Delivery time</label>
178                 <input type="text" size="2" id="deliverytime" name="deliverytime" value="[% deliverytime %]" /> days
179             </li>
180             <li><label for="notes">Notes</label>
181                 <textarea cols="40" rows="4" id="notes" name="notes" >[% notes %]</textarea></li></ol>
182         </fieldset>
183         <fieldset class="action"><input type="button" value="Save" onclick="check(this.form);" /> [% IF ( booksellerid ) %]
184         <a class="cancel" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% ELSE %]<a class="cancel" href="/cgi-bin/koha/acqui/acqui-home.pl">
185         [% END %]Cancel</a></fieldset>
186         </div>
187     </form>
188 [% ELSE %]
189     <h1>[% name %]</h1>
190         <div class="yui-g">
191             <div id="supplier-company-details" class="yui-u first">
192                 <h2>Vendor details</h2>
193                 <p><span class="label">Company name: </span>[% name %]</p>
194                 <p><span class="label">Postal address: </span>[% postal %]</p>
195                 <p><span class="label">Physical address: </span>[% address1 %][% address2 %][% address3 %][% address4 %]</p>
196                 <p><span class="label">Phone: </span>[% phone %]</p>
197                 <p><span class="label">Fax: </span>[% fax %]</p>
198                 [% IF ( url ) %]
199                     <p><span class="label">Website: </span><a href="[% url %]">[% url %]</a></p>
200                 [% END %]
201                 [% IF ( accountnumber ) %]
202                     <p><span class="label">Account number: </span>[% accountnumber %]</p>
203                 [% END %]
204             </div>
205             <div id="supplier-contact-details" class="yui-u">
206                 <h2>Contact details</h2>
207                 <p><span class="label">Contact name: </span>[% contact %]</p>
208                 <p><span class="label">Position: </span>[% contpos %]</p>
209                 <p><span class="label">Phone: </span>[% contphone %]</p>
210                 <p><span class="label">Alternative phone: </span>[% contaltphone %]</p>
211                 <p><span class="label">Fax: </span>[% contfax %]</p>
212                 [% IF ( contemail ) %]
213                     <p><span class="label">Email: </span><a href="mailto:[% contemail %]">[% contemail %]</a></p>
214                 [% END %]
215                 [% IF ( contnotes ) %]
216                     <p><span class="label">Notes: </span>[% contnotes %]</p>
217                 [% END %]
218             </div>
219         </div>
220         <div id="supplier-ordering-information" class="yui-g">
221         <h3>Ordering information</h3>
222             <p><strong>Vendor is: </strong>
223                     [% IF ( active ) %]
224                         Active
225                     [% ELSE %]
226                         Inactive
227                     [% END %]</p>
228             <p><strong>List prices are: </strong>[% listprice %]</p>
229             <p><strong>Invoice prices are: </strong>[% invoiceprice %]</p>
230             [% IF ( gstrate ) %]<p><strong>Tax number registered: </strong>
231                     [% IF ( gstreg ) %]Yes[% ELSE %]No[% END %]</p>
232             <p><strong>List item price includes tax: </strong>
233                     [% IF ( listincgst ) %]Yes[% ELSE %]No[% END %]</p>
234             <p><strong>Invoice item price includes tax: </strong>
235                     [% IF ( invoiceincgst ) %]Yes[% ELSE %]No[% END %]</p>[% END %]
236             <p><strong>Discount: </strong>
237                 [% discount %] %</p>
238             <p><strong>Tax rate: </strong>
239                 [% 0 + gstrate * 100 | format("%.1f") %]%</p>
240             [% IF deliverytime.defined %]
241                 <p><strong>Delivery time: </strong>
242                     [% deliverytime %] days</p>
243             [% END %]
244             [% IF ( notes ) %]<p><strong>Notes: </strong>
245                 [% notes %]</p>[% END %]
246         </div>
247         [% IF ( contracts ) %]
248             <div id="supplier-contracts" class="yui-g">
249                 <h2>Contract(s)</h2>
250                 <table id="contractst">
251                   <thead>
252                     <tr>
253                         <th scope="col">Name</th>
254                         <th scope="col">Description</th>
255                         <th scope="col">Start date</th>
256                         <th scope="col">End date</th>
257                         <th scope="col">&nbsp; </th>
258                         <th scope="col">&nbsp; </th>
259                     </tr>
260                   </thead>
261                   <tbody>
262                     [% FOREACH contract IN contracts %]
263                         [% IF ( loop.even ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
264                         <td>
265                             <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">[% contract.contractname %]</a>
266                         </td>
267                         <td>[% contract.contractdescription %]</td>
268                         <td>[% contract.contractstartdate | $KohaDates %]</td>
269                         <td>[% contract.contractenddate | $KohaDates %]</td>
270                         <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">Edit</a></td>
271                         <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=delete_confirm&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">Delete</a></td>
272                         </tr>
273                     [% END %]
274                   </tbody>
275                 </table>
276             </div>
277         [% END %]
278
279 [% END %]
280
281 </div>
282 </div>
283 [% INCLUDE 'intranet-bottom.inc' %]