. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } /** * Budget class */ class Budget extends CommonDropdown{ use Glpi\Features\Clonable; // From CommonDBTM public $dohistory = true; static $rightname = 'budget'; protected $usenotepad = true; public $can_be_translated = false; public function getCloneRelations() :array { return [ Document_Item::class ]; } static function getTypeName($nb = 0) { return _n('Budget', 'Budgets', $nb); } function defineTabs($options = []) { $ong = []; $this->addDefaultFormTab($ong); $this->addStandardTab(__CLASS__, $ong, $options); $this->addStandardTab('Document_Item', $ong, $options); $this->addStandardTab('KnowbaseItem_Item', $ong, $options); $this->addStandardTab('Link', $ong, $options); $this->addStandardTab('Notepad', $ong, $options); $this->addStandardTab('Log', $ong, $options); return $ong; } function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) { if (!$withtemplate) { switch ($item->getType()) { case __CLASS__ : return [1 => __('Main'), 2 => _n('Item', 'Items', Session::getPluralNumber())]; } } return ''; } static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0) { if ($item->getType() == __CLASS__) { switch ($tabnum) { case 1 : $item->showValuesByEntity(); break; case 2 : $item->showItems(); break; } } return true; } /** * Print the contact form * * @param $ID integer ID of the item * @param $options array of possible options: * - target for the Form * - withtemplate : template or basic item * * @return void **/ function showForm($ID, $options = []) { $rowspan = 3; if ($ID > 0) { $rowspan++; } $this->initForm($ID, $options); $this->showFormHeader($options); echo ""; echo "".__('Name').""; echo ""; Html::autocompletionTextField($this, "name"); echo ""; echo ""._n('Type', 'Types', 1).""; echo ""; Dropdown::show('BudgetType', ['value' => $this->fields['budgettypes_id']]); echo ""; echo ""; echo ""._x('price', 'Value').""; echo ""; echo "".__('Comments').""; echo "". "". ""; echo ""; echo "".__('Start date').""; echo ""; Html::showDateField("begin_date", ['value' => $this->fields["begin_date"]]); echo ""; echo ""; echo "".__('End date').""; echo ""; Html::showDateField("end_date", ['value' => $this->fields["end_date"]]); echo ""; echo ""; echo "".Location::getTypeName(1).""; echo ""; Location::dropdown(['value' => $this->fields["locations_id"], 'entity' => $this->fields["entities_id"]]); echo ""; $this->showFormButtons($options); return true; } function prepareInputForAdd($input) { if (isset($input["id"]) && ($input["id"] > 0)) { $input["_oldID"] = $input["id"]; } unset($input['id']); unset($input['withtemplate']); return $input; } function rawSearchOptions() { $tab = []; $tab[] = [ 'id' => 'common', 'name' => __('Characteristics') ]; $tab[] = [ 'id' => '1', 'table' => $this->getTable(), 'field' => 'name', 'name' => __('Name'), 'datatype' => 'itemlink', 'massiveaction' => false, 'autocomplete' => true, ]; $tab[] = [ 'id' => '2', 'table' => $this->getTable(), 'field' => 'id', 'name' => __('ID'), 'massiveaction' => false, 'datatype' => 'number' ]; $tab[] = [ 'id' => '19', 'table' => $this->getTable(), 'field' => 'date_mod', 'name' => __('Last update'), 'datatype' => 'datetime', 'massiveaction' => false ]; $tab[] = [ 'id' => '121', 'table' => $this->getTable(), 'field' => 'date_creation', 'name' => __('Creation date'), 'datatype' => 'datetime', 'massiveaction' => false ]; $tab[] = [ 'id' => '4', 'table' => 'glpi_budgettypes', 'field' => 'name', 'name' => _n('Type', 'Types', 1), 'datatype' => 'dropdown' ]; $tab[] = [ 'id' => '5', 'table' => $this->getTable(), 'field' => 'begin_date', 'name' => __('Start date'), 'datatype' => 'date' ]; $tab[] = [ 'id' => '6', 'table' => $this->getTable(), 'field' => 'end_date', 'name' => __('End date'), 'datatype' => 'date' ]; $tab[] = [ 'id' => '7', 'table' => $this->getTable(), 'field' => 'value', 'name' => _x('price', 'Value'), 'datatype' => 'decimal' ]; $tab[] = [ 'id' => '16', 'table' => $this->getTable(), 'field' => 'comment', 'name' => __('Comments'), 'datatype' => 'text' ]; $tab[] = [ 'id' => '50', 'table' => $this->getTable(), 'field' => 'template_name', 'name' => __('Template name'), 'datatype' => 'text', 'massiveaction' => false, 'nosearch' => true, 'nodisplay' => true, 'autocomplete' => true, ]; $tab[] = [ 'id' => '80', 'table' => 'glpi_entities', 'field' => 'completename', 'name' => Entity::getTypeName(1), 'massiveaction' => false, 'datatype' => 'dropdown' ]; $tab[] = [ 'id' => '86', 'table' => $this->getTable(), 'field' => 'is_recursive', 'name' => __('Child entities'), 'datatype' => 'bool' ]; // add objectlock search options $tab = array_merge($tab, ObjectLock::rawSearchOptionsToAdd(get_class($this))); $tab = array_merge($tab, Location::rawSearchOptionsToAdd()); $tab = array_merge($tab, Notepad::rawSearchOptionsToAdd()); return $tab; } /** * Print the HTML array of Items on a budget * * @return void **/ function showItems() { global $DB; $budgets_id = $this->fields['id']; if (!$this->can($budgets_id, READ)) { return false; } $iterator = $DB->request([ 'SELECT' => 'itemtype', 'DISTINCT' => true, 'FROM' => 'glpi_infocoms', 'WHERE' => [ 'budgets_id' => $budgets_id, 'NOT' => ['itemtype' => ['ConsumableItem', 'CartridgeItem', 'Software']] ], 'ORDER' => 'itemtype' ]); $number = count($iterator); echo "
"; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; $num = 0; $itemtypes = []; while ($row = $iterator->next()) { $itemtypes[] = $row['itemtype']; } $itemtypes[] = 'Contract'; $itemtypes[] = 'Ticket'; $itemtypes[] = 'Problem'; $itemtypes[] = 'Change'; $itemtypes[] = 'Project'; foreach ($itemtypes as $itemtype) { if (!($item = getItemForItemtype($itemtype))) { continue; } if ($item->canView()) { switch ($itemtype) { case 'Contract' : $criteria = [ 'SELECT' => [ $item->getTable() . '.id', $item->getTable() . '.entities_id', 'SUM' => 'glpi_contractcosts.cost AS value' ], 'FROM' => 'glpi_contractcosts', 'INNER JOIN' => [ $item->getTable() => [ 'ON' => [ $item->getTable() => 'id', 'glpi_contractcosts' => 'contracts_id' ] ] ], 'WHERE' => [ 'glpi_contractcosts.budgets_id' => $budgets_id, $item->getTable() . '.is_template' => 0 ] + getEntitiesRestrictCriteria($item->getTable()), 'GROUPBY' => [ $item->getTable() . '.id', $item->getTable() . '.entities_id' ], 'ORDERBY' => [ $item->getTable() . '.entities_id', $item->getTable() . '.name' ] ]; break; case 'Ticket' : case 'Problem' : case 'Change' : $costtable = getTableForItemType($item->getType().'Cost'); $sum = new QueryExpression( "SUM(" . $DB->quoteName("$costtable.actiontime") . " * " . $DB->quoteName("$costtable.cost_time") . "/".HOUR_TIMESTAMP." + " . $DB->quoteName("$costtable.cost_fixed") . " + " . $DB->quoteName("$costtable.cost_material") . ") AS " . $DB->quoteName('value') ); $criteria = [ 'SELECT' => [ $item->getTable() . '.id', $item->getTable() . '.entities_id', $sum ], 'FROM' => $costtable, 'INNER JOIN' => [ $item->getTable() => [ 'ON' => [ $item->getTable() => 'id', $costtable => $item->getForeignKeyField() ] ] ], 'WHERE' => [ $costtable . '.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($item->getTable()), 'GROUPBY' => [ $item->getTable() . '.id', $item->getTable() . '.entities_id' ], 'ORDERBY' => [ $item->getTable() . '.entities_id', $item->getTable() . '.name' ] ]; break; case 'Project' : $criteria = [ 'SELECT' => [ $item->getTable() . '.id', $item->getTable() . '.entities_id', 'SUM' => 'glpi_projectcosts.cost AS value' ], 'FROM' => 'glpi_projectcosts', 'INNER JOIN' => [ $item->getTable() => [ 'ON' => [ $item->getTable() => 'id', 'glpi_projectcosts' => 'projects_id' ] ] ], 'WHERE' => [ 'glpi_projectcosts.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($item->getTable()), 'GROUPBY' => [ $item->getTable() . '.id', $item->getTable() . '.entities_id' ], 'ORDERBY' => [ $item->getTable() . '.entities_id', $item->getTable() . '.name' ] ]; break; case 'Cartridge' : $criteria = [ 'SELECT' => [ $item->getTable() . '.*', 'glpi_cartridgeitems.name', 'glpi_infocoms.value' ], 'FROM' => 'glpi_infocoms', 'INNER JOIN' => [ $item->getTable() => [ 'ON' => [ $item->getTable() => 'id', 'glpi_infocoms' => 'items_id' ] ], 'glpi_cartridgeitems' => [ 'ON' => [ $item->getTable() => 'cartridgeitems_id', 'glpi_cartridgeitems' => 'id' ] ] ], 'WHERE' => [ 'glpi_infocoms.itemtype' => $itemtype, 'glpi_infocoms.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($item->getTable()), 'ORDERBY' => [ 'entities_id', 'glpi_cartridgeitems.name' ] ]; break; case 'Consumable' : $criteria = [ 'SELECT' => [ $item->getTable() . '.*', 'glpi_consumableitems.name', 'glpi_infocoms.value' ], 'FROM' => 'glpi_infocoms', 'INNER JOIN' => [ $item->getTable() => [ 'ON' => [ $item->getTable() => 'id', 'glpi_infocoms' => 'items_id' ] ], 'glpi_consumableitems' => [ 'ON' => [ $item->getTable() => 'consumableitems_id', 'glpi_consumableitems' => 'id' ] ] ], 'WHERE' => [ 'glpi_infocoms.itemtype' => $itemtype, 'glpi_infocoms.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($item->getTable()), 'ORDERBY' => [ 'entities_id', 'glpi_cartridgeitems.name' ] ]; break; default: $criteria = [ 'SELECT' => [ $item->getTable() . '.*', 'glpi_infocoms.value', ], 'FROM' => 'glpi_infocoms', 'INNER JOIN' => [ $item->getTable() => [ 'ON' => [ $item->getTable() => 'id', 'glpi_infocoms' => 'items_id' ] ] ], 'WHERE' => [ 'glpi_infocoms.itemtype' => $itemtype, 'glpi_infocoms.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($item->getTable()), 'ORDERBY' => [ $item->getTable() . '.entities_id' ] ]; if ($item->maybeTemplate()) { $criteria['WHERE'][$item->getTable() . '.is_template'] = 0; } if ($item instanceof Item_Devices) { $criteria['ORDERBY'][] = $item->getTable() .'.itemtype'; } else { $criteria['ORDERBY'][] = $item->getTable() . '.name'; } break; } $iterator = $DB->request($criteria); $nb = count($iterator); if ($nb > $_SESSION['glpilist_limit']) { echo ""; $name = $item->getTypeName($nb); //TRANS: %1$s is a name, %2$s is a number echo ""; echo ""; echo ""; } else if ($nb) { for ($prem=true; $data = $iterator->next(); $prem=false) { $name = NOT_AVAILABLE; if ($item->getFromDB($data["id"])) { if ($item instanceof Item_Devices) { $tmpitem = new $item::$itemtype_2(); if ($tmpitem->getFromDB($data[$item::$items_id_2])) { $name = $tmpitem->getLink(['additional' => true]); } } else { $name = $item->getLink(['additional' => true]); } } echo ""; if ($prem) { $typename = $item->getTypeName($nb); echo ""; } echo ""; echo ""; echo ""; echo ""; } } $num += $nb; } } if ($num>0) { echo ""; echo ""; echo " "; } echo "
"; Html::printPagerForm(); echo ""; if ($number == 0) { echo __('No associated item'); } else { echo _n('Associated item', 'Associated items', $number); } echo "
"._n('Type', 'Types', 1)."".Entity::getTypeName(1)."".__('Name')."".__('Serial number')."".__('Inventory number').""._x('price', 'Value')."
".sprintf(__('%1$s: %2$s'), $name, $nb).""; $opt = ['order' => 'ASC', 'is_deleted' => 0, 'reset' => 'reset', 'start' => 0, 'sort' => 80, 'criteria' => [0 => ['value' => '$$$$'.$budgets_id, 'searchtype' => 'contains', 'field' => 50]]]; echo "". __('Device list')."---". "
". ($nb>1 ? sprintf(__('%1$s: %2$s'), $typename, $nb) : $typename)."".Dropdown::getDropdownName("glpi_entities", $data["entities_id"]); echo "".$name."".(isset($data["serial"])? "".$data["serial"]."" :"-"); echo "". (isset($data["otherserial"])? "".$data["otherserial"]."" :"-")."". (isset($data["value"]) ? "".Html::formatNumber($data["value"], true)."" :"-"); echo "
".sprintf(__('%1$s = %2$s'), __('Total'), $num)." 
"; } /** * Print the HTML array of value consumed for a budget * * @return void **/ function showValuesByEntity() { global $DB; $budgets_id = $this->fields['id']; if (!$this->can($budgets_id, READ)) { return false; } $types_iterator = Infocom::getTypes( [ 'budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria('glpi_infocoms', 'entities_id') ); $total = 0; $totalbytypes = []; $itemtypes = []; $entities_values = []; $entitiestype_values = []; $found_types = []; while ($types = $types_iterator->next()) { $itemtypes[] = $types['itemtype']; } $itemtypes[] = 'Contract'; $itemtypes[] = 'Ticket'; $itemtypes[] = 'Problem'; $itemtypes[] = 'Project'; $itemtypes[] = 'Change'; foreach ($itemtypes as $itemtype) { if (!($item = getItemForItemtype($itemtype))) { continue; } $table = getTableForItemType($itemtype); switch ($itemtype) { case 'Contract' : $criteria = [ 'SELECT' => [ $table . '.entities_id', 'SUM' => 'glpi_contractcosts.cost AS sumvalue' ], 'FROM' => 'glpi_contractcosts', 'INNER JOIN' => [ $table => [ 'ON' => [ $table => 'id', 'glpi_contractcosts' => 'contracts_id' ] ] ], 'WHERE' => [ 'glpi_contractcosts.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($table, 'entities_id'), 'GROUPBY' => [ $table . '.entities_id' ] ]; break; case 'Project' : $costtable = getTableForItemType($item->getType().'Cost'); $criteria = [ 'SELECT' => [ $table . '.entities_id', 'SUM' => 'glpi_projectcosts.cost AS sumvalue' ], 'FROM' => 'glpi_projectcosts', 'INNER JOIN' => [ $table => [ 'ON' => [ $table => 'id', 'glpi_projectcosts' => 'projects_id' ] ] ], 'WHERE' => [ 'glpi_projectcosts.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($table, 'entities_id'), 'GROUPBY' => [ $item->getTable() . '.entities_id' ] ]; break; case 'Ticket' : case 'Problem' : case 'Change' : $costtable = getTableForItemType($item->getType().'Cost'); $sum = new QueryExpression( "SUM(" . $DB->quoteName("$costtable.actiontime") . " * " . $DB->quoteName("$costtable.cost_time") . "/".HOUR_TIMESTAMP." + " . $DB->quoteName("$costtable.cost_fixed") . " + " . $DB->quoteName("$costtable.cost_material") . ") AS " . $DB->quoteName('sumvalue') ); $criteria = [ 'SELECT' => [ $item->getTable() . '.entities_id', $sum ], 'FROM' => $costtable, 'INNER JOIN' => [ $table => [ 'ON' => [ $table => 'id', $costtable => $item->getForeignKeyField() ] ] ], 'WHERE' => [ $costtable . '.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($table, 'entities_id'), 'GROUPBY' => [ $item->getTable() . '.entities_id' ] ]; break; default : $criteria = [ 'SELECT' => [ $table . '.entities_id', 'SUM' => 'glpi_infocoms.value AS sumvalue', ], 'FROM' => $table, 'INNER JOIN' => [ 'glpi_infocoms' => [ 'ON' => [ $table => 'id', 'glpi_infocoms' => 'items_id' ] ] ], 'WHERE' => [ 'glpi_infocoms.itemtype' => $itemtype, 'glpi_infocoms.budgets_id' => $budgets_id ] + getEntitiesRestrictCriteria($table, 'entities_id'), 'GROUPBY' => [ $table . '.entities_id' ] ]; if ($item->maybeTemplate()) { $criteria['WHERE'][$table . '.is_template'] = 0; } break; } $iterator = $DB->request($criteria); $nb = count($iterator); if ($nb) { $found_types[$itemtype] = $item->getTypeName(1); $totalbytypes[$itemtype] = 0; //Store, for each entity, the budget spent while ($values = $iterator->next()) { if (!isset($entities_values[$values['entities_id']])) { $entities_values[$values['entities_id']] = 0; } if (!isset($entitiestype_values[$values['entities_id']][$itemtype])) { $entitiestype_values[$values['entities_id']][$itemtype] = 0; } $entities_values[$values['entities_id']] += $values['sumvalue']; $entitiestype_values[$values['entities_id']][$itemtype] += $values['sumvalue']; $total += $values['sumvalue']; $totalbytypes[$itemtype] += $values['sumvalue']; } } } $budget = new self(); $budget->getFromDB($budgets_id); $colspan = count($found_types)+2; echo "
"; echo ""; echo ""; if (count($found_types)) { foreach ($found_types as $type => $typename) { echo ""; } } echo ""; echo ""; // get all entities ordered by names $allentities = getAllDataFromTable('glpi_entities', ['ORDER' => 'completename'], true); foreach (array_keys($allentities) as $entity) { if (isset($entities_values[$entity])) { echo ""; echo ""; if (count($found_types)) { foreach ($found_types as $type => $typename) { echo ""; } } echo ""; echo ""; } } if (count($found_types)) { echo ""; echo ""; foreach ($found_types as $type => $typename) { echo ""; } echo ""; echo ""; } echo ""; echo ""; echo ""; echo ""; if ($_SESSION['glpiactive_entity'] == $budget->fields['entities_id']) { echo ""; echo ""; echo ""; } echo "
".__('Total spent on the budget')."
".Entity::getTypeName(1)."$typename".__('Total')."
".Dropdown::getDropdownName('glpi_entities', $entity).""; $typevalue = 0; if (isset($entitiestype_values[$entity][$type])) { $typevalue = $entitiestype_values[$entity][$type]; } echo Html::formatNumber($typevalue); echo "".Html::formatNumber($entities_values[$entity])."
".__('Total').""; echo Html::formatNumber($totalbytypes[$type]); echo "".Html::formatNumber($total)."

".__('Total spent on the budget')."".Html::formatNumber($total)."
".__('Total remaining on the budget'). "".Html::formatNumber($budget->fields['value'] - $total). "
"; } static function getIcon() { return "fas fa-calculator"; } }