Subversion Repositories SmartDukaan

Rev

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

Rev 21241 Rev 21243
Line 60... Line 60...
60
		String result = ""; 
60
		String result = ""; 
61
		if (processBulkBilling.processReport()){
61
		if (processBulkBilling.processReport()){
62
			result = processBulkBilling.checkBillingDetails();
62
			result = processBulkBilling.checkBillingDetails();
63
		}
63
		}
64
		else{
64
		else{
65
			result = "Unable to validate uploaded sheet";
65
			result = "Unable to validate uploaded sheet or duplicate serial numbers in sheet.";
66
		}
66
		}
67
		response.setContentType("text/html");
67
		response.setContentType("text/html");
68
		response.getWriter().write(result);
68
		response.getWriter().write(result);
69
	}
69
	}
70
	
70