Changeset 21252 for branches/version-2_11-dev/data/class/pages
- Timestamp:
- 2011/09/22 17:48:32 (15 years ago)
- bzr:base-revision:
- [email protected]
- bzr:committer:
- Kentaro Ohkouchi <[email protected]>
- bzr:file-ids:
data/class/SC_CartSession.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2FSC_CartSession.php
data/class/pages/cart/LC_Page_Cart.php 15179@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fcart%2FLC_Page_Cart.php- bzr:mapping-version:
- v4
- bzr:merge:
[email protected]- bzr:repository-uuid:
- 1e3b908f-19a9-db11-a64c-001125224ba8
- bzr:revision-id:
- [email protected]
- bzr:revno:
- 3950
- bzr:revprop:branch-nick:
- branches/version-2_11-dev
- bzr:root:
- branches/version-2_11-dev
- bzr:testament:
bazaar-ng testament short form 2.1
revision-id: [email protected]
sha1: b0724d54f2b771f152b63040eb31f8925dd58833- bzr:text-parents:
data/class/SC_CartSession.php svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_11-dev:21247
data/class/pages/cart/LC_Page_Cart.php svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_11-dev:21062- bzr:timestamp:
- 2011-09-22 17:48:30.088999987 +0900
- bzr:user-agent:
- bzr2.4.1+bzr-svn1.1.0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_11-dev/data/class/pages/cart/LC_Page_Cart.php
r21062 r21252 132 132 $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); 133 133 $totalIncTax = 0; 134 foreach ($this->cartKeys as $key) { 134 foreach (array_keys($this->cartKeys) as $index) { 135 $key = $this->cartKeys[$index]; 135 136 // カート集計処理 136 137 $this->tpl_message = $objCartSess->checkProducts($key); … … 148 149 // 送料無料までの金額を計算 149 150 $this->tpl_deliv_free[$key] = $this->arrInfo['free_rule'] - $this->tpl_total_inctax[$key]; 151 if (SC_Utils_Ex::isBlank($key)) { 152 unset($this->cartKeys[$index]); 153 } 150 154 } 151 155
Note: See TracChangeset
for help on using the changeset viewer.
