-
Notifications
You must be signed in to change notification settings - Fork 17
New features added #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dtamajon
wants to merge
21
commits into
vincentsels:master
Choose a base branch
from
dtamajon:13.07-Features-extension
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The summary labels were ignoring translations
Gets translation of month string
Added month literals in english
Added month literals in english
When selecting a project (without versions) with subprojects (with versions), the first $f_target_version is referring to a child project, so version_get_id fails to recover info for current project. I have included a previous check to avoid an "ugly" error. The logic should be reviewed but now is safer ;-)
Changed call to get work_types array
Functions modified to work with localized enums
Changed call to get work_types array
Changed call to get work_types array
Changed call to get work_types array
New functions to support plugin enums management
Changed call to get unavailability_types array translated
Added enum strings to show how should be the name formated
Removed enum strings transaltions
- Added link at the top of the issue view (EVENT_MENU_ISSUE). Created view 2: - Register time for work type and minutes type. - Added 'info' field in table 'work' - Substract 'todo' when 'done' is informed - When minutes_type=='est' => target_date=book_date - When minutes_type=='done' => done=done+minutes / todo=todo-minutes - When minutes_type=='completed' (new just for select) => completed_date=book_date / done=done+minutes / todo=0 - Remove own time register (if admin_own_threshold) - Remove others time register (if admin_threshold) - Show/Hide all work types on target table (show_all_work_types_on_bug_targets) - When a 'todo' is defined without 'est', 'todo' is shown in red and with a tooltip containing the error Config options: - [bug_view_mode][new] View selection: 1 (original) or 2 (purposed) - [show_all_work_types_on_bug_targets][new] Show/Hide all work types on target table. Only works on view 2 - [admin_own_threshold][new] Enabled to remove custom registers. Only works on view 2 - [edit_targets_threshold][old] Enable to modify targets over the targets table. It was defined on function config, but now is updatable from config page - [billable_mandatory_minimun_status] Select the minimun status for billable required shows the error - [billable_behavior_over_severity] Define behavior of billing requirement according to severity General: - More specific errors - More detailed history actions Customers: - Added 'association_mode' field in table 'customer' - Created 'project_customer' table - Customer management page updated with 'association_mode' field - When a new project is created, the customers with association_mode='auto' are attached automatically - From project, you can attach/detach customers, except those marked with association_mode='all' - When a issue is resolved or closed, 'all customers' is transformed in the current customers list. It avoids future billing changes when adding a new customer to the project. - 'paying_customers' is required only if 'is_billable' is set to true, and the issue has adquired the minimum status (currently, the minimum status is defined hardcoded in 'pm_bug_is_billable_affecting_required_paying_customers') Reports: - Added 'dashboard' report - Error control added for 'Resource progress' report - Added validation in 'print_progressbar_span' and 'print_progress_span' to avoid error when no resources are defined (only exploited when $g_show_detailed_errors=ON) - Show hourly rate and cost only is user has 'view_billing_threshold' permissions Report 'Time registration overview': - Layout adjustment to avoid paddings and margins - Collapsible panels Report 'Billing': - Shows only issues marked as billable Account configuration: - Moved the unavailability management to a self account preferences menu - Added list of future and past unavailability, allowing to remove just for future
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue view:
- Added link at the top of the issue view (EVENT_MENU_ISSUE).
Created view 2:
- Register time for work type and minutes type.
- Added 'info' field in table 'work'
- Substract 'todo' when 'done' is informed
- When minutes_type=='est' => target_date=book_date
- When minutes_type=='done' => done=done+minutes / todo=todo-minutes
- When minutes_type=='completed' (new just for select) => completed_date=book_date / done=done+minutes / todo=0
- Remove own time register (if admin_own_threshold)
- Remove others time register (if admin_threshold)
- Show/Hide all work types on target table (show_all_work_types_on_bug_targets)
- When a 'todo' is defined without 'est', 'todo' is shown in red and with a tooltip containing the error
Config options:
- [bug_view_mode][new] View selection: 1 (original) or 2 (purposed)
- [show_all_work_types_on_bug_targets][new] Show/Hide all work types on target table. Only works on view 2
- [admin_own_threshold][new] Enabled to remove custom registers. Only works on view 2
- [edit_targets_threshold][old] Enable to modify targets over the targets table. It was defined on function config, but now is updatable from config page
- [billable_mandatory_minimun_status] Select the minimun status for billable required shows the error
- [billable_behavior_over_severity] Define behavior of billing requirement according to severity
General:
- More specific errors
- More detailed history actions
Customers:
- Added 'association_mode' field in table 'customer'
- Created 'project_customer' table
- Customer management page updated with 'association_mode' field
- When a new project is created, the customers with association_mode='auto' are attached automatically
- From project, you can attach/detach customers, except those marked with association_mode='all'
- When a issue is resolved or closed, 'all customers' is transformed in the current customers list. It avoids future billing changes when adding a new customer to the project.
- 'paying_customers' is required only if 'is_billable' is set to true, and the issue has adquired the minimum status (currently, the minimum status is defined hardcoded in 'pm_bug_is_billable_affecting_required_paying_customers')
Reports:
- Added 'dashboard' report
- Error control added for 'Resource progress' report
- Added validation in 'print_progressbar_span' and 'print_progress_span' to avoid error when no resources are defined (only exploited when $g_show_detailed_errors=ON)
- Show hourly rate and cost only is user has 'view_billing_threshold' permissions
Report 'Time registration overview':
- Layout adjustment to avoid paddings and margins
- Collapsible panels
Report 'Billing':
- Shows only issues marked as billable
Account configuration:
- Moved the unavailability management to a self account preferences menu
- Added list of future and past unavailability, allowing to remove just for future