1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
<?php
/*
* @version $Id: contract.class.php 3798 2006-08-22 15:12:55Z moyo $
-------------------------------------------------------------------------
GLPI - Gestionnaire Libre de Parc Informatique
Copyright (C) 2003-2006 by the INDEPNET Development Team.
http://indepnet.net/ http://glpi-project.org
-------------------------------------------------------------------------
LICENSE
This file is part of GLPI.
GLPI is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
GLPI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GLPI; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--------------------------------------------------------------------------
*/
// ----------------------------------------------------------------------
// Original Author of file: Julien Dombre
// Purpose of file:
// ----------------------------------------------------------------------
class Contract extends CommonDBTM {
function Contract () {
$this->table="glpi_contracts";
$this->type=CONTRACT_TYPE;
}
function post_getEmpty () {
global $cfg_glpi;
$this->fields["alert"]=$cfg_glpi["contract_alerts"];
}
function cleanDBonPurge($ID) {
global $db;
$query2 = "DELETE FROM glpi_contract_enterprise WHERE (FK_contract = '$ID')";
$db->query($query2);
$query3 = "DELETE FROM glpi_contract_device WHERE (FK_contract = '$ID')";
$db->query($query3);
}
function defineOnglets($withtemplate){
global $lang;
$ong[1]=$lang["title"][26];
if (haveRight("document","r"))
$ong[5]=$lang["title"][25];
if (haveRight("link","r"))
$ong[7]=$lang["title"][34];
if (haveRight("notes","r"))
$ong[10]=$lang["title"][37];
return $ong;
}
/**
* Print a good title for contract pages
*
*
*
*
*@return nothing (diplays)
*
**/
function title(){
global $lang,$HTMLRel;
echo "<div align='center'><table border='0'><tr><td>";
echo "<img src=\"".$HTMLRel."pics/contracts.png\" alt='".$lang["financial"][0]."' title='".$lang["financial"][0]."'></td>";
if (haveRight("contract_infocom","w")){
echo "<td><a class='icon_consol' href=\"contract.form.php\"><b>".$lang["financial"][0]."</b></a></td>";
} else echo "<td><span class='icon_sous_nav'><b>".$lang["Menu"][25]."</b></span></td>";
echo "</tr></table></div>";
}
/**
* Print the contract form
*
*
* Print g��al contract form
*
*@param $target filename : where to go when done.
*@param $ID Integer : Id of the contact to print
*
*@return Nothing (display)
*
**/
function showForm ($target,$ID) {
// Show Contract or blank form
global $cfg_glpi,$lang,$HTMLRel;
if (!haveRight("contract_infocom","r")) return false;
$con_spotted=false;
if (!$ID) {
if($this->getEmpty()) $con_spotted = true;
} else {
if($this->getfromDB($ID)) $con_spotted = true;
}
if ($con_spotted){
echo "<form name='form' method='post' action=\"$target\"><div align='center'>";
echo "<table class='tab_cadre_fixe'>";
echo "<tr><th colspan='4'><b>";
if (!$ID) {
echo $lang["financial"][36].":";
} else {
$this->getfromDB($ID);
echo $lang["financial"][1].": $ID";
}
echo "</b></th></tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][6].": </td><td >";
dropdownValue("glpi_dropdown_contract_type","contract_type",$this->fields["contract_type"]);
echo "</td>";
echo "<td>".$lang["common"][16].": </td><td>";
autocompletionTextField("name","glpi_contracts","name",$this->fields["name"],25);
echo "</td></tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][4].": </td>";
echo "<td><input type='text' name='num' value=\"".$this->fields["num"]."\" size='25'></td>";
echo "<td>".$lang["search"][8].": </td>";
echo "<td>";
showCalendarForm("form","begin_date",$this->fields["begin_date"]);
echo "</td>";
echo "</tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][5].": </td><td>";
echo "<input type='text' name='cost' value=\"".number_format($this->fields["cost"],2,'.','')."\" size='10'>";
echo "</td>";
echo "<td>".$lang["financial"][13].": </td><td>";
autocompletionTextField("compta_num","glpi_contracts","compta_num",$this->fields["compta_num"],25);
echo "</td></tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][8].": </td><td>";
dropdownContractTime("duration",$this->fields["duration"]);
echo " ".$lang["financial"][57];
if ($this->fields["begin_date"]!=''&&$this->fields["begin_date"]!="0000-00-00")
echo " -> ".getWarrantyExpir($this->fields["begin_date"],$this->fields["duration"]);
echo "</td>";
echo "<td>".$lang["financial"][10].": </td><td>";
dropdownContractTime("notice",$this->fields["notice"]);
echo " ".$lang["financial"][57];
if ($this->fields["begin_date"]!=''&&$this->fields["begin_date"]!="0000-00-00")
echo " -> ".getWarrantyExpir($this->fields["begin_date"],$this->fields["duration"]-$this->fields["notice"]);
echo "</td></tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][69].": </td><td>";
dropdownContractPeriodicity("periodicity",$this->fields["periodicity"]);
echo "</td>";
echo "<td>".$lang["financial"][11].": </td>";
echo "<td>";
dropdownContractPeriodicity("facturation",$this->fields["facturation"]);
echo "</td></tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][107].": </td><td>";
dropdownContractRenewal("renewal",$this->fields["renewal"]);
echo "</td>";
echo "<td> </td>";
echo "<td> ";
echo "</td></tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][83].": </td><td>";
dropdownContractTime("device_countmax",$this->fields["device_countmax"]);
echo "</td>";
echo "<td>".$lang["common"][41]."</td>";
echo "<td>";
dropdownContractAlerting("alert",$this->fields["alert"]);
echo "</td></tr>";
echo "<tr class='tab_bg_1'><td valign='top'>";
echo $lang["common"][25].": </td>";
echo "<td align='center' colspan='3'><textarea cols='50' rows='4' name='comments' >".$this->fields["comments"]."</textarea>";
echo "</td></tr>";
echo "<tr class='tab_bg_2'><td>".$lang["financial"][59].": </td>";
echo "<td colspan='3'> </td>";
echo "</tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][60].": </td><td colspan='3'>";
echo $lang["buttons"][33].":";
dropdownHours("week_begin_hour",$this->fields["week_begin_hour"]);
echo $lang["buttons"][32].":";
dropdownHours("week_end_hour",$this->fields["week_end_hour"]);
echo "</td></tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][61].": </td><td colspan='3'>";
dropdownYesNo("saturday",$this->fields["saturday"]);
echo $lang["buttons"][33].":";
dropdownHours("saturday_begin_hour",$this->fields["saturday_begin_hour"]);
echo $lang["buttons"][32].":";
dropdownHours("saturday_end_hour",$this->fields["saturday_end_hour"]);
echo "</td></tr>";
echo "<tr class='tab_bg_1'><td>".$lang["financial"][62].": </td><td colspan='3'>";
dropdownYesNo("monday",$this->fields["monday"]);
echo $lang["buttons"][33].":";
dropdownHours("monday_begin_hour",$this->fields["monday_begin_hour"]);
echo $lang["buttons"][32].":";
dropdownHours("monday_end_hour",$this->fields["monday_end_hour"]);
echo "</td></tr>";
if (haveRight("contract_infocom","w"))
if (!$ID) {
echo "<tr>";
echo "<td class='tab_bg_2' valign='top' colspan='4'>";
echo "<div align='center'><input type='submit' name='add' value=\"".$lang["buttons"][8]."\" class='submit'></div>";
echo "</td>";
echo "</tr>";
} else {
echo "<tr>";
echo "<td class='tab_bg_2'></td>";
echo "<td class='tab_bg_2' valign='top'>";
echo "<input type='hidden' name='ID' value=\"$ID\">\n";
echo "<div align='center'><input type='submit' name='update' value=\"".$lang["buttons"][7]."\" class='submit'></div>";
echo "</td>\n\n";
echo "<td class='tab_bg_2' valign='top' colspan='2'>\n";
if ($this->fields["deleted"]=='N')
echo "<div align='center'><input type='submit' name='delete' value=\"".$lang["buttons"][6]."\" class='submit'></div>";
else {
echo "<div align='center'><input type='submit' name='restore' value=\"".$lang["buttons"][21]."\" class='submit'>";
echo " <input type='submit' name='purge' value=\"".$lang["buttons"][22]."\" class='submit'></div>";
}
echo "</td>";
echo "</tr>";
}
echo "</table></div></form>";
} else {
echo "<div align='center'><b>".$lang["financial"][40]."</b></div>";
return false;
}
return true;
}
}
?>
|