Changeset 17408


Ignore:
Timestamp:
2008/07/08 07:07:45 (15 years ago)
Author:
Seasoft
Message:

商品規格
文字化け削除。
見出し追加。
ソース整形。

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  
    2222 */ 
    2323*}--> 
    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"> 
    2526<!--{foreach key=key item=item from=$arrForm}--> 
    2627<input type="hidden" name="<!--{$key}-->" value="<!--{$item|escape}-->" /> 
  • branches/comu-ver2/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php

    r17364 r17408  
    8484 
    8585        switch($_POST['mode']) { 
    86             // 規格削除要求 
     86        // 規格削除要求 
    8787        case 'delete': 
    8888            $objQuery = new SC_Query(); 
     
    117117            break; 
    118118 
    119             // 編集要求 
     119        // 編集要求 
    120120        case 'pre_edit': 
    121121            $objQuery = new SC_Query(); 
     
    130130            $this->lfProductClassPage();   // 規格登録ページ 
    131131            break; 
    132             // 規格組み合わせ表示 
     132             
     133        // 規格組み合わせ表示 
    133134        case 'disp': 
    134135            $this->arrForm['select_class_id1'] = $_POST['select_class_id1']; 
     
    143144            $this->lfProductClassPage();   // 規格登録ページ 
    144145            break; 
    145             // 規格登録要求 
     146             
     147        // 規格登録要求 
    146148        case 'edit': 
    147149            // 入力値の変換 
     
    160162            } 
    161163            break; 
    162             // 確認ページからの戻り 
     164             
     165        // 確認ページからの戻り 
    163166        case 'confirm_return': 
    164167            // フォームパラメータの引き継ぎ 
     
    171174            $this->lfProductClassPage();   // 規格登録ページ 
    172175            break; 
     176             
    173177        case 'complete': 
    174178            // 完了ページ設定 
     
    177181            $this->lfInsertProductClass($_POST, $_POST['product_id']); 
    178182            break; 
     183             
    179184        default: 
    180185            $this->lfProductClassPage();   // 規格登録ページ 
Note: See TracChangeset for help on using the changeset viewer.