Esempio n. 1
0
 /**
  * Collect totals
  *
  * @return $this
  */
 public function collectTotals()
 {
     if ($this->getTotalsCollectedFlag()) {
         return $this;
     }
     $total = $this->totalsCollector->collect($this);
     $this->addData($total->getData());
     $this->setTotalsCollectedFlag(true);
     return $this;
 }