/**
  * Is company allowed?
  *
  * @return true if companies are allowed to use this payment option.
  */
 private function _companyAllowed()
 {
     return KiTT_CountryLogic::isCompanyAllowed($this->_locale->getCountryCode()) && $this->_paymentCode === 'invoice';
 }