Changeset 21288
- Timestamp:
- 2011/10/20 16:54:55 (12 years ago)
- Location:
- branches/version-2_11-dev/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_11-dev/data/Smarty/templates/mobile/products/select_item.tpl
r20941 r21288 25 25 <hr> 26 26 27 <!--{if $arrErr. classcategory_id2!= ""}-->27 <!--{if $arrErr.quantity != ""}--> 28 28 <font color="#FF0000">※数量を入力して下さい。</font><br> 29 29 <!--{/if}--> -
branches/version-2_11-dev/data/class/pages/products/LC_Page_Products_Detail.php
r21287 r21288 214 214 } 215 215 216 // 数量の入力を行う 217 $this->tpl_mainpage = "products/select_item.tpl"; 218 break; 219 216 220 case 'select2': 217 221 $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam,$this->tpl_classcat_find1,$this->tpl_classcat_find2); … … 256 260 $this->tpl_product_class_id = $objProduct->classCategories[$product_id][$value1][$value2]['product_class_id']; 257 261 262 // この段階では、数量の入力チェックエラーを出させない。 263 unset($this->arrErr['quantity']); 264 258 265 // 数量の入力を行う 259 266 $this->tpl_mainpage = "products/select_item.tpl"; 267 break; 268 269 case 'cart': 270 // この段階でエラーが出る場合は、数量の入力エラーのはず 271 if (count($this->arrErr)) { 272 // 数量の入力を行う 273 $this->tpl_mainpage = "products/select_item.tpl"; 274 } 260 275 break; 261 276
Note: See TracChangeset
for help on using the changeset viewer.