Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ADITO_Update_Upgrade
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
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
Show more breadcrumbs
xrm
ADITO_Update_Upgrade
Commits
5fb254eb
Commit
5fb254eb
authored
5 years ago
by
Johannes Hörmann
Browse files
Options
Downloads
Patches
Plain Diff
Fix Calendar lib usages
parent
38edd4fc
No related branches found
Branches containing commit
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
entity/Analyses_entity/entityfields/imminent_appointments/valueProcess.js
+1
-1
1 addition, 1 deletion
...entity/entityfields/imminent_appointments/valueProcess.js
process/Calendar_lib/process.js
+2
-2
2 additions, 2 deletions
process/Calendar_lib/process.js
with
3 additions
and
3 deletions
entity/Analyses_entity/entityfields/imminent_appointments/valueProcess.js
+
1
−
1
View file @
5fb254eb
...
...
@@ -8,7 +8,7 @@ import("Sql_lib");
import
(
"
system.calendars
"
);
import
(
"
Calendar_lib
"
);
var
pFilter
=
reset_filterEvent
();
var
pFilter
=
CalendarUtil
.
reset_filterEvent
();
var
conditions
=
[];
var
conditioncount
=
0
;
var
user
=
undefined
;
...
...
This diff is collapsed.
Click to expand it.
process/Calendar_lib/process.js
+
2
−
2
View file @
5fb254eb
...
...
@@ -44,7 +44,7 @@ function CalendarUtil(){}
*/
CalendarUtil
.
newTodo
=
function
(
pSummary
,
pDescription
,
pWithLink
,
pUser
,
pAffectedUsers
,
pStart
,
pDuration
,
pCategory
,
pStatus
,
pComps4Refresh
)
{
var
todo
=
createEntry
(
calendars
.
VTODO
,
pSummary
,
pDescription
,
pWithLink
,
pUser
,
pAffectedUsers
,
pStart
,
pDuration
,
pCategory
,
pStatus
);
var
todo
=
CalendarUtil
.
createEntry
(
calendars
.
VTODO
,
pSummary
,
pDescription
,
pWithLink
,
pUser
,
pAffectedUsers
,
pStart
,
pDuration
,
pCategory
,
pStatus
);
var
prompts
=
[];
prompts
[
"
comp4refresh
"
]
=
[];
...
...
@@ -393,7 +393,7 @@ CalendarUtil.getDate = function(datetimeIn)
*/
CalendarUtil
.
reset_filterEvent
=
function
()
{
var
today
=
getDate
(
vars
.
getString
(
"
$sys.date
"
));
var
today
=
CalendarUtil
.
getDate
(
vars
.
getString
(
"
$sys.date
"
));
return
pFilter
=
{
user
:
vars
.
getString
(
"
$sys.user
"
),
...
...
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