Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
cc expiration date
I'm trying to set credit card expiration date from string '12/2010' during post(suitelet) but it always invalid date format because it will treat as 12 divided by 2010. see my code below.
function createSwipeForm(request,response){ if(request.getMethod()== 'GET'){ var form = nlapiCreateForm('Swipe Credit Card', true); var field = form.addField('custpage_ccswipe','text','Card #'); field.setLayoutType('normal','startcol'); response.writePage(form); } else { var swipe = request.getParameter('custpage_ccswipe'); var s = swipe.indexOf("%B"); var e = swipe.indexOf("?"); var track1 = swipe.substring(2,e); var arrStr = track1.split('^'); var ccNum = arrStr[0]; var nameOnCard = arrStr[1]; var cExp = arrStr[2].substring(0,4); var mon = cExp.substring(2,4); var yr = cExp.substring(0,2); var cExpDate = mon.toString() + '/20' + yr.toString(); response.write(parseSwipe(ccNum,nameOnCard,cExpDate)); return true; //nlapiLogExecution('DEBUG', 'Card Swipe', request.getParameter('custpage_ccswipe')); } } function parseSwipe(ccNum,ccName,expireDate){ nlapiLogExecution('DEBUG', 'Credit Card, Name', 'Expire Date = ' + ccNum + ccName + expireDate); var html = "<html>n"; html 0