コード例 #1
0
ファイル: Cart.php プロジェクト: haegyung/xe-module-shop
 public function check()
 {
     $shopInfo = new ShopInfo($this->module_srl);
     if ($minOrder = $shopInfo->getMinimumOrder()) {
         // TO DO getPrice() doesn't work without true
         if ($this->getPrice(true) < $minOrder) {
             throw new ShopException("Minimum order amount of {$minOrder} not met");
         }
     }
     return true;
 }