Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
basic
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor 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
basic
Commits
6ff3683c
Commit
6ff3683c
authored
6 years ago
by
Johannes Hörmann
Browse files
Options
Downloads
Patches
Plain Diff
rename functions: relation to contact
parent
48acf017
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
process/Contact_lib/process.js
+3
-3
3 additions, 3 deletions
process/Contact_lib/process.js
process/PostalAddress_lib/process.js
+2
-2
2 additions, 2 deletions
process/PostalAddress_lib/process.js
with
5 additions
and
5 deletions
process/Contact_lib/process.js
+
3
−
3
View file @
6ff3683c
...
...
@@ -63,7 +63,7 @@ ContactUtils.getContactType = function(pContactId, pPersId, pOrgId)
{
if
(
vars
.
get
(
"
$sys.recordstate
"
)
==
neon
.
OPERATINGSTATE_NEW
||
vars
.
get
(
"
$sys.recordstate
"
)
==
neon
.
OPERATINGSTATE_EDIT
)
{
return
ContactUtils
.
getContactTypeByContact
(
pContactId
);
return
ContactUtils
.
getContactTypeByContact
Id
(
pContactId
);
}
else
{
...
...
@@ -81,7 +81,7 @@ ContactUtils.getContactType = function(pContactId, pPersId, pOrgId)
* 2 if privat person <br>
* 3 if person of an organisation <br>
*/
ContactUtils
.
getContactTypeByContact
=
function
(
pContactId
)
ContactUtils
.
getContactTypeByContact
Id
=
function
(
pContactId
)
{
var
relationData
=
ContactUtils
.
getPersOrgIds
(
pContactId
);
if
(
relationData
[
0
])
...
...
@@ -102,7 +102,7 @@ ContactUtils.getContactTypeByContact = function(pContactId)
* !!It does not check if the person / org ids really exist!! <br>
* !!And it does not check if really any contact with this person / org ids exist!! <br>
* <br>
* This function is more performant than getContactTypeByContact, <br>
* This function is more performant than getContactTypeByContact
Id
, <br>
* because it doesn't load something from the db. <br>
* <br>
* It is meant to be used by entitys, where you can load person and org with the DataRecord. <br>
...
...
This diff is collapsed.
Click to expand it.
process/PostalAddress_lib/process.js
+
2
−
2
View file @
6ff3683c
...
...
@@ -75,7 +75,7 @@ AddressUtils.getAddress = function(pContactId) {
address
[
4
]
=
dummyAddress
[
3
];
}
var
type
=
ContactUtils
.
getContactTypeByContact
(
pContactId
);
var
type
=
ContactUtils
.
getContactTypeByContact
Id
(
pContactId
);
return
AddressUtils
.
formatAddress
(
type
,
address
[
1
],
address
[
2
],
address
[
3
],
address
[
4
],
address
[
5
],
address
[
6
],
address
[
7
],
address
[
8
]);
}
...
...
@@ -103,7 +103,7 @@ AddressUtils.getAddressById = function(pAddressId) {
address
[
4
]
=
dummyAddress
[
4
];
}
var
type
=
ContactUtils
.
getContactTypeByContact
(
address
[
0
]);
var
type
=
ContactUtils
.
getContactTypeByContact
Id
(
address
[
0
]);
var
names
=
db
.
array
(
db
.
ROW
,
SqlCondition
.
begin
()
.
andPrepare
(
"
CONTACT.CONTACTID
"
,
address
[
0
])
...
...
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