Changeset 18486


Ignore:
Timestamp:
2010/01/09 16:18:54 (14 years ago)
Author:
Seasoft
Message:

用語統一

  • 「商品番号」という曖昧な語句を下記規則で割り当てし直した。
    • 商品ID ← 商品番号(product_id)
    • 商品コード ← 商品番号(product_code)
  • 未テスト
Location:
branches/comu-ver2/data
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/Smarty/templates/default/admin/contents/recomend_search.tpl

    r18254 r18486  
    6969    <tr> 
    7070      <th>商品画像</th> 
    71       <th>商品番号</th> 
     71      <th>商品コード</th> 
    7272      <th>商品名</th> 
    7373      <th>決定</th> 
  • branches/comu-ver2/data/Smarty/templates/default/admin/order/product_select.tpl

    r18270 r18486  
    135135  </tr> 
    136136  <tr> 
    137     <th>商品番号</th> 
     137    <th>商品コード</th> 
    138138    <td><input type="text" name="search_product_code" value="<!--{$arrForm.search_product_code}-->" size="35" class="box35" /></td> 
    139139  </tr> 
     
    154154  <tr> 
    155155    <th class="image">商品画像</th> 
    156     <th class="id">商品番号</th> 
     156    <th class="id">商品コード</th> 
    157157    <th class="name">商品名</th> 
    158158    <th class="action">決定</th> 
  • branches/comu-ver2/data/Smarty/templates/default/admin/products/product_select.tpl

    r18254 r18486  
    7575  <tr> 
    7676    <th>商品画像</th> 
    77     <th>商品番号</th> 
     77    <th>商品コード</th> 
    7878    <th>商品名</th> 
    7979    <th>決定</th> 
  • branches/comu-ver2/data/Smarty/templates/default/admin/total/page_products.tpl

    r18254 r18486  
    2525  <tr> 
    2626    <th>順位</th> 
    27     <th>商品番号</th> 
     27    <th>商品コード</th> 
    2828    <th>商品名</th> 
    2929    <th>購入件数</th> 
     
    4646  <tr class="<!--{$color}-->"> 
    4747    <td class="center"><!--{*順位*}--><!--{$smarty.section.cnt.iteration}--></td> 
    48     <td class="right"><!--{*商品番号*}--><!--{$arrResults[cnt].product_code|escape}--></td> 
     48    <td class="right"><!--{*商品コード*}--><!--{$arrResults[cnt].product_code|escape}--></td> 
    4949    <td class="left"><!--{*商品名*}--><!--{$arrResults[cnt].product_name|sfCutString:40|escape}--></td> 
    5050    <td class="right"><!--{*購入件数*}--><!--{$arrResults[cnt].order_count}-->件</td> 
     
    5757  <tr> 
    5858    <th>順位</th> 
    59     <th>商品番号</th> 
     59    <th>商品コード</th> 
    6060    <th>商品名</th> 
    6161    <th>購入件数</th> 
  • branches/comu-ver2/data/class/pages/admin/LC_Page_Admin_Home.php

    r18234 r18486  
    195195    } 
    196196 
    197     // 品切れ商品番号の取得 
     197    // 品切れ商品IDの取得 
    198198    function lfGetSoldOut() { 
    199199        $objQuery = new SC_Query(); 
  • branches/comu-ver2/data/class/pages/admin/total/LC_Page_Admin_Total.php

    r18377 r18486  
    10261026        case 'products': 
    10271027            $arrTitleCol = array( 
    1028                                  '商品番号', 
     1028                                 '商品コード', 
    10291029                                 '商品名', 
    10301030                                 '購入件数', 
Note: See TracChangeset for help on using the changeset viewer.