Changeset 14703


Ignore:
Timestamp:
2007/06/15 18:55:13 (19 years ago)
Author:
kakinaka
Message:
 
Location:
branches/dev/data/downloads/module/mdl_zero
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/downloads/module/mdl_zero/mdl_zero.inc

    r14684 r14703  
    1010/**** ¢§Äê¿ôÀë¸À *********************************************************************************************/ 
    1111 
    12 define("MDL_ZERO_ID", 6); 
     12define("MDL_ZERO_ID", 8); 
    1313define("ZERO_PC", 1);        // dtb_payment ¤Î¶èʬÍÑ 
    1414define("ZERO_MOBILE", 2);    // dtb_payment ¤Î¶èʬÍÑ 
     15define("ZERO_CREDIT_ID", 1);      // dtb_payment ¤Î¶èʬÍÑ 
    1516 
    1617 
  • branches/dev/data/downloads/module/mdl_zero/mdl_zero.php

    r14701 r14703  
    177177                memo01 as pc_send,  
    178178                memo02 as pc_clientip, 
    179                 memo03 as mobile_send,  
    180                 memo04 as mobile_clientip 
     179                memo04 as mobile_send,  
     180                memo05 as mobile_clientip 
    181181            FROM dtb_payment WHERE module_id = ? " . $where; 
    182182    $arrRet = $objQuery->getall($sql, $arrVal); 
     
    207207        $arrData["memo01"] = $_POST["pc_send"]; 
    208208        $arrData["memo02"] = $_POST["pc_clientip"]; 
     209        $arrData["memo03"] = ZERO_CREDIT_ID; 
    209210        $arrData["del_flg"] = "0"; 
    210211    } 
     
    218219        $arrData["module_id"] = MDL_ZERO_ID; 
    219220        $arrData["module_path"] = MODULE_PATH . "mdl_zero/card.php"; 
    220         $arrData["memo03"] = $_POST["mobile_send"]; 
    221         $arrData["memo04"] = $_POST["mobile_clientip"]; 
     221        $arrData["memo03"] = ZERO_CREDIT_ID; 
     222        $arrData["memo04"] = $_POST["mobile_send"]; 
     223        $arrData["memo05"] = $_POST["mobile_clientip"]; 
    222224        $arrData["del_flg"] = "0"; 
    223225    } 
Note: See TracChangeset for help on using the changeset viewer.