Welcome to GLPi feature request service.
Please check if the feature has not already been requested.
If not, please describe it

0

Configurar correos que notifiquen si hay cambios hardware en clientes

AinerR il y a 5 ans 0

Tengo GLPI 9.3.3, y tengo conectada algunas PCs

(ubuntu) con el plugins fusioninventory-9.3+1.4 y los cambios de

hardware que se hacen el los clientes se reportan en el servidor GLPI

perfectamente. Lo que no he logrado es que el servidor GLPI me notifique

por correo electrónico cuando ocurre un cambio de hardware en algún

cliente, necesito tener la opción para que me notifique de manera automática cuando ocurre un cambio.

Gracias

0

Possibility of entering costs in the tasks of the tickets.

Rodrigo Cunha il y a 5 ans 0

I would like to know if there is a possibility of creating a field for typing the cost in the task, following the same principle as the cost tab of the ticket.

0

Notification Group - Ticket Service Satisfaction

Gean Carlos il y a 5 ans mis à jour il y a 5 ans 1

Gente, bom dia!

Você pode me ajudar com uma pergunta? Existe uma maneira de criar um grupo para que, toda vez que uma satisfação de um serviço for atendida, ou o supervisor do serviço técnico receber um email com as informações da nota que foi dada para o serviço prestado?


Gostaria de criar o grupo e incluí-lo nesta tela abaixo, sua maneira de configurar -> notificações -> notificações -> Resposta de satisfação do ticket


Image 264


A idéia é obter as informações do "responsável pelo técnico", a partir do campo destacado abaixo.


Image 266


0

Auto populate location details of the requester in creating ticket.

cleomar il y a 5 ans 0

I'd like to know if this is applicable to majority. Is it possible to auto populate location details of the requester in the ticket location field. Requesting user already have location details. This is necessary in generating report by locations.

Image 261

Best Regards,

0

listfields

bermi il y a 5 ans 0

Bonjour,
au lancement de GLPI en mode debug, je vois que des 'SHOW COLUMNS' sont fait sur certaines tables pour mettre a jour des fiels.Mais j'aimerais savoir ou est parametre ce choix de tables!.. En effet je voudrais rajouter des fields issus d'autres tables mais je ne trouve pas comment c'est gere.
Est ce que quelqu'un pourrait m'aider SVP.
Merci d'avance.

0

Time not sync on my glpi server

cleomar il y a 5 ans mis à jour il y a 5 ans 1

Where can I setup or configure timezone? I have already update date.timezone in php.ini

Glpi 9.4.4 running on xammp server.

Image 260


0

use glpi on tablet on windows touch screen

jerome lienard il y a 5 ans 0

For use glpi on touchscreen tablet, I've need to remove the href link on the tabs otherwise my finger automaticly click on the href of the tabs. I've add this code

#html.class.php: line 1234

Html::requireJs('mobile-nav');

#html.class.php: line 5888

case 'mobile-nav':
$_SESSION['glpi_js_toload'][$name][] = 'js/mobile-nav.js';
break;

#js/mobile-nav.js

$(document).ready(() => {
$('#menu>li>a').removeAttr('href').css('cursor', 'pointer');
});

0

User search problem

ArriMa il y a 5 ans 0

I have users that basically are numeric value.

If I try to search a user by login field:

1) if use "contain" (ex. 322) it return correctly that user

2) if use "is" the combo load the name and surname so it work.

if I search with method 1 and then switch to "is", by default are loaded the user where id=322. This problem is present using API. if I search (from API) login is 322 it try to return the user where ID=322 (and not login=322)



0

User ticket link mail address

ArriMa il y a 5 ans 0

When a linked user (from LDAP) is imported without mail address, open ticket has as requester the mail address. If I sync the user object from LDAP and now it has a mail address, the already opened ticket remain with mail address ad ticket are not linked to the user.

0

Using DB views in GLPI

Noureddine Ettalhi il y a 5 ans mis à jour il y a 5 ans 3

We figured out that we can use a DB views to replace the table linked to an itemType, and it still works fine.

the purpose was to generated reports via the general search of the itemType instances.

Example of use :

We assume the goal is to display a report showing the list of itemTypeX instances and the total number of these instances created by month and by year. so here are the steps to create that report without development.

  1. Create a new itemTypeY with minimal columns and configuration. in [http://localhost:8080/glpi/plugins/genericobject/front/type.form.php?id=51]
  2.  Create the SQL of the view that matches the report need.
  3. Add necessary columns labels in the file : /opt/bitnami/apps/glpi/htdocs/files/_plugins/genericobject/fields/tduslivre.constant.php, they could be all of type Text only.
  4. Drop the table of itemTypeY.
  5. Run the view creation SQL on database.
  6. It is done and you can see the report in the following URL by sorting on the right column : http://localhost:8080/glpi/plugins/genericobject/front/object.php?itemtype=PluginGenericobjectTduslivre&itemtype=PluginGenericobjectTduslivre&sort=3&order=ASC&start=0&criteria%5B0%5D%5Blink%5D=AND&criteria%5B0%5D%5Bfield%5D=view&criteria%5B0%5D%5Bsearchtype%5D=contains&criteria%5B0%5D%5Bvalue%5D=&
  7. Everything seems to work fine except for isTableExist() that keeps sending warning into log, so we want to fix that warning by changing the GLPI code.

See the associated PR to have a look on the enhancement on GLPI core source code.