Subversion Repositories SmartDukaan

Rev

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

Rev 27892 Rev 27896
Line 649... Line 649...
649
		processScheme(startDate, endDate, dryRun);
649
		processScheme(startDate, endDate, dryRun);
650
	}
650
	}
651
	
651
	
652
	public void processSchemeOut(List<String> invoiceNumbers) throws Exception {
652
	public void processSchemeOut(List<String> invoiceNumbers) throws Exception {
653
		for(String invoiceNumber : invoiceNumbers) {
653
		for(String invoiceNumber : invoiceNumbers) {
-
 
654
			System.out.println("Invoice Number - " +  invoiceNumber);
654
			FofoOrder fofoOrder = fofoOrderRepository.selectByInvoiceNumber(invoiceNumber);
655
			FofoOrder fofoOrder = fofoOrderRepository.selectByInvoiceNumber(invoiceNumber);
655
			schemeService.processSchemeOut(fofoOrder.getId(), fofoOrder.getFofoId());
656
			schemeService.processSchemeOut(fofoOrder.getId(), fofoOrder.getFofoId());
656
		}
657
		}
657
	}
658
	}
658
 
659