Merge commit 'pianohacker-koha/prefs-submit' into master
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / aqcontract.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Administration &rsaquo; Contracts &rsaquo;
3 <!-- TMPL_IF NAME="add_form" -->
4     <!-- TMPL_IF NAME="contractnumber" -->Modify contract '<!-- TMPL_VAR NAME="contractname" -->'
5 <!-- TMPL_ELSE -->New contract<!-- /TMPL_IF -->
6 <!-- /TMPL_IF -->
7 <!-- TMPL_IF NAME="add_validate" -->Data recorded<!-- /TMPL_IF -->
8 <!-- TMPL_IF NAME="delete_confirm" -->Confirm Deletion of Contract '<!-- TMPL_VAR NAME="contractnumber" -->'<!-- /TMPL_IF -->
9 <!-- TMPL_IF NAME="delete_confirmed" -->Contract Deleted<!-- /TMPL_IF --></title>
10 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
11 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
12 <script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/acq.js"></script>
13 <script type="text/javascript">
14 //<![CDATA[
15 // to check if the data are correctly entered.
16 function Check(ff) {
17     var ok=0;
18     var _alertString=_("Form not submitted because of the following problem(s)\n");
19     _alertString +="-------------------------------------------------------------------\n\n";
20     if (!(isNotNull(ff.contractname,0))){
21         ok=1;
22         _alertString += _("- Name missing\n");
23     }
24     if (!(CheckDate(ff.contractstartdate))){
25         ok=1;
26         _alertString += _("- Start date missing\n");
27     }
28     if (!(CheckDate(ff.contractenddate))){
29         ok=1;
30         _alertString += _("- End date missing\n");
31     }
32     
33     if (!CompareDate(ff.contractstartdate.value, ff.contractenddate.value)) {
34         ok=1;
35         _alertString += _("Wrong date! start date can not be after end date.\n");
36     }
37     if (! CheckEndDate(ff.contractenddate.value)) {
38         ok=1;
39         _alertString += _("End date before today, Invalid end date!\n");
40     }
41     if (ok) { // if there is a problem
42         alert(_alertString);
43     return false;
44 }
45 // if all is good
46     ff.submit();
47 }
48 //]]>
49 </script>
50 </head>
51 <body>
52 <!-- TMPL_INCLUDE NAME="header.inc" -->
53 <!-- TMPL_INCLUDE NAME="contracts-admin-search.inc" -->
54
55 <div id="breadcrumbs">
56     <a href="/cgi-bin/koha/mainpage.pl">Home</a>
57     &rsaquo;
58     <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
59     &rsaquo;
60     <a href="/cgi-bin/koha/acqui/supplier.pl?supplierid=<!--TMPL_VAR name="booksellerid" -->"><!-- TMPL_VAR name="name" --></a>
61     &rsaquo;
62     <!-- TMPL_IF NAME="add_form" -->
63         <a href="/cgi-bin/koha/admin/aqcontract.pl">Contracts</a>
64         &rsaquo;
65         <!-- TMPL_IF NAME="contractnumber" -->Modify contract '<!-- TMPL_VAR NAME="contractname" -->'
66         <!-- TMPL_ELSE -->New contract
67         <!-- /TMPL_IF -->
68     <!-- /TMPL_IF -->
69     <!-- TMPL_IF NAME="add_validate" -->
70         <a href="/cgi-bin/koha/admin/aqcontract.pl">Contracts</a>
71         &rsaquo; Data recorded
72     <!-- /TMPL_IF -->
73     <!-- TMPL_IF NAME="delete_confirm" -->
74         <a href="/cgi-bin/koha/admin/aqcontract.pl">Contracts</a>
75         &rsaquo; Confirm Deletion of Contract <!-- TMPL_VAR NAME="contractnumber" -->
76     <!-- /TMPL_IF -->
77     <!-- TMPL_IF NAME="delete_confirmed" -->
78         <a href="/cgi-bin/koha/admin/aqcontract.pl">Contracts</a> &rsaquo; Contract Deleted
79     <!-- /TMPL_IF -->
80     <!-- TMPL_IF NAME="else" -->Contracts<!-- /TMPL_IF -->
81 </div>
82
83 <div id="doc3" class="yui-t2">
84     <div id="bd">
85         <div id="yui-main">
86             <div class="yui-b">
87                 <!-- TMPL_IF NAME="add_form" -->
88                     <form name="Aform" action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
89                         <input type="hidden" name="op" value="add_validate" />
90                         <input type="hidden" name="checked" value="0" />
91                         <!-- TMPL_IF NAME="contractnumber" -->
92                             <h1>Modify contract <!-- TMPL_VAR NAME="contractname" -->
93                                 <select id="booksellerid" name="booksellerid">
94                                 <!-- TMPL_LOOP NAME="booksellerloop" -->
95                                     <!-- TMPL_IF NAME="selected" -->
96                                         <option value="<!-- TMPL_VAR NAME="id" -->" selected="selected"><!-- TMPL_VAR NAME="name" --></option>
97                                     <!-- TMPL_ELSE -->
98                                         <option value="<!-- TMPL_VAR NAME="id" -->"><!-- TMPL_VAR NAME="name" --></option>
99                                     <!-- /TMPL_IF -->
100                                 <!-- /TMPL_LOOP -->
101                                 </select>
102                             </h1>
103                         <!-- TMPL_ELSE -->
104                             <h1>New contract</h1>
105                         <!-- /TMPL_IF -->
106                         <fieldset class="rows">
107                             <ol>
108                                 <!-- TMPL_IF NAME="contractnumber" -->
109                                         <li><span class="label">Contract id </span><!-- TMPL_VAR NAME="contractnumber" -->
110                                             <input type="hidden" name="contractnumber" value="<!-- TMPL_VAR NAME="contractnumber" -->" />
111                                             <input type="hidden" name="is_a_modif" value="1" />
112                                         </li>
113                                 <!-- /TMPL_IF -->
114                                 <li><label for="contractname" class="required">Name *</label> &nbsp;
115                                         <input type="text" name="contractname" id="contractname" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="contractname" -->" />
116                                 </li>
117                                 <li><label for="contractdescription">Description</label> &nbsp;
118                                         <input type="text" name="contractdescription" id="contractdescription" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="contractdescription" -->" />
119                                 </li>
120                                 <li><label for="booksellerid">Vendor</label>
121                                 <select id="booksellerid" name="booksellerid">
122                                 <!-- TMPL_LOOP NAME="booksellerloop" -->
123                                     <!-- TMPL_IF NAME="selected" -->
124                                         <option value="<!-- TMPL_VAR NAME="id" -->" selected="selected"><!-- TMPL_VAR NAME="name" --></option>
125                                     <!-- TMPL_ELSE -->
126                                         <option value="<!-- TMPL_VAR NAME="id" -->"><!-- TMPL_VAR NAME="name" --></option>
127                                     <!-- /TMPL_IF -->
128                                 <!-- /TMPL_LOOP -->
129                                 </select>
130                                 </li>
131                                 <li><label for="contractstartdate" class="required">Start date *</label> &nbsp;
132                                         <input type="text" name="contractstartdate" id="contractstartdate" value="<!-- TMPL_VAR NAME="contractstartdate" -->" maxlength="10"  size="10"/>
133                                         <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="contractstartdate_button" alt="Show Calendar" />
134                                         <script language="JavaScript" type="text/javascript">
135                                             Calendar.setup(
136                                             {
137                                             inputField : "contractstartdate",
138                                             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
139                                             button : "contractstartdate_button"
140                                             }
141                                             );
142                                         </script>
143                                 </li>
144                                 <li><label for="contractenddate" class="required">End date *</label> &nbsp;
145                                         <input type="text" name="contractenddate" id="contractenddate" value="<!-- TMPL_VAR NAME="contractenddate" -->" maxlength="10"  size="10" />
146                                         <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="contractenddate_button" alt="Show Calendar" />
147                                         <script language="JavaScript" type="text/javascript">
148                                             Calendar.setup(
149                                             {
150                                             inputField : "contractenddate",
151                                             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
152                                             button : "contractenddate_button"
153                                             }
154                                             );
155                                         </script>
156                                 </li>
157                             </ol>
158                         </fieldset>
159                         <fieldset class="action">
160                             <input type="button" value="Save" onclick="Check(this.form);" />
161                         </fieldset>
162                     </form>
163             <!-- /TMPL_IF -->
164             <!-- TMPL_IF NAME="add_validate" -->
165                 <h3>Data recorded</h3>
166                 <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
167                     <input type="submit" value="OK" />
168                 </form>
169             <!-- /TMPL_IF -->
170             <!-- TMPL_IF NAME="delete_confirm" -->
171                 <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
172                     <fieldset>
173                         <legend>Confirm Deletion of Contract <!-- TMPL_VAR NAME="contractnumber" --></legend>
174                         <table>
175                             <tr><th scope="row">Contract number:</th><td><!-- TMPL_VAR NAME="contractnumber" --></td></tr>
176                             <tr><th scope="row">Contract name:</th><td><!-- TMPL_VAR NAME="contractname" --></td></tr>
177                             <tr><th scope="row">Contract description:</th><td><!-- TMPL_VAR NAME="contractdescription" --></td></tr>
178                             <tr><th scope="row">Contract start date:</th><td><!-- TMPL_VAR NAME="contractstartdate" --></td></tr>
179                             <tr><th scope="row">Contract end date:</th><td><!-- TMPL_VAR NAME="contractenddate" --></td></tr>
180                             <tr><th scope="row">Vendor:</th><td><!-- TMPL_VAR NAME="booksellername" --></td></tr>
181                         </table>
182                         <fieldset class="action">
183                             <input type="hidden" name="op" value="delete_confirmed" />
184                             <input type="hidden" name="booksellerid" value="<!-- TMPL_VAR name="booksellerid" -->" />
185                             <input type="hidden" name="contractnumber" value="<!-- TMPL_VAR NAME="contractnumber" -->" />
186                             <input type="submit" value="Delete this Contract" />
187                             <a class="cancel" href="/cgi-bin/koha/admin/aqcontract.pl">Cancel</a> 
188                         </fieldset>
189                     </fieldset>
190                 </form>
191             <!-- /TMPL_IF -->
192             <!-- TMPL_IF NAME="delete_confirmed" -->
193                 <h3>Contract Deleted</h3>
194                 <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
195                     <input type="hidden" name="booksellerid" value="<!-- TMPL_VAR name="booksellerid" -->/>
196                     <input type="submit" value="OK" />
197                 </form>
198             <!-- /TMPL_IF -->
199             <!-- TMPL_IF NAME="else" -->
200                 <div id="toolbar">
201                     <script type="text/javascript">
202                         //<![CDATA[
203                         // prepare DOM for YUI Toolbar
204                         $(document).ready(function() {
205                         yuiToolbar();
206                         });
207                         // YUI Toolbar Functions
208                         function yuiToolbar() {
209                         new YAHOO.widget.Button("newcontract");
210                         }
211                         //]]>
212                     </script>
213                     <ul class="toolbar">
214                         <li><a id="newcontract" href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;booksellerid=<!-- TMPL_VAR name="booksellerid" -->">New Contract</a></li>
215                     </ul>
216                 </div>
217                 <h2>Contract(s) of <!-- TMPL_VAR name="name" --></h2>
218                 <!-- TMPL_IF name="loop" -->
219                     <table>
220                         <tr>
221                             <th scope="col">Name</th>
222                             <th scope="col">Description</th>
223                             <th scope="col">Start date</th>
224                             <th scope="col">End date</th>
225                             <th scope="col" colspan="2">&nbsp; </th>
226                         </tr>
227                     <!-- TMPL_LOOP NAME="loop" -->
228                         <!-- TMPL_IF NAME="toggle" -->
229                             <tr class="highlight">
230                         <!-- TMPL_ELSE -->
231                             <tr>
232                         <!-- /TMPL_IF -->
233                             <td>
234                                 <a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&amp;contractnumber=<!-- TMPL_VAR NAME="contractnumber" -->"><!-- TMPL_VAR NAME="contractname" --></a>
235                         </td>
236                         <td><!-- TMPL_VAR NAME="contractdescription" --></td>
237                         <td><!-- TMPL_VAR NAME="contractstartdate" --></td>
238                         <td><!-- TMPL_VAR NAME="contractenddate" --></td>
239                         <td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&amp;contractnumber=<!-- TMPL_VAR NAME="contractnumber" -->&amp;booksellerid=<!-- TMPL_VAR name="booksellerid" -->">Edit</a></td>
240                         <td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=delete_confirm&amp;contractnumber=<!-- TMPL_VAR NAME="contractnumber" -->&amp;booksellerid=<!-- TMPL_VAR name="booksellerid" -->">Delete</a></td>
241                         </tr>
242                     <!-- /TMPL_LOOP -->
243                 </table>
244                 <!-- /TMPL_IF -->
245             <!-- /TMPL_IF -->
246         </div>
247     </div>
248     <div class="yui-b">
249         <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
250     </div>
251 </div>
252 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->