Exemplo n.º 1
0
        public async Task <IEnumerable <BP_Weekly_Timesheet__c> > GetTimeSheets(DateTime startDate, DateTime lastModifiedDate)
        {
            const int batchReadLimit = 1000;
            var       qry            = new SalesForceQuery <BP_Weekly_Timesheet__c, BP_Weekly_Timesheet__c>(_forceClient, null);

            Func <string, string> soql = lastId => $@"
                select 
                    Id, 
                    Name, 
                    Contact_Last_First_Name__c, 
                    Submitted_By__c, 
                    start_date__c, 
                    status__c,
                    LastModifiedDate,
                    LastModifiedBy.FirstName,
                    LastModifiedBy.LastName
                from 
                    BP_Weekly_Timesheet__c 
                where 
                    start_date__c = {startDate.ToString("yyyy-MM-dd")} 
                    and Id > '{lastId}' 
                    and LastModifiedDate >= {lastModifiedDate.ToString("yyyy-MM-dd") + "T00:00:00.000+0000"}
                order by 
                    Id
                limit {batchReadLimit}
                ".Trim();

            return(await qry.GetRecords(soql));
        }
Exemplo n.º 2
0
        public async Task <IEnumerable <BP_Timesheet_Activity__c> > GetTimeSheetActivities(DateTime startDate, DateTime lastModifiedDate)
        {
            try
            {
                const int batchReadLimit = 500;
                var       qry            = new SalesForceQuery <BP_Timesheet_Activity__c, BP_Timesheet_Activity__c>(_forceClient, null);

                Func <string, string> soql = lastId => $@"
                    select 
                        Id,
                        Timesheet_Reference__r.Submitted_By__c,  
                        TimeSheet_Reference__c, 
                        BP_Project__c, 
                        Job_Order__c, 
                        BP_Activity__c, 
                        Timesheet_Reference__r.Start_Date__c,
                        Start_Time__c, 
                        End_Time__c,
                        LastModifiedDate,
                        LastModifiedById,
                        LastModifiedBy.FirstName,
                        LastModifiedBy.LastName
                    from 
                        BP_Timesheet_Activity__c 
                    where 
                        Timesheet_Reference__r.Start_Date__c = {startDate.ToString("yyyy-MM-dd")} 
                        and LastModifiedDate >= {lastModifiedDate.ToString("yyyy-MM-dd") + "T00:00:00.000+0000"}
                        and Id > '{lastId}' 
                    order by Id 
                        limit {batchReadLimit}
                    ".Trim();

                return(await qry.GetRecords(soql));
            }
            catch (Exception e)
            {
                _logger.Error(e, e.Message);
                return(null);
            }
        }