Changeset 17387
- Timestamp:
- 2008/07/01 11:36:14 (14 years ago)
- Location:
- branches/version-2/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2/data/Smarty/templates/default/admin/order/edit.tpl
r17377 r17387 86 86 <!--{* SPS連携用 *}--> 87 87 <!--{assign var=sps_path value=`$smarty.const.MODULE_PATH`mdl_sps/templates/sps_request.tpl}--> 88 <!--{if file_exists($sps_path) && $paymentType[0].module_ id == $smarty.const.MDL_SPS_ID&& $paymentType[0].memo03 == $smarty.const.SPS_CREDIT}-->88 <!--{if file_exists($sps_path) && $paymentType[0].module_code == $smarty.const.MDL_SPS_CODE && $paymentType[0].memo03 == $smarty.const.SPS_CREDIT}--> 89 89 <!--{include file=$sps_path}--> 90 90 <!--{/if}--> -
branches/version-2/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php
r17379 r17387 225 225 */ 226 226 $objQuery = new SC_Query(); 227 $this->paymentType = $objQuery->getall("SELECT module_ id, memo03 FROM dtb_payment WHERE payment_id = ? ", array($this->arrForm["payment_id"]['value']));227 $this->paymentType = $objQuery->getall("SELECT module_code, memo03 FROM dtb_payment WHERE payment_id = ? ", array($this->arrForm["payment_id"]['value'])); 228 228 $objDate = new SC_Date(); 229 229 $objDate->setStartYear(RELEASE_YEAR);
Note: See TracChangeset
for help on using the changeset viewer.