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
2800628e
Commit
2800628e
authored
Aug 28, 2020
by
Rifka Kurnia Irfiana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update permission approval matrix
parent
3da9297e
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
117 additions
and
63 deletions
+117
-63
ApprovalMatrix.js
src/container/ApprovalMatrix/ApprovalMatrix.js
+93
-57
CreateApprovalMatrix.js
src/container/ApprovalMatrix/CreateApprovalMatrix.js
+11
-3
EditApprovalMatrix.js
src/container/ApprovalMatrix/EditApprovalMatrix.js
+11
-3
VisualisasiAM.js
src/container/ApprovalMatrix/VisualisasiAM.js
+2
-0
No files found.
src/container/ApprovalMatrix/ApprovalMatrix.js
View file @
2800628e
This diff is collapsed.
Click to expand it.
src/container/ApprovalMatrix/CreateApprovalMatrix.js
View file @
2800628e
...
...
@@ -269,11 +269,19 @@ export default class CreateApprovalMatrix extends Component {
style
=
{{
width
:
'100%'
}}
id
=
"order"
label
=
"Order"
type
=
{
"number"
}
value
=
{
this
.
state
.
order
}
//
type={"number"}
value
=
{
this
.
state
.
order
===
null
?
''
:
this
.
state
.
order
}
error
=
{
this
.
state
.
errorOrder
}
helperText
=
{
this
.
state
.
msgErrOrder
}
onChange
=
{(
e
)
=>
this
.
setState
({
order
:
e
.
target
.
value
},
()
=>
this
.
clearError
())}
// onChange={(e) => this.setState({ order: e.target.value }, () => this.clearError())}
onChange
=
{(
e
)
=>
{
let
coba
=
String
(
e
.
target
.
value
).
replace
(
/
[^\d]
/g
,
''
);
this
.
setState
({
order
:
coba
},
()
=>
this
.
clearError
())}
// this.handleChange(coba, 'value')}
}
inputProps
=
{{
style
:
{
fontSize
:
11
...
...
src/container/ApprovalMatrix/EditApprovalMatrix.js
View file @
2800628e
...
...
@@ -288,11 +288,19 @@ export default class EditApprovalMatrix extends Component {
style
=
{{
width
:
'100%'
}}
id
=
"order"
label
=
"Order"
type
=
{
"number"
}
value
=
{
this
.
state
.
order
}
//
type={"number"}
value
=
{
this
.
state
.
order
===
null
?
''
:
this
.
state
.
order
}
error
=
{
this
.
state
.
errorOrder
}
helperText
=
{
this
.
state
.
msgErrOrder
}
onChange
=
{(
e
)
=>
this
.
setState
({
order
:
e
.
target
.
value
},
()
=>
this
.
clearError
())}
// onChange={(e) => this.setState({ order: e.target.value }, () => this.clearError())}
onChange
=
{(
e
)
=>
{
let
coba
=
String
(
e
.
target
.
value
).
replace
(
/
[^\d]
/g
,
''
);
this
.
setState
({
order
:
coba
},
()
=>
this
.
clearError
())}
// this.handleChange(coba, 'value')}
}
inputProps
=
{{
style
:
{
fontSize
:
11
...
...
src/container/ApprovalMatrix/VisualisasiAM.js
View file @
2800628e
...
...
@@ -204,6 +204,7 @@ export default class VisualisasiAM extends Component {
<
div
onClick
=
{()
=>
this
.
props
.
onClickClose
()}
style
=
{{
width
:
102
,
height
:
30
,
marginLeft
:
25
,
backgroundColor
:
'dodgerblue'
,
borderRadius
:
5
,
alignItems
:
'center'
,
display
:
'flex'
,
justifyContent
:
'center'
,
cursor
:
"pointer"
}}
>
<
span
style
=
{{
color
:
'#fff'
,
fontSize
:
11
}}
>
Back
<
/span
>
<
/div
>
{
this
.
props
.
buttonEdit
&&
(
<
div
className
=
"row"
style
=
{{
float
:
'right'
,
marginRight
:
25
}}
>
<
div
onClick
=
{()
=>
this
.
props
.
onClickClose
()}
style
=
{{
width
:
102
,
height
:
30
,
border
:
'solid 1px #354960'
,
borderRadius
:
5
,
alignItems
:
'center'
,
display
:
'flex'
,
justifyContent
:
'center'
,
cursor
:
"pointer"
}}
>
<
span
style
=
{{
color
:
'#354960'
,
fontSize
:
11
}}
>
Cancel
<
/span
>
...
...
@@ -212,6 +213,7 @@ export default class VisualisasiAM extends Component {
<
span
style
=
{{
color
:
'#fff'
,
fontSize
:
11
}}
>
Save
<
/span
>
<
/div
>
<
/div
>
)}
<
/div
>
<
/div
>
<
/div
>
...
...
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