Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Daniel Lennartz
vtigercrm
Commits
2fd2defd
Commit
2fd2defd
authored
1 year ago
by
Christian Cruz
Browse files
Options
Downloads
Patches
Plain Diff
Fix date comparison bug to get reminders
parent
5a349ee9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/Calendar/models/Module.php
+7
-3
7 additions, 3 deletions
modules/Calendar/models/Module.php
with
7 additions
and
3 deletions
modules/Calendar/models/Module.php
+
7
−
3
View file @
2fd2defd
...
...
@@ -863,15 +863,19 @@ class Calendar_Module_Model extends Vtiger_Module_Model {
$currentTime
=
time
();
$date
=
date
(
'Y-m-d'
,
strtotime
(
"+
$activityReminder
seconds"
,
$currentTime
));
$time
=
date
(
'H:i'
,
strtotime
(
"+
$activityReminder
seconds"
,
$currentTime
));
$dateAndTime
=
$date
.
' '
.
$time
;
$reminderActivitiesResult
=
"SELECT reminderid, recordid FROM vtiger_activity_reminder_popup
INNER JOIN vtiger_activity on vtiger_activity.activityid = vtiger_activity_reminder_popup.recordid
INNER JOIN vtiger_crmentity ON vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid
WHERE vtiger_activity_reminder_popup.status = 0
AND vtiger_crmentity.smownerid = ? AND vtiger_crmentity.deleted = 0
AND ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= ?)
AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= ?))
and CONCAT(
DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d'),
' ',
TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i')
) <= ?
AND vtiger_activity.eventstatus <> 'Held' AND (vtiger_activity.status <> 'Completed' OR vtiger_activity.status IS NULL) LIMIT 20"
;
$result
=
$db
->
pquery
(
$reminderActivitiesResult
,
array
(
$currentUserModel
->
getId
(),
$date
,
$t
ime
));
$result
=
$db
->
pquery
(
$reminderActivitiesResult
,
array
(
$currentUserModel
->
getId
(),
$date
AndT
ime
));
$rows
=
$db
->
num_rows
(
$result
);
for
(
$i
=
0
;
$i
<
$rows
;
$i
++
)
{
$recordId
=
$db
->
query_result
(
$result
,
$i
,
'recordid'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment