Merge remote-tracking branch 'kc/new/bug_5995' 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                         [% IF ( loop_currenc.listprice ) %]<option value="[% loop_currenc.currency %]" selected="1">[% loop_currenc.currency %]</option>
93                         [% ELSE %]<option value="[% loop_currenc.currency %]">[% loop_currenc.currency %]</option>[% END %]
94                     [% END %]
95                     </select>
96             </li>
97             <li><label for="invoice_currency">Invoice prices are</label>
98                     <select name="invoice_currency" id="invoice_currency">
99                     [% FOREACH loop_currenc IN loop_currency %]
100                         [% IF ( loop_currenc.invoiceprice ) %]<option value="[% loop_currenc.currency %]" selected="1">[% loop_currenc.currency %]</option>
101                         [% ELSE %]<option value="[% loop_currenc.currency %]">[% loop_currenc.currency %]</option>[% END %]
102                     [% END %]
103                     </select>
104             </li>
105             </ol>
106             <ol class="radio">
107             <li><label for="gstyes" class="radio">Tax Number Registered:</label>
108                 [% IF ( gstreg ) %]
109                     <label for="gstyes">Yes</label> <input type="radio" name="gst" id="gstyes" value="1" checked="checked" />
110                     <label for="gstno">No</label> <input type="radio" name="gst" id="gstno" value="0" />
111                 [% ELSE %]
112                     <label for="gstyes">Yes</label> <input type="radio" name="gst" id="gstyes" value="1" />
113                     <label for="gstno">No</label> <input type="radio" name="gst" id="gstno" value="0" checked="checked" />
114                 [% END %]</li>
115             
116             <li><label for="list_gstyes" class="radio">List prices:</label>
117                 [% IF ( listincgst ) %]
118                     <label for="list_gstyes">Include tax</label> <input type="radio" id="list_gstyes" name="list_gst" value="1" checked="checked" />
119                     <label for="list_gstno">Don't include tax</label> <input type="radio" id="list_gstno" name="list_gst" value="0" />
120                 [% ELSE %]
121                     <label for="list_gstyes">Include tax</label> <input type="radio" id="list_gstyes" name="list_gst" value="1" />
122                     <label for="list_gstno">Don't include tax</label> <input type="radio" id="list_gstno" name="list_gst" value="0" checked="checked" />
123                 [% END %]</li>
124             
125             <li><label for="invoice_gstyes" class="radio">Invoice prices:</label>
126                 [% IF ( invoiceincgst ) %]
127                     <label for="invoice_gstyes">Include tax</label> <input type="radio" id="invoice_gstyes" name="invoice_gst" value="1" checked="checked" />
128                     <label for="invoice_gstno">Don't include tax</label> <input type="radio" id="invoice_gstno" name="invoice_gst" value="0" />
129                     [% ELSE %]
130                     <label for="invoice_gstyes">Include tax</label> <input type="radio" id="invoice_gstyes" name="invoice_gst" value="1" />
131                     <label for="invoice_gstno">Don't include tax</label> <input type="radio" id="invoice_gstno" name="invoice_gst" value="0" checked="checked" />
132                 [% END %]</li>
133             </ol>
134             <ol>
135             <li><label for="discount">Discount</label>
136                 <input type="text" size="6" id="discount" name="discount" value="[% discount %]" />%</li>
137             <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>
138             <li><label for="notes">Notes</label>
139                 <textarea cols="40" rows="4" id="notes" name="notes" >[% notes %]</textarea></li></ol>                  
140         </fieldset>
141         <fieldset class="action"><input type="button" value="Save" onclick="check(this.form);" /> [% IF ( id ) %]
142         <a class="cancel" href="/cgi-bin/koha/acqui/supplier.pl?supplierid=[% id %]">[% ELSE %]<a class="cancel" href="/cgi-bin/koha/acqui/acqui-home.pl">
143         [% END %]Cancel</a></fieldset>
144         </div>
145     </form>
146 [% ELSE %]
147     <h1>[% name %]</h1>
148         <div class="yui-g">
149             <div id="supplier-company-details" class="yui-u first">
150                 <h2>Supplier details</h2>
151                 <p><span class="label">Company Name: </span>[% name %]</p>
152                 <p><span class="label">Postal Address: </span>[% postal %]</p>
153                 <p><span class="label">Physical Address: </span>[% address1 %][% address2 %][% address3 %][% address4 %]</p>
154                 <p><span class="label">Phone: </span>[% phone %]</p>
155                 <p><span class="label">Fax: </span>[% fax %]</p>
156                 [% IF ( url ) %]
157                     <p><span class="label">Web site: </span><a href="[% url %]">[% url %]</a></p>
158                 [% END %]
159             </div>
160             <div id="supplier-contact-details" class="yui-u">
161                 <h2>Contact details</h2>
162                 <p><span class="label">Contact name: </span>[% contact %]</p>
163                 <p><span class="label">Position: </span>[% contpos %]</p>
164                 <p><span class="label">Phone: </span>[% contphone %]</p>
165                 <p><span class="label">Alternative phone: </span>[% contaltphone %]</p>
166                 <p><span class="label">Fax: </span>[% contfax %]</p>
167                 [% IF ( contemail ) %]
168                     <p><span class="label">Email: </span><a href="mailto:[% contemail %]">[% contemail %]</a></p>
169                 [% END %]
170                 [% IF ( contnotes ) %]
171                     <p><span class="label">Notes: </span>[% contnotes %]</p>
172                 [% END %]
173             </div>
174         </div>
175         <div id="supplier-ordering-information" class="yui-g">
176         <h3>Ordering information</h3>
177             <p><strong>Vendor is: </strong>
178                     [% IF ( active ) %]
179                         Active
180                     [% ELSE %]
181                         Inactive
182                     [% END %]</p>
183             <p><strong>List prices are: </strong>[% listprice %]</p>
184             <p><strong>Invoice prices are: </strong>[% invoiceprice %]</p>
185             [% IF ( GST ) %]<p><strong>Tax Number Registered: </strong>
186                     [% IF ( gstreg ) %]Yes[% ELSE %]No[% END %]</p>
187             <p><strong>List Item Price Includes Tax: </strong>
188                     [% IF ( listincgst ) %]Yes[% ELSE %]No[% END %]</p>
189             <p><strong>Invoice Item Price Includes Tax: </strong>
190                     [% IF ( invoiceincgst ) %]Yes[% ELSE %]No[% END %]</p>[% END %]
191             <p><strong>Discount: </strong>
192                 [% discount %] %</p>
193             <p><strong>Tax rate: </strong>
194                 [% GST %]%[% UNLESS ( default_tax ) %] (default)[% END %]</p>
195             [% IF ( notes ) %]<p><strong>Notes: </strong>
196                 [% notes %]</p>[% END %]
197         </div>
198         [% IF ( contracts ) %]
199             <div id="supplier-contracts" class="yui-g">
200                 <h2>Contract(s)</h2>
201                 <table>
202                     <tr>
203                         <th scope="col">Name</th>
204                         <th scope="col">Description</th>
205                         <th scope="col">Start date</th>
206                         <th scope="col">End date</th>
207                         <th scope="col" colspan="2">&nbsp; </th>
208                     </tr>
209                     [% FOREACH contract IN contracts %]
210                         [% IF ( loop.even ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
211                         <td>
212                             <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">[% contract.contractname %]</a>
213                         </td>
214                         <td>[% contract.contractdescription %]</td>
215                         <td>[% contract.contractstartdate %]</td>
216                         <td>[% contract.contractenddate %]</td>
217                         <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">Edit</a></td>
218                         <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=delete_confirm&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">Delete</a></td>
219                         </tr>
220                     [% END %]
221                 </table>
222             </div>
223         [% END %]
224
225 [% END %]
226
227 </div>
228 </div>
229 [% INCLUDE 'intranet-bottom.inc' %]