Subversion Repositories SmartDukaan

Rev

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

Rev 34770 Rev 34836
Line 1995... Line 1995...
1995
                    cnAmount = creditNoteLineRepository.selectAllByCreditNoteIds(creditNoteIds).stream().collect(Collectors.summingDouble(CreditNoteLine::getAmount));
1995
                    cnAmount = creditNoteLineRepository.selectAllByCreditNoteIds(creditNoteIds).stream().collect(Collectors.summingDouble(CreditNoteLine::getAmount));
1996
                }
1996
                }
1997
                if (cnAmount != walletAmount) {
1997
                if (cnAmount != walletAmount) {
1998
                    System.out.println(fofoId + "\t" + yearMonth + "\t" + walletAmount + "\t" + cnAmount);
1998
                    System.out.println(fofoId + "\t" + yearMonth + "\t" + walletAmount + "\t" + cnAmount);
1999
                }
1999
                }
2000
 
-
 
2001
 
-
 
2002
            }
2000
            }
2003
        }
2001
        }
2004
 
2002
 
2005
    }
2003
    }
2006
 
2004
 
2007
    public void employeeTrackingReport() throws Exception{
2005
    public void yesterdayTrackingReport() throws Exception{
2008
        locationTrackingService.generateReport(LocalDate.now().minusDays(1).toString(),LocalDate.now().minusDays(1).toString());
2006
        locationTrackingService.generateReport(0, LocalDate.now().minusDays(1).toString(),LocalDate.now().minusDays(1).toString());
-
 
2007
    }
-
 
2008
 
-
 
2009
    public void dailyTrackingReport() throws Exception{
-
 
2010
        locationTrackingService.generateReport(0, LocalDate.now().toString(),LocalDate.now().toString());
2009
    }
2011
    }
2010
}
2012
}
2011
 
2013
 
2012
//7015845171
2014
//7015845171
2013
2015