Exemplo n.º 1
0
 public function validate($object)
 {
     $value = $object->getData($this->getAttribute()->getAttributeCode());
     if ($object->getData('aw_gc_allow_open_amount') == AW_Giftcard_Model_Source_Product_Attribute_Option_Yesno::ENABLED_VALUE && $value < 0.01) {
         Mage::throwException(Mage::helper('aw_giftcard')->__('%s should be 0.01 or greater.', $this->getAttribute()->getData('frontend_label')));
     }
     return parent::validate($object);
 }