Merge pull request #8599 from PalanteJon/CRM-18980
[civicrm-core.git] / CRM / Price / Form / Option.php
index 81b994f4ce59b4cc825dcbce4a2e61a65c8340b8..29a24e1ad23dca42fc23780b5b938c683ef3e600 100644 (file)
@@ -215,6 +215,10 @@ class CRM_Price_Form_Option extends CRM_Core_Form {
       $this->registerRule('amount', 'callback', 'money', 'CRM_Utils_Rule');
       $this->addRule('amount', ts('Please enter a monetary value for this field.'), 'money');
 
+      $this->add('text', 'non_deductible_amount', ts('Non-deductible Amount'), NULL);
+      $this->registerRule('non_deductible_amount', 'callback', 'money', 'CRM_Utils_Rule');
+      $this->addRule('non_deductible_amount', ts('Please enter a monetary value for this field.'), 'money');
+
       $this->add('textarea', 'description', ts('Description'));
       $this->add('textarea', 'help_pre', ts('Pre Option Help'));
       $this->add('textarea', 'help_post', ts('Post Option Help'));