OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/features/calculations.feature

56 lines
2.2 KiB

#-- copyright
# OpenProject Reporting Plugin
#
# Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#++
Feature: Cost Reporting Calculations
Scenario: Different Rates are calculated differently
Given there is a standard cost control project named "Cost Project"
And there is 1 hourly rate with the following:
| rate | 1 |
| user | manager |
| valid from | 1 year ago |
And there is 1 hourly rate with the following:
| rate | 5 |
| user | manager |
| valid from | 2 years ago |
And there is 1 default hourly rate with the following:
| rate | 10 |
| user | manager |
| valid from | 3 years ago |
And the project "Cost Project" has 1 time entry with the following:
| hours | 10 |
| user | manager |
| spent on | 6 months ago |
And the project "Cost Project" has 1 time entry with the following:
| hours | 10 |
| user | manager |
| spent on | 18 months ago |
And the project "Cost Project" has 1 time entry with the following:
| hours | 10 |
| user | manager |
| spent on | 30 months ago |
And there is 1 user with:
| login | admin |
| admin | true |
And I am already logged in as "admin"
And I am on the Cost Reports page for the project called "Cost Project" without filters or groups
Then I should see "10.00" # 1 EUR x 10 (hours)
And I should see "50.00" # 5 EUR x 10 (hours)
And I should see "100.00" # 10 EUR x 10 (hours)
And I should see "160.00"