2012-10-30 4 views
1

지연된 체인 페이팔 지불 시스템을 사용하고 있습니다. 기본 수신기의 양이 다른 체인 수신기 amountsError 코드의 총보다 크거나 같아야합니다 : 579017Error 심각도 : ErrorError 도메인 : PLATFORMError 카테고리 : 응용 프로그램 나는적응 형 페이팔 지불 오류 코드 : 579017

자세한 오류 메시지 같은 오류가 발생했습니다

기본 수신기가 보조 수신기보다 양이 적은 얻는 양을 보내는 방법

내 시나리오 차 수신기는 t에서 양을 얻을 수있다 그는 발신자이며 서비스 금액을 받고 보조 리시버로 금액을 보냅니다.

는 사용자의 도서 예를 들어 티켓은 사이트 소유자가 수신기에서 전액을 얻고 어떤 비율로 자신의 서비스 요금을 내가 지연에 사용되는 부동산 소유주 체인 지불

내 코드에 나머지 금액을 보내 의미 이 (가)

$receiverEmailArray = array(
     '[email protected]', 
     '[email protected]', 
     '', 
     '', 
     '' 
     ); 

// TODO - specify the receiver amounts as the amount of money, for example, '5' or '5.55' 
//  remove or set to an empty string the array entries for receivers that you do not have 
$receiverAmountArray = array(
     '10', 
     '100', 
     '', 
     '', 
     '' 
     ); 

// TODO - Set ONLY 1 receiver in the array to 'true' as the primary receiver, and set the 
//  other receivers corresponding to those indicated in receiverEmailArray to 'false' 
//  make sure that you do NOT specify more values in this array than in the receiverEmailArray 
$receiverPrimaryArray = array(
     'true', 
     'false' 
     ); 

// TODO - Set invoiceId to uniquely identify the transaction associated with each receiver 
//  set the array entries with value for receivers that you have 
//  each of the array values must be unique across all Pay calls made by the caller's API credentials 
$receiverInvoiceIdArray = array(
     '', 
     '', 
     '', 
     '', 
     '', 
     '' 
     ); 

답변

1

초등 회는 전체 금액과 2 차 금액을받습니다. 총 금액이 $ 100.00이고 1 차가 10 %를 유지하면 은 1 차가 100.00이되고 2 차는 90.00이됩니다.

관련 문제