Changeset 17179
- Timestamp:
- 2008/03/24 18:30:56 (15 years ago)
- Location:
- branches/version-2/data
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2/data/Smarty/templates/default/shopping/confirm.tpl
r16999 r17179 225 225 </table> 226 226 227 <!--{if 'sfTSRequest'|function_exists}--> 228 <!--{''|sfTSPrintOrderBox}--> 229 <!--{/if}--> 230 227 231 <div class="tblareabtn"> 228 232 <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> -
branches/version-2/data/class/pages/shopping/LC_Page_Shopping_Complete.php
r16985 r17179 124 124 $this->tpl_aff_option.= "|total=$total"; 125 125 } 126 127 // TradeSafe連携用 128 if (function_exists('sfTSRequest')) { 129 sfTSRequest($order_id); 130 } 126 131 } 127 132 … … 192 197 193 198 //その他情報の取得 194 195 199 $other_data = $objQuery->get("dtb_order", "memo02", "order_id = ? ", array($order_id)); 196 200 if($other_data != "") { … … 216 220 if($total != "") { 217 221 $this->tpl_aff_option.= "|total=$total"; 222 } 223 224 // TS連携モジュールの実行 225 if (function_exists('sfTSRequest')) { 226 sfTSRequest($order_id); 218 227 } 219 228 } -
branches/version-2/data/include/module.inc
r17147 r17179 53 53 'mdl_opebuilder', 54 54 'mdl_souraku', 55 'mdl_ts', 55 56 ); 56 57
Note: See TracChangeset
for help on using the changeset viewer.