Skip to content
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

añadida tarea front-end móvil, constructor y pruebas del móvil #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 36 additions & 2 deletions P6_proySW.tjp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ project pSix "Web Game" 2023-03-15 +2.5m {
# the project reports. If not specified, the current day will be
# used, but this will likely be outside of the project range, so it
# can't be seen in the reports.
now 2023-04-15-13:00
now 2023-05-01-12:00
# The currency for all money values is the US Dollar.
currency "EUR"

Expand All @@ -46,6 +46,7 @@ account cost "Project Cost" {
account manag "Management"
account wFront "Web Front-End"
account back "Back-End"
account mFront "Mobile Front-End"
}
account rev "Payments"
# The Profit&Loss analysis should be rev - cost accounts.
Expand All @@ -67,7 +68,10 @@ resource dev2 "Samantha Müller" {
resource dev3 "Peter Green" {
email "[email protected]"
}

resource dev4 "Pilar Fierro" {
email "[email protected]"
workinghours mon - sun 9:00 - 13:00
}
# Now we specify the work packages. The whole project is described as
# a task that contains subtasks. These subtasks are then broken down
# into smaller tasks and so on. The innermost tasks describe the real
Expand Down Expand Up @@ -146,6 +150,36 @@ task WMGame "Web & Mobile Game" {
}
}

task tmobileF "Mobile Front-End"{
purge chargeset
chargeset mFront
responsible dev4
depends WMGame.tback.tBEd
task tGUIm "Mobile GUI Design"{
effort 9d
actual:effort 15d
allocate dev4
}
}

task tFEc "Mobile Front End Construction"{
effort 22d
actual:effort 30d
allocate dev2, dev4
depends WMGame.tmobileF.tGUIm
journalentry 2023-04-11 "Problems with the construction" {
author dev4
alert yellow
summary "The tool has given problems. You should change it."
}
}

task tFEt "Mobile Front End Test"{
effort 6d
allocate dev1
depends WMGame.tFEc
}

task ttest "Accpetance tests" {
effort 10d
allocate boss
Expand Down