VRFS-2480 : Card number was getting whacked from submittal due to a bad javascript assignment.
This commit is contained in:
parent
b35f3ef9ef
commit
9e95f75e2e
|
|
@ -318,15 +318,15 @@
|
|||
billing_info.month = card_month;
|
||||
billing_info.year = card_year;
|
||||
billing_info.verification_value = card_verify;
|
||||
|
||||
|
||||
|
||||
if (shipping_as_billing) {
|
||||
shipping_info = billing_info;
|
||||
shipping_info = $.extend({},billing_info);
|
||||
delete shipping_info.number;
|
||||
delete shipping_info.month;
|
||||
delete shipping_info.year;
|
||||
delete shipping_info.verification_value;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
shipping_info.first_name = shipping_first_name;
|
||||
shipping_info.last_name = shipping_last_name;
|
||||
shipping_info.address1 = shipping_address1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue