CRM-16222-PR improvement
authorpratikshad <pratiksha.dubey@webaccess.co.in>
Fri, 10 Apr 2015 14:10:37 +0000 (19:40 +0530)
committerpratikshad <pratiksha.dubey@webaccess.co.in>
Fri, 10 Apr 2015 14:10:37 +0000 (19:40 +0530)
CRM/Price/BAO/PriceField.php

index 5872a361e6c221b3f5f82e80718b681c70b2a759..5de3853f2250259d4e05b42a4e432d358c8aba0e 100644 (file)
@@ -320,22 +320,17 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
           ));
 
         $extra = array();
-        if (!empty($qf->_quickConfig) && !empty($qf->_contributionAmount)) {
-          foreach ($fieldOptions as &$fieldOption) {
-            if (strtolower($fieldOption['name']) == 'other_amount') {
-              $fieldOption['label'] = $fieldOption['label'] . '  ' . $currencySymbol;
-            }
-          }
-          $qf->assign('priceset', $elementName);
-          $extra = array('onclick' => 'useAmountOther();');
-        }
-
         if (!empty($qf->_membershipBlock) && !empty($qf->_quickConfig) && $field->name == 'other_amount' && empty($qf->_contributionAmount)) {
           $useRequired = 0;
         }
         elseif (!empty($fieldOptions[$optionKey]['label'])) {
           //check for label.
           $label = $fieldOptions[$optionKey]['label'];
+          if (!empty($qf->_quickConfig) && !empty($qf->_contributionAmount) && strtolower($fieldOptions[$optionKey]['name']) == 'other_amount') {
+            $label .=  '  ' . $currencySymbol;
+            $qf->assign('priceset', $elementName);
+            $extra = array('onclick' => 'useAmountOther();');
+          }
         }
 
         $element = &$qf->add('text', $elementName, $label,