コード例 #1
0
ファイル: Quote.php プロジェクト: niranjanssiet/magento2
 /**
  * Trigger collect totals after loading, if required
  *
  * @return $this
  */
 protected function _afterLoad()
 {
     // collect totals and save me, if required
     if (1 == $this->getData('trigger_recollect')) {
         $this->collectTotals()->save();
     }
     return parent::_afterLoad();
 }