## RequestDate
#set ($notUsed = $CommonFunctions.getNotUsed("RequestDate"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("RequestDate"))
$CommonFunctions.getDisplayReadyLabel("RequestDate"): |
$CommonFunctions.formatDate($currentUserId,$project.getRequestDate())
|
#end
#set ($notUsed = $CommonFunctions.getNotUsed("StartDate"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("StartDate"))
$CommonFunctions.getDisplayReadyLabel("StartDate"): |
$CommonFunctions.displayReady($startDate)
|
#end
#set ($notUsed = $CommonFunctions.getNotUsed("CompletionDate"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("CompletionDate"))
$CommonFunctions.getDisplayReadyLabel("CompletionDate"): |
$CommonFunctions.displayReady($completionDate)
|
#end
|
#set ($notUsed = $CommonFunctions.getNotUsed("PlannedManHours"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("PlannedManHours"))
$CommonFunctions.getDisplayReadyLabel("PlannedManHours"): |
$totalManHours
|
#end
## SpentManHours
#set ($notUsed = $CommonFunctions.getNotUsed("SpentManHours"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("SpentManHours"))
$CommonFunctions.getDisplayReadyLabel("SpentManHours"): |
$spentManHours
|
#end
## RemainingManHours
#set ($notUsed = $CommonFunctions.getNotUsed("RemainingManHours"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("RemainingManHours"))
$CommonFunctions.getDisplayReadyLabel("RemainingManHours"): |
$remainingManHours
|
#end
|
#set ($notUsed = $CommonFunctions.getNotUsed("PlannedCost"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("PlannedCost"))
$CommonFunctions.getDisplayReadyLabel("PlannedCost"): |
$CommonFunctions.formatMoney($currentUserId,$totalBudget)
|
#end
#set ($notUsed = $CommonFunctions.getNotUsed("SpentCost"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("SpentCost"))
$CommonFunctions.getDisplayReadyLabel("SpentCost"): |
$CommonFunctions.formatMoney($currentUserId,$spentBudget)
|
#end
#set ($notUsed = $CommonFunctions.getNotUsed("RemainingCost"))
#if ($notUsed.length() == 0 && $policyCheck.canSeeCoreData("RemainingCost"))
$CommonFunctions.getDisplayReadyLabel("RemainingCost"): |
$CommonFunctions.formatMoney($currentUserId,$remainingBudget)
|
#end
|