Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Murz

Pages: 1 ... 6 7 [8] 9 10
106
Community Contributions / Re: Add filter for view late (overdue) tasks
« on: December 28, 2009, 03:40:50 am »
I have created the patch that add filter for today finish, overdue, overdue+today tasks.
It can be successfully applied to fengoffice 1.6.1.
For apply a patch you need to copy patch into the root fengoffice folder and run:
Code: [Select]
patch -p0 <./overdue_filter.patch

107
Community Contributions / Re: Add filter for view late (overdue) tasks
« on: December 24, 2009, 05:38:41 am »
And will be good to see a email notification when the task going to overdue.

108
Community Contributions / Add filter for view late (overdue) tasks
« on: December 24, 2009, 05:37:55 am »
I am a project manager and have some subordinates. I create many tasks for each person. The normal situation that they finish tasks at "Due date" or before. But very often they forgot about due date and didn't close the task.

I need the easy method for control task completing
and function to show problem (overdue) tasks, that was closed after due date, or still open after due date.

109
Older versions / Re: Not mine milestones in "My late milestones and tasks"
« on: December 21, 2009, 09:14:06 am »
This bug exists in 1.6.1 too.
And I see always all milestones in calendar too, even when I filter task only per one user, that isn't subscribed to milestone.

110
For change the value fo ComboBox (select list) I need to click on the arrow, because if I click on the text in field, I can type something.
I think that we need to change all read-only ComboBoxes to editable:false for opening items via click on the text, not only on arrows.
Example for TasksBottomToolbar.js:
Code: [Select]
    this.statusCombo = new Ext.form.ComboBox({
            id: 'ogTasksStatusCombo',
        store: new Ext.data.SimpleStore({
                fields: ['value', 'text'],
                data : [[2, lang('all')],[0, lang('pending')],[1, lang('complete')]]
            }),
        displayField:'text',
        typeAhead: true,
        mode: 'local',
        triggerAction: 'all',
        selectOnFocus:true,
+        editable:false,
        width:80,
        valueField: 'value',
        listeners: {
                'select' : function(combo, record) {
                                var toolbar = Ext.getCmp('tasksPanelBottomToolbarObject');
                        toolbar.load();
                }
        }
    });

111
I want to see not only mine, but all tasks in progress (in working and paused states).
I create a patch that do this, it successfully applies to OpenGoo 1.6 release and working for me.
Additionally, we can see the task state per user - work or pause.
The screenshot how this looks on my installation:

You can apply the patch with thouse actions:
1. Copy patch file to the opengoo folder.
2. Run command
patch -p0 < ./time.patch
That's all.

112
When I add subtask from a task page via click "Add sub task" link, I have no "More Options..." link, only "Name" and "Assign to:"

113
Feature requests / Re: Hierarchical comments in tasks
« on: December 16, 2009, 05:31:00 pm »
Yes, I mean nested comments. Sorry for my English :)

114
Older versions / Re: can't move tasks in calender
« on: December 16, 2009, 02:15:18 pm »
Using opengoo 1.6 release, I can drag task start and finish dates via mouse on calendar monthly view, but this changes didn't saves to tasks! After refreshing I see the tasks in old places!

115
If user set timeslot to pause, in task page I see always 'work in progress'.
For fix this issue we can change the line 43 in application/views/timeslot/object_timeslots.php
from
Code: [Select]
&nbsp;-&nbsp;<?php echo $timeslot->isOpen() ? ('<b>' lang('work in progress') . '</b>') :.to
Code: [Select]
&nbsp;-&nbsp;<?php echo $timeslot->isOpen() ? ('<b>' . ($timeslot->isPaused()?lang('work paused'):lang('work in progress')) . '</b>') :.

116
В настройках прав пользователей есть пункт с многозначительной надписью: "Управление временем" - он как раз отвечает за доступ к модулю времени (и, возможно, к путешествиям в будущее)  ;)
Он включен для пользователей, у которых не видно вкладки "Время"?

117
Feature requests / Re: closed task should have a resolution
« on: December 15, 2009, 03:03:01 am »
I want this feature too! Now we use comments for this, but this isn't handily, assigner must do two action: 1 - post comment and 2 - close task, and owner receives 2 email.

118
Older versions / Href links with percents (%D0%9D) cuts on first percent
« on: December 11, 2009, 03:29:13 am »
I have a link in note:
http://ru.wikipedia.org/wiki/%D0%9D%D0%B8%D0%B6%D0%BD%D0%B8%D0%B9
and OpenGoo detect this link as
<a href="http://ru.wikipedia.org/wiki/" target="_blank">http://ru.wikipedia.org/wiki/</a>%D0%9D%D0%B8%D0%B6%D0%BD%D0%B8%D0%B9

The link cuts at first percent symbol.

119
Feature requests / Hierarchical comments in tasks
« on: December 11, 2009, 02:42:03 am »
I have use comments for discuss some thinks, described in task. And I need to ask the questions and receive the answers.
And when I post two comments after checking task accomplishment and post two comments, I didn't understand to which comment user answer.
For example:
Task description:
Do 1 thing, after that do second and third like first one with 2 changes.
Comments:
- Fist thing didn't do the described function.
- - I didn't understand what function does you mean?
- - - function 123.
- Update third thing using function 345.
- - Done.

This can be solved for me if comments will have hierarchical structure.

120
I have more than 50 workspaces and about 15 tags, and haven't see the free space in left bar :(

Pages: 1 ... 6 7 [8] 9 10