72     protected $_sTsProtectProducts = array(
"TS080501_500_30_EUR"   => array(
"netto" => 
"0.82", 
"amount" => 
"500"),
 
   73                                            "TS080501_1500_30_EUR"  => array(
"netto" => 
"2.47", 
"amount" => 
"1500"),
 
   74                                            "TS080501_2500_30_EUR"  => array(
"netto" => 
"4.12", 
"amount" => 
"2500"),
 
   75                                            "TS080501_5000_30_EUR"  => array(
"netto" => 
"8.24", 
"amount" => 
"5000"),
 
   76                                            "TS080501_10000_30_EUR" => array(
"netto" => 
"16.47", 
"amount" => 
"10000"),
 
   77                                            "TS080501_20000_30_EUR" => array(
"netto" => 
"32.94", 
"amount" => 
"20000")
 
  117         $this->_sTsId = $sTsId;
 
  127         if ($this->_iAmount == null) {
 
  128             if ($sTsId = $this->
getTsId()) {
 
  130                 if ($aTsProducts[$sTsId] && is_array($aTsProducts[$sTsId])) {
 
  131                     $this->_iAmount = $aTsProducts[$sTsId][
'amount'];
 
  148         if ($this->_fPrice == null) {
 
  166         if ($this->_fNettoPrice == null) {
 
  184         if ($this->_fVatValue == null) {
 
  200         if ($this->_oPrice == null) {
 
  201             if ($sTsId = $this->
getTsId()) {
 
  203                 if ($aTsProducts[$sTsId] && is_array($aTsProducts[$sTsId])) {
 
  204                     $dPrice = $aTsProducts[$sTsId][
'netto'];
 
  205                     $oPrice = 
oxNew(
'oxPrice');
 
  206                     $oPrice->setNettoPriceMode();
 
  207                     $oPrice->setPrice($dPrice);
 
  208                     $oPrice->setVat($this->
getVat());
 
  209                     $this->_oPrice = $oPrice;