X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment.git;a=blobdiff_plain;f=notes_for_module_writers_v3;h=aaa12233f12bb9fdbf36e363e0bda23b4674e8c1;hp=7313e1108e481aa6fd2767885c319d217ff0ee0a;hb=95f57c2acd7654953f1dab8e208170ba91fa6e79;hpb=6af0eaebc5acba3715b2575b69c85f3ad5c93a77 diff --git a/notes_for_module_writers_v3 b/notes_for_module_writers_v3 index 7313e11..aaa1223 100644 --- a/notes_for_module_writers_v3 +++ b/notes_for_module_writers_v3 @@ -50,6 +50,7 @@ These are the module writer's notes for v3. See the regular 'supported_types' => [ qw( CC ECHECK ) ], 'token_support' => 0, #card storage/tokenization support 'test_transaction' => 0, #set true if ->test_transaction(1) works + 'partial_auth' => 1, #can gateway partial auth (new in 3.04) 'supported_actions' => [ 'Normal Authorization', 'Authorization Only', @@ -134,8 +135,8 @@ These are the module writer's notes for v3. See the regular return is_success 0. + If this transaction flag is set, the application can handle a partial authorization. Make sure the flag to enable them is passed to the - gateway, if necessary. When a partial authorization is received, the - amount must be returned as "partial_auth_amount": + gateway, if necessary. When a partial authorization is received, return + is_success 1, and the amount as "partial_auth_amount": $self->partial_auth_amount( $partial_amount ); For normal full authorizations, "partial_auth_amount" must not be set.