public function GetValue()
 {
     if (!$this->IsNull()) {
         return $this->currencySign . parent::GetValue();
     } else {
         return $this->GetInnerFieldValue();
     }
 }
 public function GetValue()
 {
     return parent::GetValue() . '%';
 }