Changeset 21001


Ignore:
Timestamp:
2011/07/01 16:54:15 (13 years ago)
Author:
shutta
Message:

refs #1383 (Myページ>現在のカゴの中 商品の小計額計算で購入制限が効いていない)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/SC_CartSession.php

    r20976 r21001  
    515515                if ($limit > 0) { 
    516516                    $this->setProductValue($item['id'], 'quantity', $limit, $productTypeId); 
     517                    $this->setProductValue($item['id'], 'total_inctax', SC_Helper_DB_Ex::sfCalcIncTax($item['price']) * $limit, $productTypeId); 
    517518                    $tpl_message .= "※「" . $product['name'] . "」は販売制限(または在庫が不足)しております。一度に数量{$limit}以上の購入はできません。\n"; 
    518519                } else { 
Note: See TracChangeset for help on using the changeset viewer.