Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Tia-dev
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dida Adams Arizona
Tia-dev
Commits
03adb3b3
Commit
03adb3b3
authored
Oct 12, 2023
by
fahrur huzain
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev/fahrur' into 'ENV-DEV'
validasi parameter currencyTC See merge request
!2065
parents
06d229aa
9fbd6063
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
21 deletions
+59
-21
CreateParameter.js
src/container/MasterData/Parameter/CreateParameter.js
+59
-21
No files found.
src/container/MasterData/Parameter/CreateParameter.js
View file @
03adb3b3
...
...
@@ -615,6 +615,8 @@ export default class CreateParameter extends Component {
errorEndDate
:
false
,
errorGroup
:
false
,
errorPerusahaan
:
false
,
errorThresholdCurrency
:
false
,
msgErrorThresholdCurrency
:
''
,
msgErrorPerusahaan
:
''
,
msgErrorGroup
:
''
,
msgErrorParameter
:
''
,
...
...
@@ -643,6 +645,8 @@ export default class CreateParameter extends Component {
errorEndDate
:
false
,
errorGroup
:
false
,
errorPerusahaan
:
false
,
errorThresholdCurrency
:
false
,
msgErrorThresholdCurrency
:
''
,
msgErrorPerusahaan
:
''
,
msgErrorGroup
:
''
,
msgErrorParameter
:
''
,
...
...
@@ -672,6 +676,8 @@ export default class CreateParameter extends Component {
errorEndDate
:
false
,
errorGroup
:
false
,
errorPerusahaan
:
false
,
errorThresholdCurrency
:
false
,
msgErrorThresholdCurrency
:
''
,
msgErrorPerusahaan
:
''
,
msgErrorGroup
:
''
,
msgErrorParameter
:
''
,
...
...
@@ -702,6 +708,8 @@ export default class CreateParameter extends Component {
errorEndDate
:
false
,
errorGroup
:
false
,
errorPerusahaan
:
false
,
errorThresholdCurrency
:
false
,
msgErrorThresholdCurrency
:
''
,
msgErrorPerusahaan
:
''
,
msgErrorGroup
:
''
,
msgErrorParameter
:
''
,
...
...
@@ -1202,15 +1210,36 @@ export default class CreateParameter extends Component {
return
obj
;
}
validasiCurrencyTC
(){
console
.
log
(
this
.
state
.
getThresholdCurrency
)
console
.
log
(
this
.
state
.
errorThresholdCurrency
)
console
.
log
(
this
.
state
.
msgErrorThresholdCurrency
)
if
(
R
.
isNil
(
this
.
state
.
getThresholdCurrency
)){
this
.
setState
({
errorThresholdCurrency
:
true
,
msgErrorThresholdCurrency
:
'Currency Cannot be Empty'
})
}
}
async
validasiMaxValue
()
{
let
data
=
await
this
.
validasiValueData
()
let
minMaxValidasi
=
await
this
.
validasiMinMaxValue
()
if
(
R
.
isEmpty
(
data
.
maxValue
))
{
this
.
validasiMaxResponse
()
this
.
validasiCurrencyTC
()
}
else
{
if
(
data
.
maxValue
.
match
(
minMaxValidasi
.
minMaxRegex
)
&&
data
.
maxValue
.
substring
(
0
,
1
)
!=
"0"
&&
data
.
maxValue
.
length
<=
minMaxValidasi
.
maxLength
)
{
if
(
R
.
isNil
(
this
.
state
.
getTypes
)){
if
(
data
.
maxValue
.
match
(
minMaxValidasi
.
minMaxRegex
)
&&
data
.
maxValue
.
substring
(
0
,
1
)
!=
"0"
&&
data
.
maxValue
.
length
<=
minMaxValidasi
.
maxLength
)
{
this
.
validasiCurrencyTC
()
}
else
{
this
.
validasiMaxResponse
()
this
.
validasiCurrencyTC
()
}
}
else
{
if
(
data
.
maxValue
.
match
(
minMaxValidasi
.
minMaxRegex
)
&&
(
this
.
state
.
getTypes
.
setting_group_name
!=
"THRESHOLD_CONTROL"
?
data
.
maxValue
.
substring
(
0
,
1
)
!=
"0"
:
true
)
&&
data
.
maxValue
.
length
<=
minMaxValidasi
.
maxLength
)
{
this
.
validasiCurrencyTC
()
}
else
{
this
.
validasiMaxResponse
()
this
.
validasiCurrencyTC
()
}
}
}
}
...
...
@@ -1231,12 +1260,21 @@ export default class CreateParameter extends Component {
this
.
validasiMinResponse
()
this
.
validasiFormatData
()
}
else
{
if
(
data
.
minValue
.
match
(
minMaxValidasi
.
minMaxRegex
)
&&
data
.
minValue
.
substring
(
0
,
1
)
!=
"0"
&&
data
.
minValue
.
length
<=
minMaxValidasi
.
minLength
)
{
if
(
R
.
isNil
(
this
.
state
.
getTypes
)){
if
(
data
.
minValue
.
match
(
minMaxValidasi
.
minMaxRegex
)
&&
data
.
minValue
.
substring
(
0
,
1
)
!=
"0"
&&
data
.
minValue
.
length
<=
minMaxValidasi
.
minLength
){
this
.
validasiFormatData
()
}
else
{
this
.
validasiMinResponse
()
this
.
validasiFormatData
()
}
}
else
{
if
(
data
.
minValue
.
match
(
minMaxValidasi
.
minMaxRegex
)
&&
(
this
.
state
.
getTypes
.
setting_group_name
!=
"THRESHOLD_CONTROL"
?
data
.
minValue
.
substring
(
0
,
1
)
!=
"0"
:
true
)
&&
data
.
minValue
.
length
<=
minMaxValidasi
.
minLength
){
this
.
validasiFormatData
()
}
else
{
this
.
validasiMinResponse
()
this
.
validasiFormatData
()
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment