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
6729af11
Commit
6729af11
authored
5 years ago
by
Johannes Goderbauer
Browse files
Options
Downloads
Patches
Plain Diff
[Projekt: Entwicklung - Neon][TicketNr.: 1036637][Migration lib_addr auf ADITO 2019]
placeholder reorganisation
parent
27dd3a9f
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
process/Address_lib/process.js
+64
-36
64 additions, 36 deletions
process/Address_lib/process.js
with
64 additions
and
36 deletions
process/Address_lib/process.js
+
64
−
36
View file @
6729af11
...
@@ -383,33 +383,53 @@ function _getCountryName(pCountryCode)
...
@@ -383,33 +383,53 @@ function _getCountryName(pCountryCode)
*/
*/
function
_formatAddrData
(
pAddrData
,
pFormat
,
pCountry
)
function
_formatAddrData
(
pAddrData
,
pFormat
,
pCountry
)
{
{
var
placeholder
=
[[
"
address_street
"
,
1
],[
"
buildingno
"
,
2
],[
"
zip
"
,
3
],[
"
city
"
,
4
],[
"
district
"
,
8
],[
"
region
"
,
9
],[
"
state
"
,
10
],[
"
organisation_name
"
,
15
],
//0-7
var
placeholerInfo
=
{
[
"
firstname
"
,
16
],[
"
middlename
"
,
17
],[
"
lastname
"
,
18
],[
"
saluation
"
,
19
],[
"
title
"
,
20
],
[
"
suffix
"
,
21
],
[
"
salutation_name
"
,
23
],[
"
letter salutation
"
,
24
],
[
"
country
"
,
25
]];
//8-16
"
street
"
:
{
dataPosition
:
1
},
var
as
=
pAddrData
[
26
];
"
buildingno
"
:
{
dataPosition
:
2
},
if
(
pFormat
!=
""
&&
pFormat
!=
undefined
)
as
=
pFormat
;
"
zip
"
:
{
dataPosition
:
3
},
as
=
_getFormatMapping
(
as
,
pAddrData
,
pCountry
);
"
city
"
:
{
dataPosition
:
4
},
"
district
"
:
{
dataPosition
:
8
},
"
region
"
:
{
dataPosition
:
9
},
"
state
"
:
{
dataPosition
:
10
},
"
firstname
"
:
{
dataPosition
:
16
},
"
middlename
"
:
{
dataPosition
:
17
},
"
lastname
"
:
{
dataPosition
:
18
},
"
saluation
"
:
{
dataPosition
:
19
},
"
title
"
:
{
dataPosition
:
20
},
"
suffix
"
:
{
dataPosition
:
21
},
"
country
"
:
{
dataPosition
:
25
},
"
organisation name
"
:
{
dataPosition
:
15
},
"
salutation_name
"
:
{
dataPosition
:
23
},
"
letter salutation
"
:
{
dataPosition
:
24
}
};
var
format
=
pFormat
||
pAddrData
[
26
];
format
=
_mapFormatPlaceholderTitles
(
format
,
pAddrData
,
pCountry
);
for
(
var
y
=
0
;
y
<
placeholder
.
length
;
y
++
)
var
res
=
format
;
{
for
(
var
placeholder
in
placeholerInfo
)
as
=
as
.
replace
(
new
RegExp
(
placeholder
[
y
][
0
],
"
g
"
),
pAddrData
[
placeholder
[
y
][
1
]]);
{
if
(
pAddrData
[
placeholder
[
y
][
1
]]
!=
undefined
)
{
var
currentAddrData
=
pAddrData
[
placeholerInfo
[
placeholder
].
dataPosition
];
as
=
as
.
replace
(
new
RegExp
(
placeholder
[
y
][
0
].
toUpperCase
(),
"
g
"
),
pAddrData
[
placeholder
[
y
][
1
]].
toUpperCase
());
if
(
currentAddrData
!=
undefined
)
}
{
res
=
res
.
replace
(
new
RegExp
(
"
{
"
+
placeholder
+
"
}
"
,
"
g
"
),
currentAddrData
);
res
=
res
.
replace
(
new
RegExp
(
"
{
"
+
placeholder
.
toUpperCase
()
+
"
}
"
,
"
g
"
),
currentAddrData
.
toUpperCase
());
}
}
}
a
s
=
a
s
.
replace
(
/^
\n
/
,
""
);
// CR am Anfang entfernen;
re
s
=
re
s
.
replace
(
/^
\n
/
,
""
);
// CR am Anfang entfernen;
a
s
=
a
s
.
replace
(
/ /g
,
"
"
);
// doppelte leerzeichen entfernen
re
s
=
re
s
.
replace
(
/ /g
,
"
"
);
// doppelte leerzeichen entfernen
a
s
=
a
s
.
replace
(
/
\\
n/ig
,
"
\n
"
);
// newline marker ersetzen
re
s
=
re
s
.
replace
(
/
\\
n/ig
,
"
\n
"
);
// newline marker ersetzen
a
s
=
a
s
.
replace
(
/ *
\n
*/g
,
"
\n
"
);
// leerzeichen am ende und Anfang entfernen
re
s
=
re
s
.
replace
(
/ *
\n
*/g
,
"
\n
"
);
// leerzeichen am ende und Anfang entfernen
a
s
=
a
s
.
replace
(
/
\s(?=\s)
/g
,
""
);
// leerzeilen rauswerfen
re
s
=
re
s
.
replace
(
/
\s(?=\s)
/g
,
""
);
// leerzeilen rauswerfen
return
a
s
;
return
re
s
;
}
}
/*
/*
* returns the new format
* returns the new format
*
*
* @param {String [[]]} pAddrData req Daten
* @param {String [[]]} pAddrData req Daten
* @param {String}
as
req the format string
* @param {String}
pFormat
req the format string
* @param {boolean} pCountry if the country should be displayed
* @param {boolean} pCountry if the country should be displayed
*
*
* @return {String} new formate
* @return {String} new formate
...
@@ -423,23 +443,31 @@ S – Administrative area - state
...
@@ -423,23 +443,31 @@ S – Administrative area - state
Z – Zip or postal code - zip
Z – Zip or postal code - zip
X – Sorting code - not available
X – Sorting code - not available
*/
*/
function
_getFormatMapping
(
as
,
pAddrData
,
pCountry
)
{
function
_mapFormatPlaceholderTitles
(
pFormat
,
pAddrData
,
pCountry
)
as
=
as
.
replace
(
new
RegExp
(
"
%N
"
,
"
g
"
),
"
salutation_name
"
);
{
as
=
as
.
replace
(
new
RegExp
(
"
%A
"
,
"
g
"
),
"
address_street buildingno
"
);
//gstatic-paceholders
as
=
as
.
replace
(
new
RegExp
(
"
%C
"
,
"
g
"
),
"
city
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%N
"
,
"
g
"
),
"
{salutation_name}
"
);
as
=
as
.
replace
(
new
RegExp
(
"
%S
"
,
"
g
"
),
"
state
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%A
"
,
"
g
"
),
"
{address_street buildingno}
"
);
as
=
as
.
replace
(
new
RegExp
(
"
%Z
"
,
"
g
"
),
"
zip
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%C
"
,
"
g
"
),
"
{city}
"
);
as
=
as
.
replace
(
new
RegExp
(
"
%O
"
,
"
g
"
),
"
organisation_name
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%S
"
,
"
g
"
),
"
{state}
"
);
as
=
as
.
replace
(
new
RegExp
(
"
%X
"
,
"
g
"
),
""
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%Z
"
,
"
g
"
),
"
{zip}
"
);
as
=
as
.
replace
(
new
RegExp
(
"
%n
"
,
"
g
"
),
"
\n
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%O
"
,
"
g
"
),
"
{organisation_name}
"
);
as
=
as
.
replace
(
new
RegExp
(
"
{fn}
"
,
"
g
"
),
"
firstname
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%X
"
,
"
g
"
),
""
);
as
=
as
.
replace
(
new
RegExp
(
"
{ln}
"
,
"
g
"
),
"
lastname
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%n
"
,
"
g
"
),
"
\n
"
);
as
=
as
.
replace
(
new
RegExp
(
"
{ti}
"
,
"
g
"
),
"
title
"
);
as
=
as
.
replace
(
new
RegExp
(
"
{sa}
"
,
"
g
"
),
"
salutation
"
);
//shortform adito-placeholders
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
{fn}
"
,
"
g
"
),
"
{firstname}
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
{ln}
"
,
"
g
"
),
"
{lpFormattname}
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
{ti}
"
,
"
g
"
),
"
{title}
"
);
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
{sa}
"
,
"
g
"
),
"
{salutation}
"
);
if
(
pAddrData
[
8
]
==
pAddrData
[
9
])
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%D
"
,
"
g
"
),
"
{district}
"
);
else
pFormat
=
pFormat
.
replace
(
new
RegExp
(
"
%D
"
,
"
g
"
),
"
{district}
\n
{region}
"
);
if
(
pAddrData
[
8
]
==
pAddrData
[
9
])
as
=
as
.
replace
(
new
RegExp
(
"
%D
"
,
"
g
"
),
"
district
"
);
if
(
pCountry
==
undefined
||
pCountry
==
null
||
pCountry
==
true
)
else
as
=
as
.
replace
(
new
RegExp
(
"
%D
"
,
"
g
"
),
"
district
\n
region
"
);
pFormat
=
pFormat
+
"
\n
{country}
"
;
if
(
pCountry
==
undefined
||
pCountry
==
null
||
pCountry
==
true
)
as
=
as
+
"
\n
country
"
;
return
as
;
return
pFormat
;
}
}
\ No newline at end of file
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