From 8ff8c661c391e7fda6c349213d974b4c36d29e09 Mon Sep 17 00:00:00 2001 From: Tero Elonen Date: Wed, 20 Nov 2024 13:49:02 +0200 Subject: [PATCH] UHF-10571: Modify the order where questions are asked in budget_cost_static webform element --- .../src/Element/GrantsBudgetCostStatic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/modules/custom/grants_budget_components/src/Element/GrantsBudgetCostStatic.php b/public/modules/custom/grants_budget_components/src/Element/GrantsBudgetCostStatic.php index 1b5161b2fb..654cde77b6 100644 --- a/public/modules/custom/grants_budget_components/src/Element/GrantsBudgetCostStatic.php +++ b/public/modules/custom/grants_budget_components/src/Element/GrantsBudgetCostStatic.php @@ -92,7 +92,6 @@ public static function getFieldNames(): array { $tOpts = ['context' => 'grants_budget_components']; return [ "salaries" => t("Salaries (€)", [], $tOpts), - "personnelSideCosts" => t("Personnel costs from salaries and fees (approx. 30%) (€)", [], $tOpts), "personnelSocialSecurityCosts" => t("personnelSocialSecurityCosts (€)", [], $tOpts), "rentSum" => t("Rents (€)", [], $tOpts), "materials" => t("Materials (€)", [], $tOpts), @@ -119,6 +118,7 @@ public static function getFieldNames(): array { "netCosts" => t("netCosts (€)", [], $tOpts), "performerFees" => t("Salaries and fees for performers and artists (€)", [], $tOpts), "otherFees" => t("Other salaries and fees (production, technology, etc.) (€)", [], $tOpts), + "personnelSideCosts" => t("Personnel costs from salaries and fees (approx. 30%) (€)", [], $tOpts), "generalCosts" => t("generalCosts (€)", [], $tOpts), "permits" => t("permits (€)", [], $tOpts), "setsAndCostumes" => t("setsAndCostumes (€)", [], $tOpts),