예제 #1
0
파일: robokassa.php 프로젝트: Ibrahim1/aec
 public function parseNotification($post)
 {
     $response = array();
     $response['amount_paid'] = number_format($post['OutSum'], 2);
     $response['invoice'] = aecInvoiceHelper::InvoiceNumberfromId($post['InvId']);
     return $response;
 }
예제 #2
0
 public function parseNotification($post)
 {
     $response = array();
     $response['invoice'] = aecInvoiceHelper::InvoiceNumberfromId($post['INVOICE']);
     $response['amount_paid'] = $post['AMOUNT'];
     return $response;
 }