Subversion Repositories SmartDukaan

Rev

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

Rev 30637 Rev 30644
Line 640... Line 640...
640
		System.out.println("Amount\tReference\tReferenceType\tTimestamp\tDescription");
640
		System.out.println("Amount\tReference\tReferenceType\tTimestamp\tDescription");
641
		for (UserWalletHistory uwh : uwhs) {
641
		for (UserWalletHistory uwh : uwhs) {
642
			System.out.println(String.format("%d\t%d\t%s\t%s\t%s", uwh.getAmount(), uwh.getReference(),
642
			System.out.println(String.format("%d\t%d\t%s\t%s\t%s", uwh.getAmount(), uwh.getReference(),
643
					uwh.getReferenceType(), uwh.getTimestamp().toString(), uwh.getDescription()));
643
					uwh.getReferenceType(), uwh.getTimestamp().toString(), uwh.getDescription()));
644
		}
644
		}
645
		LOGGER.info("Schemes process successfully.");
645
		LOGGER.info("Schemes processed successfully.");
646
		if (dryRun) {
646
		if (dryRun) {
647
			throw new Exception();
647
			throw new Exception();
648
		}
648
		}
649
	}
649
	}
650
 
650