| | 389 | |
|---|
| | 390 | $objView = new SC_MobileView(); |
|---|
| | 391 | $objSiteInfo = $objView->objSiteInfo; |
|---|
| | 392 | $arrInfo = $objSiteInfo->data; |
|---|
| | 393 | $objCartSess = new SC_CartSession(); |
|---|
| | 394 | $arrInfo = $objSiteInfo->data; |
|---|
| | 395 | // 購入金額の取得得 |
|---|
| | 396 | $total_pretax = $objCartSess->getAllProductsTotal($arrInfo); |
|---|
| | 397 | // 支払い方法の取得 |
|---|
| | 398 | $arrPayment = $this->lfGetPayment($total_pretax); |
|---|
| | 399 | $pay_flag = true; |
|---|
| | 400 | foreach ($arrPayment as $key => $payment) { |
|---|
| | 401 | if ($payment['payment_id'] == $arrRet['payment_id']) { |
|---|
| | 402 | $pay_flag = false; |
|---|
| | 403 | break; |
|---|
| | 404 | } |
|---|
| | 405 | } |
|---|
| | 406 | if ($pay_flag) { |
|---|
| | 407 | SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); |
|---|
| | 408 | } |
|---|
| | 409 | |
|---|