From 68a15a8532350bb0267ae77e24f9ce3f150802e1 Mon Sep 17 00:00:00 2001 From: jitendrapurohit Date: Fri, 3 Feb 2017 17:31:22 +0530 Subject: [PATCH] CRM-19741: Price set and price set value label fields are inconsistant to users --- CRM/Price/BAO/PriceField.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CRM/Price/BAO/PriceField.php b/CRM/Price/BAO/PriceField.php index 6f3284c63b..e7b64f96dd 100644 --- a/CRM/Price/BAO/PriceField.php +++ b/CRM/Price/BAO/PriceField.php @@ -89,6 +89,9 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField { return $priceField; } + if (!empty($params['id']) && empty($priceField->html_type)) { + $priceField->html_type = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $params['id'], 'html_type'); + } $optionsIds = array(); $maxIndex = CRM_Price_Form_Field::NUM_OPTION; @@ -102,6 +105,12 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField { if ($fieldValue->find(TRUE)) { $optionsIds['id'] = $fieldValue->id; } + + //Update price_field_value label when edited inline. + if (!empty($params['id']) && $priceField->label != $fieldValue->label) { + $fieldValue->label = $priceField->label; + $fieldValue->save(); + } } $defaultArray = array(); //html type would be empty in update scenario not sure what would happen ... -- 2.25.1