Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added readonly fields read from context
  • Loading branch information
temi committed Dec 6, 2024
1 parent 7fb8879 commit 134dec5
Showing 1 changed file with 104 additions and 23 deletions.
127 changes: 104 additions & 23 deletions forms/other/regionalCapacityServicesReport.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,6 @@
}
]
},
{
"dataType": "boolean",
"name": "reportedToIpprs",
"description": ""
},
{
"dataType": "document",
"name": "ipprsReport",
"description": ""
},
{
"dataType": "number",
"name": "organisationFteWorkforce",
Expand All @@ -157,6 +147,14 @@
},
{
"rule": "min[0]"
},
{
"param": {
"expression": "organisationFteIndigenousWorkforce",
"type": "computed"
},
"rule": "min",
"message": "Numeric value must be higher or equal to the numeric value entered for 'What was your organisation’s full time equivalent Indigenous workforce deployed on the Services this reporting period?'"
}
]
},
Expand Down Expand Up @@ -191,9 +189,58 @@
},
{
"rule": "min[0]"
},
{
"param": {
"expression": "organisationPanelProjectValue",
"type": "computed"
},
"rule": "max",
"message": "The sum of the value of Services contracted to First Nations people/Indigenous enterprises for all reporting periods can not exceed the total $ value (GST inclusive) of the Deed and all Contracts (including <span style='white-space: nowrap;'>non-DCCEEW</span> Contracts)"
}
]
},
{
"dataType": "number",
"name": "organisationPanelProjectValue",
"description": "Enter the total dollar value (GST inclusive) for the Deed and all Contracts (including <span style='white-space: nowrap;'>non-DCCEEW</span> Contracts).",
"validate": "required,min[0]",
"computed": {
"expression": "owner.totalContractValue"
}
},
{
"dataType": "number",
"name": "supplyChainPerformancePercentage",
"description": "Calculated using value of Services contracted to First Nations people/Indigenous enterprises ÷ stored Total Organisation Panel/Project Value $ x 100",
"computed": {
"expression": "servicesContractedValueFirstNations / organisationPanelProjectValue * 100"
}
},
{
"dataType": "number",
"name": "workforcePerformancePercentage",
"description": "Calculated using FTE Indigenous workforce ÷ FTE workforce x 100",
"computed": {
"expression": "organisationFteIndigenousWorkforce / organisationFteWorkforce * 100"
}
},
{
"dataType": "number",
"name": "targetIndigenousParticipationPercentage",
"description": "Target Indigenous Participation Percentage for this reporting period",
"computed": {
"expression": "$context.owner.targetIndigenousParticipationPercentage"
}
},
{
"dataType": "number",
"name": "targetIndigenousProcurementPercentage",
"description": "Target Indigenous Procurement Percentage for this reporting period",
"computed": {
"expression": "owner.targetIndigenousProcurementPercentage"
}
},
{
"name": "staffDevelopmentOpportunities",
"description": "This includes on-the-job, informal, and formal training. If no activities were undertaken, enter ‘Nil’.",
Expand Down Expand Up @@ -510,33 +557,45 @@
}
]
},
{
"type": "row",
"items": [
{
"type": "literal",
"source": "<b>Q5(b). Please complete workforce and supply chain data (Deed of Standing Offer Clause 38 Indigenous Procurement Policy). Please do not provide personal or <span style='white-space: nowrap;'>commercial-in-confidence</span> information when answering this question. Please retain documentation as evidence to support assurance activities undertaken to verify the reported information.</b>"
}
]
},
{
"type": "row",
"items": [
{
"css": "span7",
"preLabel": "Q5(b). Please confirm that your organisation has reported via the IPPRS this period (Clause 38 Indigenous Procurement Policy), and that this report has been uploaded to the documents tab in MERIT.",
"source": "reportedToIpprs",
"type": "boolean"
"preLabel": "What was your organisation’s full time equivalent workforce deployed on the Services this reporting period?",
"source": "organisationFteWorkforce",
"type": "number"
}
]
},
{
"type": "row",
"items": [
{
"type": "document",
"source": "ipprsReport",
"preLabel": "Please attach the document here."
"css": "span7",
"preLabel": "What was your organisation’s full time equivalent Indigenous workforce deployed on the Services this reporting period?",
"source": "organisationFteIndigenousWorkforce",
"type": "number"
}
]
},
{
"type": "row",
"items": [
{
"type": "literal",
"source": "<b>Q5(c). Please complete workforce and supply chain data (Deed of Standing Offer Clause 38 Indigenous Procurement Policy). Please do not provide personal or <span style='white-space: nowrap;'>commercial-in-confidence</span> information when answering this question. Please retain documentation as evidence to support assurance activities undertaken to verify the reported information.</b>"
"css": "span7",
"preLabel": "Workforce Performance % this reporting period",
"source": "workforcePerformancePercentage",
"type": "number"
}
]
},
Expand All @@ -545,8 +604,8 @@
"items": [
{
"css": "span7",
"preLabel": "What was your organisation’s full time equivalent workforce deployed on the Services this reporting period?",
"source": "organisationFteWorkforce",
"preLabel": "Target Workforce Performance % this reporting period",
"source": "targetIndigenousParticipationPercentage",
"type": "number"
}
]
Expand All @@ -556,8 +615,8 @@
"items": [
{
"css": "span7",
"preLabel": "What was your organisation’s full time equivalent Indigenous workforce deployed on the Services this reporting period?",
"source": "organisationFteIndigenousWorkforce",
"preLabel": "What is your total organisation panel/project $ value (GST inclusive)?",
"source": "organisationPanelProjectValue",
"type": "number"
}
]
Expand All @@ -567,12 +626,34 @@
"items": [
{
"css": "span7",
"preLabel": "What was the dollar value of Services contracted to First Nations people/Indigenous enterprises during this reporting period?",
"preLabel": "What was the dollar value (GST inclusive) of Services contracted to First Nations people/Indigenous enterprises during this reporting period?",
"source": "servicesContractedValueFirstNations",
"type": "number"
}
]
},
{
"type": "row",
"items": [
{
"css": "span7",
"preLabel": "Supply Chain Performance % this reporting period",
"source": "supplyChainPerformancePercentage",
"type": "number"
}
]
},
{
"type": "row",
"items": [
{
"css": "span7",
"preLabel": "Target Supply Chain Performance % this reporting period",
"source": "targetIndigenousProcurementPercentage",
"type": "number"
}
]
},
{
"type": "row",
"items": [
Expand Down

0 comments on commit 134dec5

Please sign in to comment.