Changeset 21516 for branches/version-2_12-dev/data/class/SC_CartSession.php
- Timestamp:
- 2012/02/15 20:52:51 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/SC_CartSession.php
r21515 r21516 538 538 $arrDeliv = SC_Helper_Purchase_Ex::getDeliv($productTypeId); 539 539 if (SC_Utils_Ex::isBlank($arrDeliv)) { 540 $tpl_message .= '※「' . $product['name'] . "」はまだ配送の準備ができておりません。恐れ入りますがお問い合わせページよりお問い合わせください。\n"; 540 $tpl_message .= '※「' . $product['name'] . '」はまだ配送の準備ができておりません。'; 541 $tpl_message .= '恐れ入りますがお問い合わせページよりお問い合わせください。' . "\n"; 541 542 $this->delProduct($item['cart_no'], $productTypeId); 542 543 } … … 549 550 if ($limit > 0) { 550 551 $this->setProductValue($item['id'], 'quantity', $limit, $productTypeId); 551 $this->setProductValue($item['id'], 'total_inctax', SC_Helper_DB_Ex::sfCalcIncTax($item['price']) * $limit, $productTypeId); 552 $tpl_message .= '※「' . $product['name'] . "」は販売制限(または在庫が不足)しております。一度に数量{$limit}を超える購入はできません。\n"; 552 $total_inctax = SC_Helper_DB_Ex::sfCalcIncTax($item['price']) * $limit; 553 $this->setProductValue($item['id'], 'total_inctax', $total_inctax, $productTypeId); 554 $tpl_message .= '※「' . $product['name'] . '」は販売制限(または在庫が不足)しております。'; 555 $tpl_message .= '一度に数量{$limit}を超える購入はできません。' . "\n"; 553 556 } else { 554 557 $this->delProduct($item['cart_no'], $productTypeId);
Note: See TracChangeset
for help on using the changeset viewer.
