2016-03-17 47 views
1

我使用大脑树在我的网站上支付网关,最初我授权支付几分钟后,我会交给结算,但它给我们以下错误:脑树支付网关:金额结算

结算金额:7 总授权量为:[量] => 187.50

我得到以下错误:

**[_attribute:private] => amount 
[_code:private] => 91551 
[_message:private] => Settlement amount cannot be less than the service fee amount.** 

有关详情,请参阅该我得到了响应:

Braintree_Result_Error Object 
(
    [success] => 
    [_attributes] => Array 
     (
      [errors] => Braintree_Error_ErrorCollection Object 
       (
        [_errors:private] => Braintree_Error_ValidationErrorCollection Object 
         (
          [_errors:private] => Array 
           (
           ) 

          [_nested:private] => Array 
           (
            [transaction] => Braintree_Error_ValidationErrorCollection Object 
             (
              [_errors:private] => Array 
               (
                [0] => Braintree_Error_Validation Object 
                 (
                  [_attribute:private] => amount 
                  [_code:private] => 91551 
                  [_message:private] => Settlement amount cannot be less than the service fee amount. 
                 ) 

               ) 

              [_nested:private] => Array 
               (
               ) 

              [_collection:protected] => Array 
               (
               ) 

             ) 

           ) 

          [_collection:protected] => Array 
           (
           ) 

         ) 

       ) 

      [params] => Array 
       (
        [transaction] => Array 
         (
          [amount] => 7 
         ) 

        [controller] => transactions 
        [action] => submit_for_settlement 
        [merchantId] => 6tfkyqyqnqh6ydwk 
        [id] => 92vsvs 
       ) 

      [message] => Settlement amount cannot be less than the service fee amount. 
      [transaction] => Braintree_Transaction Object 

那么,有没有提交任何数额的时间限制?

回答

0

最后,我得到了我的问题的答案

您遇到(91551结算量不能小于业务费用金额)事务的验证错误92vsvs是因为你试图解决该交易为$ 7.00这低于32.61美元的服务费金额。

创建市场交易并传递服务费时,您可以选择初始授权总交易金额并稍后提交较小金额。问题是指定的服务费用无法更改或降低,因此您需要提交至少能够支付此服务费用的金额。

例如,交易92vsvs授权为187.50美元,服务费为32.61美元。至少,您可以提交32.61美元的结算费用。您可以提交高于32.61美元的任何金额进行结算,但不会更低。如果您仅提交32.61美元的结算,则不会有资金发送给子商户,因为在收取服务费后没有剩余资金。