Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi,
I'm currently trying to customize this software.
But i have some difficulties to understand all the code.
Have you a development manual or advises to give to help me ?
thanks
Simon
Hi,
No, sorry, no dev manual (users manuel is coming first, and not finished yet).
Some documentation is included in the code, but not the "framewok" structure.
Try asking specific questions about some points, I will try to asnwer answer at my best.
Regards.
Ok, thanks.
In the newest version, you added the list of "affectations" in "Projects".
I just wanted to know if you will add the possibility of making affectations and creating activity in this page ?
Regards.
(sorry for my broken english)
Hi,
No, it's not planned to have a "add affectation" functionaity in the "Project" screen, nor a "add activity".
Regards.
Hi,
I have a question about resources. When the field "resource" is displayed, for example in the creation of an affectation, alphabetical order is not respected. Resources are displayed following the "user name" and not following the "name".
How can i change that ?
Regards.
Hi,
You can change this in /model/persistence/SqlList.php, in the fetchList function !
Regards.
Hi,
This has been registered as a bug, and corrected.
For information, in SqlList.php, line 65, replace :
$query .= ' order by ' . $obj->getDatabaseTableName() . '.' . $displayCol;
with
$query .= ' order by ' . $obj->getDatabaseTableName() . '.' . $obj->getDatabaseColumnName($displayCol);
Fixing for the last point included in recently deployed V1.5.3.
other little problem of alphabetical order, i don't know if the new release correct it.
In activity details, where you can choose the responsible, the list of "name" is not in alphabetical order.
Regards.
The fixing should also have corrected this, but it seems it doesn't, although it corrected the list for Ticket Requestor (as Contacts).
To be analysed further...
Same correction must be applied line 114 of SqlList.php.
Replace :
$query .= ' order by ' . $obj->getDatabaseTableName() . '.' . $displayCol;
with
$query .= ' order by ' . $obj->getDatabaseTableName() . '.' . $obj->getDatabaseColumnName($displayCol);
Corrected for next version.
V1.5.4 released.
Including fixing to this issue.