Subversion Repositories SmartDukaan

Rev

Rev 20199 | Rev 22350 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20199 Rev 21934
Line 1595... Line 1595...
1595
		$('#chequeDetails').hide();
1595
		$('#chequeDetails').hide();
1596
		$('#couponDetails').hide();
1596
		$('#couponDetails').hide();
1597
	}
1597
	}
1598
}
1598
}
1599
 
1599
 
-
 
1600
function verifyDoc(userId){
-
 
1601
	var gstin = $("#gstin").val();
-
 
1602
	params = {gstin:gstin, userId:userId}
-
 
1603
	$.ajax({
-
 
1604
        type : "GET",
-
 
1605
        url : "/crm/verify-doc",
-
 
1606
        data : params,
-
 
1607
        success : function(response) {
-
 
1608
        	alert(response);
-
 
1609
        	location.reload();
-
 
1610
        },
-
 
1611
        error : function() {
-
 
1612
			alert("Unable to split returnorder");
-
 
1613
		}
-
 
1614
    });
-
 
1615
}
1600
//
1616
//
1601
1617