Changeset 8070


Ignore:
Timestamp:
2006/11/09 18:40:10 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk/data/downloads/module/mdl_epsilon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/downloads/module/mdl_epsilon/mdl_epsilon.inc

    r8037 r8070  
    8484 * °ú¿ô2    ¡§$arrData      ޥޥޥ POST¥Ç¡¼¥¿ 
    8585 **************************************************************************************************************/ 
    86 function sfPostPaymentData($order_url, $arrData){ 
     86function sfPostPaymentData($order_url, $arrData, $err_page = true){ 
    8787    $arrVal = array(); 
    8888     
     
    9191     
    9292    // ¤Ê¤Ë¤âÊ֤äƤ³¤Ê¤ì¤Ð¡¢¥¨¥é¡¼ 
    93     if ($response == "") { 
     93    if ($response == "" and $err_page) { 
    9494        // ¥¨¥é¡¼²èÌ̤òɽ¼¨¤¹¤ë¡£ 
    9595        $_SESSION['site']['now_page'] =""; 
  • temp/trunk/data/downloads/module/mdl_epsilon/mdl_epsilon.php

    r8068 r8070  
    182182     
    183183    // Àܳ¥Á¥§¥Ã¥¯¤ò¹Ô¤¦ 
     184    $arrErr["connect"] = lfChkConnect(); 
    184185 
    185186    return $arrErr; 
     
    219220    // ¥³¥ó¥Ó¥Ë»ØÄ꤬¤¢¤ì¤Ð¥³¥ó¥Ó¥Ëʬ¥ë¡¼¥×¤·¡¢¥Á¥§¥Ã¥¯¤ò¹Ô¤¦ 
    220221    if(count($_POST["convenience"]) > 0){ 
    221         // Á÷¿®¥Ç¡¼¥¿À¸À® 
    222         $arrSendData = array( 
    223             'contract_code' => $_POST["code"],      // ·ÀÌ󥳡¼¥É 
    224             'user_id' => "connect_test",            // ¥æ¡¼¥¶ID 
    225             'user_name' => "Àܳ¥Æ¥¹¥È",            // ¥æ¡¼¥¶Ì¾ 
    226             'user_mail_add' => $email,              // ¥á¡¼¥ë¥¢¥É¥ì¥¹ 
    227             'st_code' => $st_code,                  // ·èºÑ¶èʬ 
    228             'process_code' => '3',                  // ½èÍý¶èʬ(¸ÇÄê) 
    229             'xml' => '1',                           // ±þÅú·Á¼°(¸ÇÄê) 
    230      
    231             'conveni_code' => $_POST["convenience"],                            // ¥³¥ó¥Ó¥Ë¥³¡¼¥É 
    232             'user_tel' => $_POST["order_tel01"].$_POST["order_tel02"].$_POST["order_tel03"],    // ÅÅÏÃÈÖ¹æ 
    233             'user_name_kana' => $_POST["order_kana01"].$_POST["order_kana02"],                  // »á̾(¥«¥Ê) 
    234             'haraikomi_mail' => 0,                                              // ʧ¹þ¥á¡¼¥ë(Á÷¿®¤·¤Ê¤¤) 
    235         ); 
    236          
     222        foreach($_POST["convenience"] as $key => $val){ 
     223            // Á÷¿®¥Ç¡¼¥¿À¸À® 
     224            $arrSendData = array( 
     225                'conveni_code' => $val,             // ¥³¥ó¥Ó¥Ë¥³¡¼¥É 
     226                'user_tel' => "0300000000",         // ÅÅÏÃÈÖ¹æ 
     227                'user_name_kana' => "Á÷¿®¥Æ¥¹¥È",   // »á̾(¥«¥Ê) 
     228                'haraikomi_mail' => 0,              // ʧ¹þ¥á¡¼¥ë(Á÷¿®¤·¤Ê¤¤) 
     229            ); 
     230        } 
    237231    } 
    238232     
Note: See TracChangeset for help on using the changeset viewer.