Changeset 17179


Ignore:
Timestamp:
2008/03/24 18:30:56 (16 years ago)
Author:
adachi
Message:

TradeSafe?連携処理の追加

Location:
branches/version-2/data
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/Smarty/templates/default/shopping/confirm.tpl

    r16999 r17179  
    225225      </table> 
    226226 
     227      <!--{if 'sfTSRequest'|function_exists}--> 
     228        <!--{''|sfTSPrintOrderBox}--> 
     229      <!--{/if}--> 
     230       
    227231      <div class="tblareabtn"> 
    228232        <a href="./payment.php" onmouseover="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_back_on.gif',back03)" onmouseout="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_back.gif',back03)"><img src="<!--{$TPL_DIR}-->img/common/b_back.gif" width="150" height="30" alt="戻る" border="0" name="back03" id="back03" /></a>&nbsp; 
  • branches/version-2/data/class/pages/shopping/LC_Page_Shopping_Complete.php

    r16985 r17179  
    124124                $this->tpl_aff_option.= "|total=$total"; 
    125125            } 
     126 
     127            // TradeSafe連携用 
     128            if (function_exists('sfTSRequest')) { 
     129                sfTSRequest($order_id); 
     130            } 
    126131        } 
    127132 
     
    192197 
    193198            //その他情報の取得 
    194  
    195199            $other_data = $objQuery->get("dtb_order", "memo02", "order_id = ? ", array($order_id)); 
    196200            if($other_data != "") { 
     
    216220            if($total != "") { 
    217221                $this->tpl_aff_option.= "|total=$total"; 
     222            } 
     223 
     224            // TS連携モジュールの実行 
     225            if (function_exists('sfTSRequest')) { 
     226                sfTSRequest($order_id); 
    218227            } 
    219228        } 
  • branches/version-2/data/include/module.inc

    r17147 r17179  
    5353    'mdl_opebuilder', 
    5454    'mdl_souraku', 
     55    'mdl_ts', 
    5556); 
    5657 
Note: See TracChangeset for help on using the changeset viewer.