Forum

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.

Development manual
 
Notifications
Clear all

Development manual

12 Posts
2 Users
0 Reactions
12.4 K Views
(@simon)
Posts: 10
Active Member
Topic starter
 
[#91]

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


 
Posted : 15 Feb 2011 14H02
babynus
(@babynus)
Posts: 14956
Main Contributor Admin
 

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.


 
Posted : 15 Feb 2011 15H54
(@simon)
Posts: 10
Active Member
Topic starter
 

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)


 
Posted : 15 Feb 2011 19H57
babynus
(@babynus)
Posts: 14956
Main Contributor Admin
 

Hi,

No, it's not planned to have a "add affectation" functionaity in the "Project" screen, nor a "add activity".

Regards.


 
Posted : 15 Feb 2011 22H22
(@simon)
Posts: 10
Active Member
Topic starter
 

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.


 
Posted : 16 Feb 2011 13H29
babynus
(@babynus)
Posts: 14956
Main Contributor Admin
 

Hi,

You can change this in /model/persistence/SqlList.php, in the fetchList function !

Regards.


 
Posted : 16 Feb 2011 14H30
babynus
(@babynus)
Posts: 14956
Main Contributor Admin
 

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);


 
Posted : 16 Feb 2011 14H44
babynus
(@babynus)
Posts: 14956
Main Contributor Admin
 

Fixing for the last point included in recently deployed V1.5.3.


 
Posted : 16 Feb 2011 18H44
(@simon)
Posts: 10
Active Member
Topic starter
 

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.


 
Posted : 16 Feb 2011 20H05
babynus
(@babynus)
Posts: 14956
Main Contributor Admin
 

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...


 
Posted : 17 Feb 2011 0H59
babynus
(@babynus)
Posts: 14956
Main Contributor Admin
 

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.


 
Posted : 17 Feb 2011 17H40
babynus
(@babynus)
Posts: 14956
Main Contributor Admin
 

V1.5.4 released.

Including fixing to this issue.


 
Posted : 18 Feb 2011 19H03
Share:

Scroll to Top