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
e6b46f31
Commit
e6b46f31
authored
Oct 13, 2020
by
Dida Adams Arizona
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into 'didam'
# Conflicts: # src/container/HomePage.js
parents
57901879
fda03a4d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
6 deletions
+22
-6
BudgetTahunan.js
src/container/BudgetTahunan.js
+1
-1
HomePage.js
src/container/HomePage.js
+21
-5
No files found.
src/container/BudgetTahunan.js
View file @
e6b46f31
...
...
@@ -372,7 +372,7 @@ export default class BudgetTahunan extends Component {
}
api
.
create
().
getSubmission
(
payload
).
then
(
response
=>
{
console
.
log
(
response
)
if
(
response
)
{
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
"success"
)
{
this
.
setState
({
submissionID
:
response
.
data
.
data
.
submission_id
,
...
...
src/container/HomePage.js
View file @
e6b46f31
...
...
@@ -27,11 +27,13 @@ class HomePage extends Component {
listSubcoMB
:
[],
valueSubmit
:
0
,
listdmb
:
[],
dataTableMB
:
[]
dataTableMB
:
[],
loading
:
false
}
}
componentDidMount
()
{
this
.
setState
({
loading
:
true
})
let
userId
=
localStorage
.
getItem
(
Constant
.
USER
)
api
.
create
().
getDetailUser
(
userId
).
then
((
response
)
=>
{
if
(
response
.
data
)
{
...
...
@@ -77,7 +79,8 @@ class HomePage extends Component {
})
this
.
setState
({
listSubcoMB
:
response
.
data
.
data
,
valueSubmit
valueSubmit
,
loading
:
false
})
}
}
...
...
@@ -112,16 +115,18 @@ class HomePage extends Component {
let
indexId
=
actAM
.
findIndex
((
val
)
=>
val
.
user_id
==
userId
)
if
(
indexId
===
-
1
)
{
this
.
setState
({
isApprover
:
false
})
this
.
getListUserSubco
()
}
this
.
getDashboardMB
()
console
.
log
(
actAM
)
this
.
setState
({
loading
:
false
})
})
}
getDashboardMB
()
{
api
.
create
().
getDashboardMB
().
then
((
response
)
=>
{
api
.
create
().
getDashboardMB
().
then
((
response
)
=>
{
console
.
log
(
response
)
if
(
String
(
response
.
data
.
status
).
toLocaleLowerCase
()
==
'success'
)
{
if
(
String
(
response
.
data
.
status
).
toLocaleLowerCase
()
==
'success'
)
{
let
data
=
response
.
data
.
data
let
listdmb
=
data
.
sort
((
a
,
b
)
=>
a
.
company_id
-
b
.
company_id
).
map
((
item
,
index
)
=>
{
return
[
...
...
@@ -130,12 +135,23 @@ class HomePage extends Component {
item
.
operating_indicator
]
})
this
.
setState
({
dataTableMB
:
listdmb
})
this
.
setState
({
dataTableMB
:
listdmb
,
loading
:
false
})
}
})
}
render
()
{
const
loadingComponent
=
(
<
div
style
=
{{
position
:
'absolute'
,
zIndex
:
110
,
top
:
0
,
left
:
0
,
width
:
'100%'
,
height
:
'100%'
,
display
:
'flex'
,
justifyContent
:
'center'
,
alignItems
:
'center'
,
background
:
'rgba(255,255,255,0.8)'
}}
>
<
PropagateLoader
// css={override}
size
=
{
20
}
color
=
{
"#274B80"
}
loading
=
{
this
.
state
.
loading
}
/
>
<
/div
>
);
const
columns
=
[
"#"
,
"ID"
,
"Company"
,
"Report Type"
,
"Revision"
,
"Status"
,
{
name
:
"Action"
,
options
:
{
...
...
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