Changeset 22494
- Timestamp:
- 2013/02/02 20:43:04 (10 years ago)
- Location:
- branches/version-2_12-dev/data
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/Smarty/templates/sphone/frontparts/bloc/recommend.tpl
r22206 r22494 34 34 <p class="mini comment"><!--{$arrBestProducts[cnt].comment|h|nl2br}--></p> 35 35 <p class="sale_price"> 36 <span class="mini"> 販売価格(税込):</span><span class="price"><!--{$arrBestProducts[cnt].price02_min_inctax|number_format}--> 円</span>36 <span class="mini"><!--{$smarty.const.SALE_PRICE_TITLE|h}-->(税込):</span><span class="price"><!--{$arrBestProducts[cnt].price02_min_inctax|number_format}--> 円</span> 37 37 </p> 38 38 </div> -
branches/version-2_12-dev/data/Smarty/templates/sphone/products/list.tpl
r22486 r22494 95 95 <!--★商品価格★--> 96 96 <p> 97 <span class="pricebox sale_price"><span class="mini"> 販売価格(税込):</span></span>97 <span class="pricebox sale_price"><span class="mini"><!--{$smarty.const.SALE_PRICE_TITLE|h}-->(税込):</span></span> 98 98 <span class="price"> 99 99 <span id="price02_default_<!--{$id}-->"> -
branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php
r22206 r22494 65 65 */ 66 66 function action() { 67 68 67 $objSiteSess = new SC_SiteSession_Ex(); 69 68 $objCartSess = new SC_CartSession_Ex(); … … 115 114 } 116 115 $this->arrForm = $objFormParam->getFormParamList(); 117 118 119 116 } 120 117 … … 143 140 $objFormParam->addParam('メイン画像', 'main_image'); 144 141 $objFormParam->addParam('メイン一覧画像', 'main_list_image'); 145 $objFormParam->addParam( '販売価格', 'price');142 $objFormParam->addParam(SALE_PRICE_TITLE, 'price'); 146 143 $objFormParam->addParam('数量', 'quantity', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'), 1); 147 144 $objFormParam->addParam('お届け先', 'shipping', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); … … 229 226 } 230 227 } 228 231 229 return $arrResults; 232 230 } … … 284 282 } 285 283 } 284 286 285 return $arrErr; 287 286 }
Note: See TracChangeset
for help on using the changeset viewer.