Skip to content

Commit b319477

Browse files
Feature/plugins 269 (#288)
* [PLUGINS-269]: Billing address added while creating the card token. Made some changes to prevent the billing address's values from deleting from the form. * [PLUGINS-269]: Fixed formatting.
1 parent 742b9b6 commit b319477

File tree

1 file changed

+25
-13
lines changed

1 file changed

+25
-13
lines changed

assets/javascripts/omise-payment-form-handler.js

+25-13
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
}
2323

2424
$form.prepend( $ulError );
25-
$("html, body").animate({
26-
scrollTop:0
27-
},"slow");
25+
$("html, body").animate({ scrollTop:0 },"slow");
2826
}
2927

3028
function omiseFormHandler(){
@@ -70,19 +68,30 @@
7068
}
7169
});
7270

73-
let errors = [],
74-
omise_card = {},
71+
let errors = [],
72+
omise_card = {},
7573
omise_card_number_field = 'number',
76-
omise_card_fields = {
77-
'name' : $( '#omise_card_name' ),
78-
'number' : $( '#omise_card_number' ),
74+
omise_card_state_field = 'state',
75+
omise_card_fields = {
76+
'name' : $( '#omise_card_name' ),
77+
'number' : $( '#omise_card_number' ),
7978
'expiration_month' : $( '#omise_card_expiration_month' ),
80-
'expiration_year' : $( '#omise_card_expiration_year' ),
81-
'security_code' : $( '#omise_card_security_code' )
79+
'expiration_year' : $( '#omise_card_expiration_year' ),
80+
'security_code' : $( '#omise_card_security_code' ),
81+
'city' : $( '#billing_city' ),
82+
'state' : $( '#billing_state' ),
83+
'country' : $( '#billing_country' ),
84+
'postal_code' : $( '#billing_postcode' ),
85+
'street1' : $( '#billing_address_1' )
8286
};
8387

8488
$.each( omise_card_fields, function( index, field ) {
85-
omise_card[ index ] = (index === omise_card_number_field) ? field.val().replace(/\s/g, '') : field.val();
89+
if (index === omise_card_state_field) {
90+
omise_card[ index ] = field.find(":selected").text();
91+
} else {
92+
omise_card[ index ] = (index === omise_card_number_field) ? field.val().replace(/\s/g, '') : field.val();
93+
}
94+
8695
if ( "" === omise_card[ index ] ) {
8796
errors.push( omise_params[ 'required_card_' + index ] );
8897
}
@@ -101,15 +110,18 @@
101110
Omise.createToken("card", omise_card, function (statusCode, response) {
102111
if (statusCode == 200) {
103112
$.each( omise_card_fields, function( index, field ) {
104-
field.val( '' );
113+
const sensitiveDataIndex = ['name', 'number', 'expiration_year', 'expiration_month', 'security_code'];
114+
if (sensitiveDataIndex.includes(index)) {
115+
field.val( '' );
116+
}
105117
} );
106118
$form.append( '<input type="hidden" class="omise_token" name="omise_token" value="' + response.id + '"/>' );
107119
$form.submit();
108120
} else {
109121
handleTokensApiError(response);
110122
};
111123
});
112-
}else{
124+
} else {
113125
showError( omise_params.cannot_load_omisejs + '<br/>' + omise_params.check_internet_connection );
114126
$form.unblock();
115127
}

0 commit comments

Comments
 (0)