Ignore:
Timestamp:
2010/11/04 12:57:08 (12 years ago)
Author:
nanasess
bzr:base-revision:
svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_5-dev:18880
bzr:committer:
Kentaro Ohkouchi <ohkouchi@loop-az.jp>
bzr:file-ids:

data/Smarty/templates/admin/products/confirm.tpl 15732@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fadmin%2Fproducts%2Fconfirm.tpl
data/Smarty/templates/admin/products/product.tpl 15732@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fadmin%2Fproducts%2Fproduct.tpl
data/Smarty/templates/admin/products/product_class.tpl 15732@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fadmin%2Fproducts%2Fproduct_class.tpl
data/Smarty/templates/admin/products/product_class_confirm.tpl 15732@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fadmin%2Fproducts%2Fproduct_class_confirm.tpl
data/class/SC_Product.php 18277@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Fcomu-ver2%2Fdata%2Fclass%2FSC_Product.php
data/class/pages/admin/products/LC_Page_Admin_Products_Product.php 15342@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fadmin%2Fproducts%2FLC_Page_Admin_Products_Product.php
data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php 15559@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fadmin%2Fproducts%2FLC_Page_Admin_Products_ProductClass.php
data/mtb_constants_init.php 16505@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fmtb_constants_init.php
html/install/sql/create_table_mysql.sql 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fhtml%2Finstall%2Fsql%2Fcreate_table_mysql.sql
html/install/sql/create_table_pgsql.sql 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fhtml%2Finstall%2Fsql%2Fcreate_table_pgsql.sql
html/install/sql/drop_table.sql 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fhtml%2Finstall%2Fsql%2Fdrop_table.sql
html/install/sql/insert_data.sql 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fhtml%2Finstall%2Fsql%2Finsert_data.sql
bzr:mapping-version:
v4
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
ohkouchi@loop-az.jp-20101104035705-abeyiznymhr557j6
bzr:revno:
2361
bzr:revprop:branch-nick:
branches/version-2_5-dev
bzr:root:
branches/version-2_5-dev
bzr:timestamp:
2010-11-04 12:57:05.384000063 +0900
bzr:user-agent:
bzr2.2.0+bzr-svn1.0.3
svn:original-date:
2010-11-04T03:57:05.384000Z
Message:

#823 商品種別によってカートを分ける

  • 「実商品・ダウンロード」を「商品種別」に変更
Location:
branches/version-2_5-dev/data/Smarty/templates/admin/products
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/Smarty/templates/admin/products/confirm.tpl

    r18873 r18882  
    6868    <!--{if $tpl_nonclass == true}--> 
    6969    <tr> 
    70       <th>実商品・ダウンロード</th> 
    71       <td> 
    72       <!--{$arrDown[$arrForm.down]}--> 
     70      <th>商品種別</th> 
     71      <td> 
     72      <!--{$arrProductType[$arrForm.product_type_id]}--> 
    7373      </td> 
    7474    </tr> 
  • branches/version-2_5-dev/data/Smarty/templates/admin/products/product.tpl

    r18876 r18882  
    126126    <!--{if $tpl_nonclass == true}--> 
    127127    <tr> 
    128       <th>実商品・ダウンロード<span class="attention"> *</span></th> 
    129       <td> 
    130         <input type="radio" name="down" value="1" <!--{if $arrForm.down == "1"}-->checked<!--{/if}-->/>実商品  
    131         <input type="radio" name="down" value="2" <!--{if $arrForm.down == "2"}-->checked<!--{/if}--> />ダウンロード 
     128      <th>商品種別<span class="attention"> *</span></th> 
     129      <td> 
     130        <input type="radio" name="product_type_id" value="<!--{$smarty.const.PRODUCT_TYPE_NORMAL}-->" <!--{if $arrForm.product_type_id == $smarty.const.PRODUCT_TYPE_NORMAL}-->checked<!--{/if}-->/>通常商品  
     131        <input type="radio" name="product_type_id" value="<!--{$smarty.const.PRODUCT_TYPE_DOWNLOAD}-->" <!--{if $arrForm.product_type_id == $smarty.const.PRODUCT_TYPE_DOWNLOAD}-->checked<!--{/if}--> />ダウンロード商品 
    132132      </td> 
    133133    </tr> 
  • branches/version-2_5-dev/data/Smarty/templates/admin/products/product_class.tpl

    r18873 r18882  
    101101      <th><!--{$smarty.const.NORMAL_PRICE_TITLE}-->(円)</th> 
    102102      <th><!--{$smarty.const.SALE_PRICE_TITLE}-->(円)<span class="attention">*</span></th> 
    103       <th>実商品・ダウンロード<span class="attention"> *</span></th> 
     103      <th>商品種別<span class="attention"> *</span></th> 
    104104      <th>ダウンロードファイル名<BR><span class="red"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span></th> 
    105105      <th>ダウンロード商品用ファイルアップロード<BR>登録可能拡張子:<!--{$smarty.const.DOWNLOAD_EXTENSION}--> (パラメータ DOWNLOAD_EXTENSION)</th> 
     
    139139      <td align="center"><input type="text" name="<!--{$key}-->" value="<!--{$arrForm[$key]}-->" size="6" class="box6" maxlength="<!--{$smarty.const.PRICE_LEN}-->" <!--{if $arrErr[$key] != ""}--><!--{sfSetErrorStyle}--><!--{/if}-->></td> 
    140140      <td> 
    141         <!--{assign var=key value="down:`$smarty.section.cnt.iteration`"}--> 
    142         <input type="radio" name="<!--{$key}-->" value="1" <!--{if $arrForm[$key] == "1"}-->checked<!--{/if}-->/>実商品  
    143         <input type="radio" name="<!--{$key}-->" value="2" <!--{if $arrForm[$key] == "2"}-->checked<!--{/if}--> />ダウンロード 
     141        <!--{assign var=key value="product_type_id:`$smarty.section.cnt.iteration`"}--> 
     142        <input type="radio" name="<!--{$key}-->" value="<!--{$smarty.const.PRODUCT_TYPE_NORMAL}-->" <!--{if $arrForm[$key] == "1"}-->checked<!--{/if}-->/>通常商品  
     143        <input type="radio" name="<!--{$key}-->" value="<!--{$smarty.const.PRODUCT_TYPE_NORMAL}-->" <!--{if $arrForm[$key] == "2"}-->checked<!--{/if}--> />ダウンロード商品 
    144144      </td> 
    145145      <td> 
  • branches/version-2_5-dev/data/Smarty/templates/admin/products/product_class_confirm.tpl

    r18873 r18882  
    4343      <th><!--{$smarty.const.NORMAL_PRICE_TITLE}-->(円)</th> 
    4444      <th><!--{$smarty.const.SALE_PRICE_TITLE}-->(円)</th> 
    45       <th>実商品・ダウンロード</th> 
     45      <th>商品種別</th> 
    4646      <th>ダウンロードファイル名</th> 
    4747      <th>ダウンロード商品用ファイルアップロード</th> 
     
    7070      <!--{assign var=key value="price02:`$smarty.section.cnt.iteration`"}--> 
    7171      <td class="right"><!--{$arrForm[$key]}--></td> 
    72       <!--{assign var=key value="down:`$smarty.section.cnt.iteration`"}--> 
     72      <!--{assign var=key value="product_type_id:`$smarty.section.cnt.iteration`"}--> 
    7373      <!--{assign var=inkey value="`$arrForm[$key]`"}--> 
    7474      <td class="right"><!--{$arrDown[$inkey]}--></td> 
Note: See TracChangeset for help on using the changeset viewer.