Changeset 17408
- Timestamp:
- 2008/07/08 07:07:45 (15 years ago)
- Location:
- branches/comu-ver2/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/comu-ver2/data/Smarty/templates/default/admin/products/product_class_confirm.tpl
r17351 r17408 22 22 */ 23 23 *}--> 24 ?<form name="form1" id="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->" enctype="multipart/form-data"> 24 <h2>確認</h2> 25 <form name="form1" id="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->" enctype="multipart/form-data"> 25 26 <!--{foreach key=key item=item from=$arrForm}--> 26 27 <input type="hidden" name="<!--{$key}-->" value="<!--{$item|escape}-->" /> -
branches/comu-ver2/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php
r17364 r17408 84 84 85 85 switch($_POST['mode']) { 86 86 // 規格削除要求 87 87 case 'delete': 88 88 $objQuery = new SC_Query(); … … 117 117 break; 118 118 119 119 // 編集要求 120 120 case 'pre_edit': 121 121 $objQuery = new SC_Query(); … … 130 130 $this->lfProductClassPage(); // 規格登録ページ 131 131 break; 132 // 規格組み合わせ表示 132 133 // 規格組み合わせ表示 133 134 case 'disp': 134 135 $this->arrForm['select_class_id1'] = $_POST['select_class_id1']; … … 143 144 $this->lfProductClassPage(); // 規格登録ページ 144 145 break; 145 // 規格登録要求 146 147 // 規格登録要求 146 148 case 'edit': 147 149 // 入力値の変換 … … 160 162 } 161 163 break; 162 // 確認ページからの戻り 164 165 // 確認ページからの戻り 163 166 case 'confirm_return': 164 167 // フォームパラメータの引き継ぎ … … 171 174 $this->lfProductClassPage(); // 規格登録ページ 172 175 break; 176 173 177 case 'complete': 174 178 // 完了ページ設定 … … 177 181 $this->lfInsertProductClass($_POST, $_POST['product_id']); 178 182 break; 183 179 184 default: 180 185 $this->lfProductClassPage(); // 規格登録ページ
Note: See TracChangeset
for help on using the changeset viewer.