Giter Site home page Giter Site logo

Comments (13)

jwilliamsen avatar jwilliamsen commented on June 16, 2024 1

Ok I do see that the error message that says "Please provide valid expiration year." is coming back from Authorize net. Thanks for pointing me in the right direction.

from card.

melloware avatar melloware commented on June 16, 2024

Does it not like the two digit year? Or the format of "10/22" ? Not sure what it is not liking unless there is more in the error message from the vendor?

from card.

jwilliamsen avatar jwilliamsen commented on June 16, 2024

When it happened to me, I tried all different formats and it was never accepted. This is an old screen shot so it was not a date in the past at the time. Should I attach the card.js file?

from card.

melloware avatar melloware commented on June 16, 2024

You can try and use a newer version on our site but it seems like that error message is coming from your vendor and not from card.js So you need to debug the value being sent to the payment vendor API and why its being denied.

from card.

jwilliamsen avatar jwilliamsen commented on June 16, 2024

I'm afraid to change it out since I don't know what he did to it. I will take a look at the input.

from card.

melloware avatar melloware commented on June 16, 2024

i think the bug is right here:

expirationDate = $.trim($("#txtExpirationDate").val()).replace(" / ", "");

He is replacing " / " with "" so the number becomes 1023 instead of 10/23 and then it splits by first and second 2 digits "10" then "23"

from card.

jwilliamsen avatar jwilliamsen commented on June 16, 2024

Input form // php

<PRE><plaintext>
<!--
<label class="sr-only" for="txtExpirationDate">Exp Date:</label>
<input type="tel" class="checkout-input checkout-exp" RequiredDisplayName="Expiration Date" placeholder="MM/YY" id="txtExpirationDate" name="expiry" maxlength="7" onblur="evaluateField(this)">
-->
</plaintext></PRE>

// javascript/ajax

function evaluateField(obj){
var jObj = $(obj);
if(jObj.attr("RequiredDisplayName") != ""){
  jObj.css("border-color", ($.trim(jObj.val()) == "" ? "red" : "#b3c0e2 #bcc5e2 #c0ccea"));
}
		
function evaluateFormFields()...	
expirationDate = $.trim($("#txtExpirationDate").val()).replace(" / ", "");

function sendCCDataToAnet()...	
var ccExpireMonth = expirationDate.substr(0,2);
var ccExpireYear = expirationDate.substr(2,2);

from card.

jwilliamsen avatar jwilliamsen commented on June 16, 2024

Most of the orders go through ok. It is a very rare problem (I HOPE!) I can't get the input to show but it's there.

from card.

melloware avatar melloware commented on June 16, 2024

Yep you will need to debug or throw an error if ccExpireMonth is not 2 digits and ccExpireYear is not 2 digits so you can get to the bottom of it.

from card.

jwilliamsen avatar jwilliamsen commented on June 16, 2024

What is card.js expecting to receive?

Card.prototype.attachHandlers = function() {
var expiryFilters, numberInputFilters;
numberInputFilters = [this.validToggler('cardNumber')];
if (this.options.masks.cardNumber) {
numberInputFilters.push(this.maskCardNumber);
}
bindVal(this.$numberInput, this.$numberDisplay, {
fill: false,
filters: numberInputFilters
});
QJ.on(this.$numberInput, 'payment.cardType', this.handle('setCardType'));
expiryFilters = [
function(val) {
return val.replace(/(\s+)/g, '');
}
];
expiryFilters.push(this.validToggler('cardExpiry'));
bindVal(this.$expiryInput, this.$expiryDisplay, {
join: function(text) {
if (text[0].length === 2 || text[1]) {
return "/";
} else {
return "";
}
},
filters: expiryFilters
});

from card.

melloware avatar melloware commented on June 16, 2024

you will have to debug,..

from card.

jwilliamsen avatar jwilliamsen commented on June 16, 2024

Ok thank you for your help

from card.

melloware avatar melloware commented on June 16, 2024

Post back here if you figure it out.

from card.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.