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