Example #1
0
 /**
  * @return float
  */
 public function getShopSum()
 {
     if ($this->isShopSumChanged) {
         if ($this->shopCommission) {
             $this->shopSum = $this->client->calculateShopSum($this->sum, $this->paymentMethod);
         } else {
             $this->shopSum = $this->sum;
         }
         $this->isShopSumChanged = false;
     }
     return $this->shopSum;
 }