Merge remote branch 'kc/new/enh/bug_5431' into kcmaster
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / supplier.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Vendor [% bookselname %]</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 <script type="text/javascript">
5 //<![CDATA[
6 function confirm_deletion() {
7     if (confirm(_("Confirm deletion of this vendor ?"))) {
8         window.location="/cgi-bin/koha/acqui/supplier.pl?supplierid=[% id %]&op=delete";
9     }
10 }
11 function check(f) {
12 if (f.company.value == "") {
13     alert(_("You must specify a name for this vendor."));
14     return false;
15 }
16     f.submit();
17 }
18 //]]>
19 </script>
20 </head>
21 <body>
22 [% INCLUDE 'header.inc' %]
23 [% INCLUDE 'acquisitions-search.inc' %]
24
25 <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 ( id ) %] <a href="/cgi-bin/koha/acqui/supplier.pl?supplierid=[% id %]">[% name %]</a> &rsaquo; Update: [% name %][% ELSE %]Add vendor[% END %] [% ELSE %][% name %][% END %]</div>
26
27 <div id="doc" class="yui-t7">
28
29 <div id="bd">
30     <div id="yui-main">
31     [% IF ( enter ) %]
32         [% IF ( id ) %]
33         <h1>Update: [% name %]</h1>
34     [% ELSE %]
35         <h1>Add vendor</h1>
36     [% END %]
37     [% END %]
38 [% UNLESS ( enter ) %][% INCLUDE 'acquisitions-toolbar.inc' %][% END %]
39 [% IF ( enter ) %]
40     <form action="updatesupplier.pl" name="updatesupplier" method="post">
41     <div class="yui-g">
42         <input type="hidden" name="id" value="[% id %]" />
43         <fieldset class="rows">
44             <legend>Company details</legend>
45             <ol><li><label for="company" class="required">Name * </label>
46                 <input type="text" size="40" id="company" name="company" value="[% name %]" /></li>
47             <li><label for="company_postal">Postal address</label>
48                     <textarea id="company_postal" name="company_postal" cols="40" rows="3">[% postal %]</textarea></li>
49             <li><label for="physical">Physical address</label>
50                 <textarea id="physical" name="physical" cols="40" rows="3">[% address1 %][% address2 %][% address3 %][% address4 %]</textarea></li>
51             <li><label for="company_phone">Phone</label>
52                 <input type="text" size="20" id="company_phone" name="company_phone" value="[% phone %]" /></li>
53             <li><label for="company_fax">Fax</label>
54                 <input type="text" size="20" id="company_fax" name="company_fax" value="[% fax %]" /></li>
55             <li><label for="website">Website</label>
56                 <input type="text" size="40" id="website" name="website" value="[% url %]" /></li></ol>
57         </fieldset>
58         <fieldset class="rows">
59             <legend>Contact details</legend>
60         <ol> <li><label for="company_contact_name">Contact name</label>
61                 <input type="text" size="40" id="company_contact_name" name="company_contact_name" value="[% contact %]" /></li>
62             <li><label for="company_contact_position">Position</label>
63                 <input type="text" size="40" id="company_contact_position" name="company_contact_position" value="[% contpos %]" /></li>
64             <li><label for="contact_phone">Phone</label>
65                 <input type="text" size="20" id="contact_phone" name="contact_phone" value="[% contphone %]" /> </li>
66             <li><label for="contact_phone_2">Alternative phone</label>
67                 <input type="text" size="20" id="contact_phone_2" name="contact_phone_2" value="[% contaltphone %]" /></li>
68             <li><label for="contact_fax">Fax</label>
69                 <input type="text" size="20" id="contact_fax" name="contact_fax" value="[% contfax %]" /></li>
70             <li><label for="company_email">Email</label>
71                 <input type="text" size="40" id="company_email" name="company_email" value="[% contemail %]" /></li>
72             <li><label for="contact_notes">Notes</label>
73                 <textarea id="contact_notes" name="contact_notes" cols="40" rows="4">[% contnotes %]</textarea></li></ol>
74         </fieldset>
75     </div>
76         <div class="yui-g">
77         <fieldset class="rows">
78             <legend>Ordering information</legend>
79             <ol class="radio"><li><label for="activestatus" class="radio">Vendor is:</label>
80                     [% IF ( active ) %]
81                         <label for="activestatus">Active</label> <input type="radio" id="activestatus" name="status" value="1" checked="checked" />
82                         <label for="inactivestatus">Inactive</label> <input type="radio" id="inactivestatus" name="status" value="0" />
83                     [% ELSE %]
84                         <label for="activestatus">Active</label> <input type="radio" id="activestatus" name="status" value="1" />
85                         <label for="inactivestatus">Inactive</label> <input type="radio" id="inactivestatus" name="status" value="0" checked="checked" />
86                     [% END %]</li>
87             </ol>
88             <ol>
89             <li><label for="list_currency">List prices are</label>
90                     <select name="list_currency" id="list_currency">
91                     [% FOREACH loop_currenc IN loop_currency %]
92                         <option value="[% loop_currenc.currency %]"
93                             [% IF ( loop_currenc.listprice ) %]selected="1"[% END %]>
94                             [% loop_currenc.currency %]</option>
95                     [% END %]
96                     </select>
97             </li>
98             <li><label for="invoice_currency">Invoice prices are</label>
99                     <select name="invoice_currency" id="invoice_currency">
100                     [% FOREACH loop_currenc IN loop_currency %]
101                         <option value="[% loop_currenc.currency %]"
102                             [% IF ( loop_currenc.invoiceprice ) %]selected="1"[% END %]>
103                             [% loop_currenc.currency %]</option>
104                     [% END %]
105                     </select>
106             </li>
107             </ol>
108             <ol class="radio">
109             <li><label for="gstyes" class="radio">Tax Number Registered:</label>
110                 [% IF ( gstreg ) %]
111                     <label for="gstyes">Yes</label> <input type="radio" name="gst" id="gstyes" value="1" checked="checked" />
112                     <label for="gstno">No</label> <input type="radio" name="gst" id="gstno" value="0" />
113                 [% ELSE %]
114                     <label for="gstyes">Yes</label> <input type="radio" name="gst" id="gstyes" value="1" />
115                     <label for="gstno">No</label> <input type="radio" name="gst" id="gstno" value="0" checked="checked" />
116                 [% END %]</li>
117             
118             <li><label for="list_gstyes" class="radio">List prices:</label>
119                 [% IF ( listincgst ) %]
120                     <label for="list_gstyes">Include tax</label> <input type="radio" id="list_gstyes" name="list_gst" value="1" checked="checked" />
121                     <label for="list_gstno">Don't include tax</label> <input type="radio" id="list_gstno" name="list_gst" value="0" />
122                 [% ELSE %]
123                     <label for="list_gstyes">Include tax</label> <input type="radio" id="list_gstyes" name="list_gst" value="1" />
124                     <label for="list_gstno">Don't include tax</label> <input type="radio" id="list_gstno" name="list_gst" value="0" checked="checked" />
125                 [% END %]</li>
126             
127             <li><label for="invoice_gstyes" class="radio">Invoice prices:</label>
128                 [% IF ( invoiceincgst ) %]
129                     <label for="invoice_gstyes">Include tax</label> <input type="radio" id="invoice_gstyes" name="invoice_gst" value="1" checked="checked" />
130                     <label for="invoice_gstno">Don't include tax</label> <input type="radio" id="invoice_gstno" name="invoice_gst" value="0" />
131                     [% ELSE %]
132                     <label for="invoice_gstyes">Include tax</label> <input type="radio" id="invoice_gstyes" name="invoice_gst" value="1" />
133                     <label for="invoice_gstno">Don't include tax</label> <input type="radio" id="invoice_gstno" name="invoice_gst" value="0" checked="checked" />
134                 [% END %]</li>
135             </ol>
136             <ol>
137             <li><label for="discount">Discount</label>
138                 <input type="text" size="6" id="discount" name="discount" value="[% discount %]" />%</li>
139             <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>
140             <li><label for="notes">Notes</label>
141                 <textarea cols="40" rows="4" id="notes" name="notes" >[% notes %]</textarea></li></ol>                  
142         </fieldset>
143         <fieldset class="action"><input type="button" value="Save" onclick="check(this.form);" /> [% IF ( id ) %]
144         <a class="cancel" href="/cgi-bin/koha/acqui/supplier.pl?supplierid=[% id %]">[% ELSE %]<a class="cancel" href="/cgi-bin/koha/acqui/acqui-home.pl">
145         [% END %]Cancel</a></fieldset>
146         </div>
147     </form>
148 [% ELSE %]
149     <h1>[% name %]</h1>
150         <div class="yui-g">
151             <div id="supplier-company-details" class="yui-u first">
152                 <h2>Supplier details</h2>
153                 <p><span class="label">Company Name: </span>[% name %]</p>
154                 <p><span class="label">Postal Address: </span>[% postal %]</p>
155                 <p><span class="label">Physical Address: </span>[% address1 %][% address2 %][% address3 %][% address4 %]</p>
156                 <p><span class="label">Phone: </span>[% phone %]</p>
157                 <p><span class="label">Fax: </span>[% fax %]</p>
158                 [% IF ( url ) %]
159                     <p><span class="label">Web site: </span><a href="[% url %]">[% url %]</a></p>
160                 [% END %]
161             </div>
162             <div id="supplier-contact-details" class="yui-u">
163                 <h2>Contact details</h2>
164                 <p><span class="label">Contact name: </span>[% contact %]</p>
165                 <p><span class="label">Position: </span>[% contpos %]</p>
166                 <p><span class="label">Phone: </span>[% contphone %]</p>
167                 <p><span class="label">Alternative phone: </span>[% contaltphone %]</p>
168                 <p><span class="label">Fax: </span>[% contfax %]</p>
169                 [% IF ( contemail ) %]
170                     <p><span class="label">Email: </span><a href="mailto:[% contemail %]">[% contemail %]</a></p>
171                 [% END %]
172                 [% IF ( contnotes ) %]
173                     <p><span class="label">Notes: </span>[% contnotes %]</p>
174                 [% END %]
175             </div>
176         </div>
177         <div id="supplier-ordering-information" class="yui-g">
178         <h3>Ordering information</h3>
179             <p><strong>Vendor is: </strong>
180                     [% IF ( active ) %]
181                         Active
182                     [% ELSE %]
183                         Inactive
184                     [% END %]</p>
185             <p><strong>List prices are: </strong>[% listprice %]</p>
186             <p><strong>Invoice prices are: </strong>[% invoiceprice %]</p>
187             [% IF ( GST ) %]<p><strong>Tax Number Registered: </strong>
188                     [% IF ( gstreg ) %]Yes[% ELSE %]No[% END %]</p>
189             <p><strong>List Item Price Includes Tax: </strong>
190                     [% IF ( listincgst ) %]Yes[% ELSE %]No[% END %]</p>
191             <p><strong>Invoice Item Price Includes Tax: </strong>
192                     [% IF ( invoiceincgst ) %]Yes[% ELSE %]No[% END %]</p>[% END %]
193             <p><strong>Discount: </strong>
194                 [% discount %] %</p>
195             <p><strong>Tax rate: </strong>
196                 [% GST %]%[% UNLESS ( default_tax ) %] (default)[% END %]</p>
197             [% IF ( notes ) %]<p><strong>Notes: </strong>
198                 [% notes %]</p>[% END %]
199         </div>
200         [% IF ( contracts ) %]
201             <div id="supplier-contracts" class="yui-g">
202                 <h2>Contract(s)</h2>
203                 <table>
204                     <tr>
205                         <th scope="col">Name</th>
206                         <th scope="col">Description</th>
207                         <th scope="col">Start date</th>
208                         <th scope="col">End date</th>
209                         <th scope="col" colspan="2">&nbsp; </th>
210                     </tr>
211                     [% FOREACH contract IN contracts %]
212                         [% IF ( loop.even ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
213                         <td>
214                             <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">[% contract.contractname %]</a>
215                         </td>
216                         <td>[% contract.contractdescription %]</td>
217                         <td>[% contract.contractstartdate %]</td>
218                         <td>[% contract.contractenddate %]</td>
219                         <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">Edit</a></td>
220                         <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=delete_confirm&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">Delete</a></td>
221                         </tr>
222                     [% END %]
223                 </table>
224             </div>
225         [% END %]
226
227 [% END %]
228
229 </div>
230 </div>
231 [% INCLUDE 'intranet-bottom.inc' %]