bugs 3912, 4144: can now add contracts if dataformat is not metric
[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     var startDate = Date_from_syspref($("#contractstartdate").val());
25     var endDate   = Date_from_syspref($("#contractenddate").val());
26     if (!parseInt(startDate.getTime())) {
27         ok=1;
28         _alertString += _("- Start date missing or invalid.\n");
29     }
30     if (!parseInt(endDate.getTime())) {
31         ok=1;
32         _alertString += _("- End date missing or invalid.\n");
33     }
34     
35     if (startDate > endDate) {
36         ok=1;
37         _alertString += _("Wrong date! start date cannot be after end date.\n");
38     }
39     if (endDate < (new Date)) {
40         ok=1;
41         _alertString += _("End date before today, Invalid end date!\n");
42     }
43     if (ok) { // if there is a problem
44         alert(_alertString);
45     return false;
46 }
47 // if all is good
48     ff.submit();
49 }
50 //]]>
51 </script>
52 </head>
53 <body>
54 <!-- TMPL_INCLUDE NAME="header.inc" -->
55 <!-- TMPL_INCLUDE NAME="contracts-admin-search.inc" -->
56
57 <div id="breadcrumbs">
58     <a href="/cgi-bin/koha/mainpage.pl">Home</a>
59     &rsaquo;
60     <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
61     &rsaquo;
62     <a href="/cgi-bin/koha/acqui/supplier.pl?supplierid=<!--TMPL_VAR name="booksellerid" -->"><!-- TMPL_VAR name="booksellername" --></a>
63     &rsaquo;
64     <!-- TMPL_IF NAME="add_form" -->
65         <a href="/cgi-bin/koha/admin/aqcontract.pl?booksellerid=<!-- TMPL_VAR  NAME="booksellerid" -->">Contracts</a>
66         &rsaquo;
67         <!-- TMPL_IF NAME="contractnumber" -->Modify contract '<!-- TMPL_VAR NAME="contractname" -->'
68         <!-- TMPL_ELSE -->New contract
69         <!-- /TMPL_IF -->
70     <!-- /TMPL_IF -->
71     <!-- TMPL_IF NAME="add_validate" -->
72         <a href="/cgi-bin/koha/admin/aqcontract.pl?booksellerid=<!-- TMPL_VAR  NAME="booksellerid" -->">Contracts</a>
73         &rsaquo; Data recorded
74     <!-- /TMPL_IF -->
75     <!-- TMPL_IF NAME="delete_confirm" -->
76         <a href="/cgi-bin/koha/admin/aqcontract.pl?booksellerid=<!-- TMPL_VAR  NAME="booksellerid" -->">Contracts</a>
77         &rsaquo; Confirm Deletion of Contract <!-- TMPL_VAR NAME="contractnumber" -->
78     <!-- /TMPL_IF -->
79     <!-- TMPL_IF NAME="delete_confirmed" -->
80         <a href="/cgi-bin/koha/admin/aqcontract.pl?booksellerid=<!-- TMPL_VAR  NAME="booksellerid" -->">Contracts</a> &rsaquo; Contract Deleted
81     <!-- /TMPL_IF -->
82     <!-- TMPL_IF NAME="else" -->Contracts<!-- /TMPL_IF -->
83 </div>
84
85 <div id="doc3" class="yui-t2">
86     <div id="bd">
87         <div id="yui-main">
88             <div class="yui-b">
89                 <!-- TMPL_IF NAME="add_form" -->
90                     <form name="Aform" action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
91                         <input type="hidden" name="op" value="add_validate" />
92                         <input type="hidden" name="booksellerid" value="<!-- TMPL_VAR NAME="booksellerid" -->" />
93                         <input type="hidden" name="checked" value="0" />
94                         <!-- TMPL_IF NAME="contractnumber" -->
95                             <h1>Modify contract <!-- TMPL_VAR NAME="contractname" --> for <!-- TMPL_VAR NAME="booksellername" --></h1>
96                         <!-- TMPL_ELSE -->
97                             <h1>New contract for <!-- TMPL_VAR NAME="booksellername" --></h1>
98                         <!-- /TMPL_IF -->
99                         <fieldset class="rows">
100                             <ol>
101                                 <!-- TMPL_IF NAME="contractnumber" -->
102                                         <li><span class="label">Contract id </span><!-- TMPL_VAR NAME="contractnumber" -->
103                                             <input type="hidden" name="contractnumber" value="<!-- TMPL_VAR NAME="contractnumber" -->" />
104                                             <input type="hidden" name="is_a_modif" value="1" />
105                                         </li>
106                                 <!-- /TMPL_IF -->
107                                 <li><label for="contractname" class="required">Name *</label> &nbsp;
108                                         <input type="text" name="contractname" id="contractname" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="contractname" -->" />
109                                 </li>
110                                 <li><label for="contractdescription">Description</label> &nbsp;
111                                         <input type="text" name="contractdescription" id="contractdescription" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="contractdescription" -->" />
112                                 </li>
113                                 <li><label for="contractstartdate" class="required">Start date *</label> &nbsp;
114                                         <input type="text" name="contractstartdate" id="contractstartdate" value="<!-- TMPL_VAR NAME="contractstartdate" -->" maxlength="10"  size="10"/>
115                                         <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="contractstartdate_button" alt="Show Calendar" />
116                                         <script language="JavaScript" type="text/javascript">
117                                             Calendar.setup(
118                                             {
119                                             inputField : "contractstartdate",
120                                             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
121                                             button : "contractstartdate_button"
122                                             }
123                                             );
124                                         </script>
125                                 <div class="hint"><!-- TMPL_INCLUDE NAME="date-format.inc" --></div>
126                                 </li>
127                                 <li><label for="contractenddate" class="required">End date *</label> &nbsp;
128                                         <input type="text" name="contractenddate" id="contractenddate" value="<!-- TMPL_VAR NAME="contractenddate" -->" maxlength="10"  size="10" />
129                                         <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="contractenddate_button" alt="Show Calendar" />
130                                         <script language="JavaScript" type="text/javascript">
131                                             Calendar.setup(
132                                             {
133                                             inputField : "contractenddate",
134                                             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
135                                             button : "contractenddate_button"
136                                             }
137                                             );
138                                         </script>
139                                 <div class="hint"><!-- TMPL_INCLUDE NAME="date-format.inc" --></div>
140                                 </li>
141                             </ol>
142                         </fieldset>
143                         <fieldset class="action">
144                             <input type="button" value="Save" onclick="Check(this.form);" />
145                         </fieldset>
146                     </form>
147             <!-- /TMPL_IF -->
148             <!-- TMPL_IF NAME="add_validate" -->
149                 <h3>Data recorded</h3>
150                 <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
151                     <input type="submit" value="OK" />
152                 </form>
153             <!-- /TMPL_IF -->
154             <!-- TMPL_IF NAME="delete_confirm" -->
155                 <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
156                     <fieldset>
157                         <legend>Confirm Deletion of Contract <!-- TMPL_VAR NAME="contractnumber" --></legend>
158                         <table>
159                             <tr><th scope="row">Contract number:</th><td><!-- TMPL_VAR NAME="contractnumber" --></td></tr>
160                             <tr><th scope="row">Contract name:</th><td><!-- TMPL_VAR NAME="contractname" --></td></tr>
161                             <tr><th scope="row">Contract description:</th><td><!-- TMPL_VAR NAME="contractdescription" --></td></tr>
162                             <tr><th scope="row">Contract start date:</th><td><!-- TMPL_VAR NAME="contractstartdate" --></td></tr>
163                             <tr><th scope="row">Contract end date:</th><td><!-- TMPL_VAR NAME="contractenddate" --></td></tr>
164                             <tr><th scope="row">Vendor:</th><td><!-- TMPL_VAR NAME="booksellername" --></td></tr>
165                         </table>
166                         <fieldset class="action">
167                             <input type="hidden" name="op" value="delete_confirmed" />
168                             <input type="hidden" name="booksellerid" value="<!-- TMPL_VAR name="booksellerid" -->" />
169                             <input type="hidden" name="contractnumber" value="<!-- TMPL_VAR NAME="contractnumber" -->" />
170                             <input type="submit" value="Delete this Contract" />
171                             <a class="cancel" href="/cgi-bin/koha/admin/aqcontract.pl">Cancel</a> 
172                         </fieldset>
173                     </fieldset>
174                 </form>
175             <!-- /TMPL_IF -->
176             <!-- TMPL_IF NAME="delete_confirmed" -->
177                 <h3>Contract Deleted</h3>
178                 <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
179                     <input type="hidden" name="booksellerid" value="<!-- TMPL_VAR name="booksellerid" -->/>
180                     <input type="submit" value="OK" />
181                 </form>
182             <!-- /TMPL_IF -->
183             <!-- TMPL_IF NAME="else" -->
184                 <div id="toolbar">
185                     <script type="text/javascript">
186                         //<![CDATA[
187                         // prepare DOM for YUI Toolbar
188                         $(document).ready(function() {
189                         yuiToolbar();
190                         });
191                         // YUI Toolbar Functions
192                         function yuiToolbar() {
193                         new YAHOO.widget.Button("newcontract");
194                         }
195                         //]]>
196                     </script>
197                     <ul class="toolbar">
198                         <li><a id="newcontract" href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;booksellerid=<!-- TMPL_VAR name="booksellerid" -->">New Contract</a></li>
199                     </ul>
200                 </div>
201                 <h2>Contract(s) of <!-- TMPL_VAR name="booksellername" --></h2>
202                 <!-- TMPL_IF name="loop" -->
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                     <!-- TMPL_LOOP NAME="loop" -->
212                         <!-- TMPL_IF NAME="__even__" --><tr class="highlight"><!-- TMPL_ELSE --><tr><!-- /TMPL_IF -->
213                         <td>
214                             <a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&amp;contractnumber=<!-- TMPL_VAR NAME="contractnumber" -->"><!-- TMPL_VAR NAME="contractname" --></a>
215                         </td>
216                         <td><!-- TMPL_VAR NAME="contractdescription" --></td>
217                         <td><!-- TMPL_VAR NAME="contractstartdate" --></td>
218                         <td><!-- TMPL_VAR NAME="contractenddate" --></td>
219                         <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>
220                         <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>
221                         </tr>
222                     <!-- /TMPL_LOOP -->
223                 </table>
224                 <!-- /TMPL_IF -->
225             <!-- /TMPL_IF -->
226         </div>
227     </div>
228     <div class="yui-b">
229         <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
230     </div>
231 </div>
232 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->