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
Admin message
Gitlab Maintenance 11.04.2025 | 20:00 - 23:00 MEZ
Show more breadcrumbs
xrm
ADITO_Update_Upgrade
Commits
4f21705d
Commit
4f21705d
authored
5 years ago
by
H.Boesl
Browse files
Options
Downloads
Patches
Plain Diff
code review
parent
8a906ef5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
entity/Communication_entity/entityfields/addr/valueProcess.js
+1
-2
1 addition, 2 deletions
...ty/Communication_entity/entityfields/addr/valueProcess.js
process/blobHandler/process.js
+4
-4
4 additions, 4 deletions
process/blobHandler/process.js
with
5 additions
and
6 deletions
entity/Communication_entity/entityfields/addr/valueProcess.js
+
1
−
2
View file @
4f21705d
...
...
@@ -30,8 +30,7 @@ if (recordstate == neon.OPERATINGSTATE_NEW || recordstate == neon.OPERATINGSTATE
case
"
TELEPHONE
"
:
// Phone
if
(
addr
.
length
>
5
)
{
var
formatted
=
cti
.
formatPhoneNumber
(
addr
,
true
,
vars
.
get
(
"
$param.ContactsMainCountry_param
"
))
result
.
string
(
cti
.
formatPhoneNumber
(
addr
,
true
,
vars
.
get
(
"
$param.ContactsMainCountry_param
"
)))
result
.
string
(
cti
.
formatPhoneNumber
(
addr
,
true
,
vars
.
get
(
"
$param.ContactsMainCountry_param
"
)));
}
break
;
default
:
...
...
This diff is collapsed.
Click to expand it.
process/blobHandler/process.js
+
4
−
4
View file @
4f21705d
...
...
@@ -33,22 +33,22 @@ if (operation)
function
createBlob
(
path
,
filename
)
{
_writeBlob
(
path
+
filename
+
"
.0
"
)
_writeBlob
(
path
+
filename
)
}
function
deleteBlob
(
path
,
filename
)
{
fileIO
.
remove
(
path
+
filename
+
"
.0
"
);
fileIO
.
remove
(
path
+
filename
);
}
function
updateBlob
(
path
,
filename
)
{
_writeBlob
(
path
+
filename
+
"
.0
"
);
_writeBlob
(
path
+
filename
);
}
function
readBlob
(
path
,
filename
)
{
var
fullPath
=
path
+
filename
+
"
.0
"
;
var
fullPath
=
path
+
filename
;
var
fromWhereCond
=
"
from ASYS_BINARIES where ID = '
"
+
filename
+
"
'
"
;
sqlHelper
=
new
SqlMaskingUtils
();
...
...
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