Changeset 7902 for temp/trunk/data
- Timestamp:
- 2006/11/08 20:22:30 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/downloads/module/mdl_epsilon/convenience.php
r7901 r7902 79 79 80 80 switch($_POST["mode"]){ 81 case "send":82 $arrErr = $objFormParam->checkError();83 sfprintr($arrErr);84 85 // Á÷¿®¥Ç¡¼¥¿À¸À®86 $arrSendData = array(87 'contract_code' => $arrPayment[0]["memo01"], // ·ÀÌ󥳡¼¥É88 'user_id' => $arrData["customer_id"], // ¥æ¡¼¥¶ID89 'user_name' => $arrData["order_name01"].$arrData["order_name02"], // ¥æ¡¼¥¶Ì¾90 'user_mail_add' => $arrData["order_email"], // ¥á¡¼¥ë¥¢¥É¥ì¥¹91 'order_number' => $arrData["order_id"], // ¥ª¡¼¥À¡¼ÈÖ¹æ92 'item_code' => $arrMainProduct["product_code"], // ¾¦ÉÊ¥³¡¼¥É(Âåɽ)93 'item_name' => $arrMainProduct["name"], // ¾¦ÉÊ̾(Âåɽ)94 'item_price' => $arrData["payment_total"], // ¾¦ÉʲÁ³Ê(Àǹþ¤ßÁí³Û)95 'st_code' => $arrPayment[0]["memo04"], // ·èºÑ¶èʬ96 'mission_code' => '1', // ²Ý¶â¶èʬ(¸ÇÄê)97 'process_code' => '1', // ½èÍý¶èʬ(¸ÇÄê)98 'xml' => '1', // ±þÅú·Á¼°(¸ÇÄê)99 100 'conveni_code' => $_POST["convenience"], // ¥³¥ó¥Ó¥Ë¥³¡¼¥É101 'user_tel' => $arrData["deliv_tel01"].$arrData["deliv_tel02"].$arrData["deliv_tel03"], // ¥³¥ó¥Ó¥Ë¥³¡¼¥É102 'user_name_kana' => $arrData["order_kana01"].$arrData["order_kana02"], // ¥³¥ó¥Ó¥Ë¥³¡¼¥É103 'haraikomi_mail' => 0, // ʧ¹þ¥á¡¼¥ë(Á÷¿®¤·¤Ê¤¤)104 105 'memo1' => ECCUBE_PAYMENT, // ͽÈ÷01106 'memo2' => '' // ͽÈ÷02107 108 );109 110 sfprintr($arrSendData);111 sfprintr($arrData);112 // ¥Ç¡¼¥¿Á÷¿®113 sfPostPaymentData($order_url, $arrSendData);114 break;115 116 81 //Ìá¤ë 117 82 case 'return': … … 122 87 exit; 123 88 break; 89 90 case "send": 91 $arrErr = array(); 92 $arrErr = $objFormParam->checkError(); 93 sfprintr($arrErr); 94 95 if(count($arrErr) > 0){ 96 // Á÷¿®¥Ç¡¼¥¿À¸À® 97 $arrSendData = array( 98 'contract_code' => $arrPayment[0]["memo01"], // ·ÀÌ󥳡¼¥É 99 'user_id' => $arrData["customer_id"], // ¥æ¡¼¥¶ID 100 'user_name' => $arrData["order_name01"].$arrData["order_name02"], // ¥æ¡¼¥¶Ì¾ 101 'user_mail_add' => $arrData["order_email"], // ¥á¡¼¥ë¥¢¥É¥ì¥¹ 102 'order_number' => $arrData["order_id"], // ¥ª¡¼¥À¡¼ÈÖ¹æ 103 'item_code' => $arrMainProduct["product_code"], // ¾¦ÉÊ¥³¡¼¥É(Âåɽ) 104 'item_name' => $arrMainProduct["name"], // ¾¦ÉÊ̾(Âåɽ) 105 'item_price' => $arrData["payment_total"], // ¾¦ÉʲÁ³Ê(Àǹþ¤ßÁí³Û) 106 'st_code' => $arrPayment[0]["memo04"], // ·èºÑ¶èʬ 107 'mission_code' => '1', // ²Ý¶â¶èʬ(¸ÇÄê) 108 'process_code' => '1', // ½èÍý¶èʬ(¸ÇÄê) 109 'xml' => '1', // ±þÅú·Á¼°(¸ÇÄê) 110 111 'conveni_code' => $_POST["convenience"], // ¥³¥ó¥Ó¥Ë¥³¡¼¥É 112 'user_tel' => $arrData["deliv_tel01"].$arrData["deliv_tel02"].$arrData["deliv_tel03"], // ¥³¥ó¥Ó¥Ë¥³¡¼¥É 113 'user_name_kana' => $arrData["order_kana01"].$arrData["order_kana02"], // ¥³¥ó¥Ó¥Ë¥³¡¼¥É 114 'haraikomi_mail' => 0, // ʧ¹þ¥á¡¼¥ë(Á÷¿®¤·¤Ê¤¤) 115 116 'memo1' => ECCUBE_PAYMENT, // ͽÈ÷01 117 'memo2' => '' // ͽÈ÷02 118 119 ); 120 121 // ¥Ç¡¼¥¿Á÷¿® 122 sfPostPaymentData($order_url, $arrSendData); 123 break; 124 } 124 125 125 126 default:
Note: See TracChangeset
for help on using the changeset viewer.
