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
2e706788
Commit
2e706788
authored
Sep 17, 2020
by
Deni Rinaldi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hapus uler
parent
3f0dc5bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
73 additions
and
630 deletions
+73
-630
BalanceSheet.js
src/container/BudgetTahunan/BalanceSheet.js
+73
-630
No files found.
src/container/BudgetTahunan/BalanceSheet.js
View file @
2e706788
...
...
@@ -31,18 +31,7 @@ export default class BalanceSheet extends Component {
constructor
(
props
)
{
super
(
props
)
this
.
state
=
{
dataTable
:
[
// ["TOTAL ASSETS", "11,247,249", "10,702,196"],
// ["TOTAL CURRENT ASSETS", "2,647,647", "2,058,898"],
// ["Cash & Cash Equivalent", "1,464,571", "729,743"],
// ["Cash & Bank Balance", "938,707", "265,584"],
// ["Time & Call Deposit", "525,864", "464,159"],
// ["BI Deposit", "", ""],
// ["Marketable Securities", "150,250", "154,500"],
// ["Notes Receivable", "", ""],
// ["Accounts Receivable", "172,031", "97,112"],
// ["Trade Receivables - Third Party", "142,668", "77,480"],
],
dataTable
:
[],
visibleBalanceSheet
:
true
,
disabledSave
:
true
}
...
...
@@ -66,626 +55,80 @@ export default class BalanceSheet extends Component {
}
api
.
create
().
getDetailReportMB
(
payload
).
then
(
response
=>
{
console
.
log
(
response
);
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
"success"
)
{
let
dataTable
=
[]
response
.
data
.
data
.
map
((
item
,
index
)
=>
{
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
dataTable
.
push
([
item
.
type_report_id
,
item
.
id
,
item
.
parent
,
item
.
formula
,
item
.
level
,
item
.
description
,
item
.
balance_sheet
.
total_actual_before
,
item
.
balance_sheet
.
january
,
item
.
balance_sheet
.
february
,
item
.
balance_sheet
.
march
,
item
.
balance_sheet
.
april
,
item
.
balance_sheet
.
may
,
item
.
balance_sheet
.
june
,
item
.
balance_sheet
.
july
,
item
.
balance_sheet
.
august
,
item
.
balance_sheet
.
september
,
item
.
balance_sheet
.
october
,
item
.
balance_sheet
.
november
,
item
.
balance_sheet
.
december
,
item
.
balance_sheet
.
total_current_year
,
item
.
balance_sheet
.
total_next_year
,
item
.
balance_sheet
.
total_more_year
])
item
.
children
.
map
(
i
=>
{
if
(
i
.
children
)
{
if
(
i
.
children
.
length
>
0
)
{
dataTable
.
push
([
i
.
type_report_id
,
i
.
id
,
i
.
parent
,
i
.
formula
,
i
.
level
,
i
.
description
,
i
.
balance_sheet
.
total_actual_before
,
i
.
balance_sheet
.
january
,
i
.
balance_sheet
.
february
,
i
.
balance_sheet
.
march
,
i
.
balance_sheet
.
april
,
i
.
balance_sheet
.
may
,
i
.
balance_sheet
.
june
,
i
.
balance_sheet
.
july
,
i
.
balance_sheet
.
august
,
i
.
balance_sheet
.
september
,
i
.
balance_sheet
.
october
,
i
.
balance_sheet
.
november
,
i
.
balance_sheet
.
december
,
i
.
balance_sheet
.
total_current_year
,
i
.
balance_sheet
.
total_next_year
,
i
.
balance_sheet
.
total_more_year
])
i
.
children
.
map
(
val
=>
{
if
(
val
.
children
&&
val
.
children
.
length
>
0
)
{
dataTable
.
push
([
val
.
type_report_id
,
val
.
id
,
val
.
parent
,
val
.
formula
,
val
.
level
,
val
.
description
,
val
.
balance_sheet
.
total_actual_before
,
val
.
balance_sheet
.
january
,
val
.
balance_sheet
.
february
,
val
.
balance_sheet
.
march
,
val
.
balance_sheet
.
april
,
val
.
balance_sheet
.
may
,
val
.
balance_sheet
.
june
,
val
.
balance_sheet
.
july
,
val
.
balance_sheet
.
august
,
val
.
balance_sheet
.
september
,
val
.
balance_sheet
.
october
,
val
.
balance_sheet
.
november
,
val
.
balance_sheet
.
december
,
val
.
balance_sheet
.
total_current_year
,
val
.
balance_sheet
.
total_next_year
,
val
.
balance_sheet
.
total_more_year
])
val
.
children
.
map
(
items
=>
{
if
(
items
.
children
&&
items
.
children
.
length
>
0
)
{
dataTable
.
push
([
items
.
type_report_id
,
items
.
id
,
items
.
parent
,
items
.
formula
,
items
.
level
,
items
.
description
,
items
.
balance_sheet
.
total_actual_before
,
items
.
balance_sheet
.
january
,
items
.
balance_sheet
.
february
,
items
.
balance_sheet
.
march
,
items
.
balance_sheet
.
april
,
items
.
balance_sheet
.
may
,
items
.
balance_sheet
.
june
,
items
.
balance_sheet
.
july
,
items
.
balance_sheet
.
august
,
items
.
balance_sheet
.
september
,
items
.
balance_sheet
.
october
,
items
.
balance_sheet
.
november
,
items
.
balance_sheet
.
december
,
items
.
balance_sheet
.
total_current_year
,
items
.
balance_sheet
.
total_next_year
,
items
.
balance_sheet
.
total_more_year
])
items
.
children
.
map
(
itemss
=>
{
if
(
itemss
.
children
&&
itemss
.
children
.
length
>
0
)
{
dataTable
.
push
([
itemss
.
type_report_id
,
itemss
.
id
,
itemss
.
parent
,
itemss
.
formula
,
itemss
.
level
,
itemss
.
description
,
itemss
.
balance_sheet
.
total_actual_before
,
itemss
.
balance_sheet
.
january
,
itemss
.
balance_sheet
.
february
,
itemss
.
balance_sheet
.
march
,
itemss
.
balance_sheet
.
april
,
itemss
.
balance_sheet
.
may
,
itemss
.
balance_sheet
.
june
,
itemss
.
balance_sheet
.
july
,
itemss
.
balance_sheet
.
august
,
itemss
.
balance_sheet
.
september
,
itemss
.
balance_sheet
.
october
,
itemss
.
balance_sheet
.
november
,
itemss
.
balance_sheet
.
december
,
itemss
.
balance_sheet
.
total_current_year
,
itemss
.
balance_sheet
.
total_next_year
,
itemss
.
balance_sheet
.
total_more_year
])
itemss
.
children
.
map
(
item1
=>
{
if
(
item1
.
children
&&
item1
.
children
.
length
>
0
)
{
dataTable
.
push
([
item1
.
type_report_id
,
item1
.
id
,
item1
.
parent
,
item1
.
formula
,
item1
.
level
,
item1
.
description
,
item1
.
balance_sheet
.
total_actual_before
,
item1
.
balance_sheet
.
january
,
item1
.
balance_sheet
.
february
,
item1
.
balance_sheet
.
march
,
item1
.
balance_sheet
.
april
,
item1
.
balance_sheet
.
may
,
item1
.
balance_sheet
.
june
,
item1
.
balance_sheet
.
july
,
item1
.
balance_sheet
.
august
,
item1
.
balance_sheet
.
september
,
item1
.
balance_sheet
.
october
,
item1
.
balance_sheet
.
november
,
item1
.
balance_sheet
.
december
,
item1
.
balance_sheet
.
total_current_year
,
item1
.
balance_sheet
.
total_next_year
,
item1
.
balance_sheet
.
total_more_year
])
item1
.
children
.
map
(
item2
=>
{
if
(
item2
.
children
&&
item2
.
children
.
length
>
0
)
{
dataTable
.
push
([
item2
.
type_report_id
,
item2
.
id
,
item2
.
parent
,
item2
.
formula
,
item2
.
level
,
item2
.
description
,
item2
.
balance_sheet
.
total_actual_before
,
item2
.
balance_sheet
.
january
,
item2
.
balance_sheet
.
february
,
item2
.
balance_sheet
.
march
,
item2
.
balance_sheet
.
april
,
item2
.
balance_sheet
.
may
,
item2
.
balance_sheet
.
june
,
item2
.
balance_sheet
.
july
,
item2
.
balance_sheet
.
august
,
item2
.
balance_sheet
.
september
,
item2
.
balance_sheet
.
october
,
item2
.
balance_sheet
.
november
,
item2
.
balance_sheet
.
december
,
item2
.
balance_sheet
.
total_current_year
,
item2
.
balance_sheet
.
total_next_year
,
item2
.
balance_sheet
.
total_more_year
])
item2
.
children
.
map
(
item3
=>
{
if
(
item3
.
children
&&
item3
.
children
.
length
>
0
)
{
dataTable
.
push
([
item3
.
type_report_id
,
item3
.
id
,
item3
.
parent
,
item3
.
formula
,
item3
.
level
,
item3
.
description
,
item3
.
balance_sheet
.
total_actual_before
,
item3
.
balance_sheet
.
january
,
item3
.
balance_sheet
.
february
,
item3
.
balance_sheet
.
march
,
item3
.
balance_sheet
.
april
,
item3
.
balance_sheet
.
may
,
item3
.
balance_sheet
.
june
,
item3
.
balance_sheet
.
july
,
item3
.
balance_sheet
.
august
,
item3
.
balance_sheet
.
september
,
item3
.
balance_sheet
.
october
,
item3
.
balance_sheet
.
november
,
item3
.
balance_sheet
.
december
,
item3
.
balance_sheet
.
total_current_year
,
item3
.
balance_sheet
.
total_next_year
,
item3
.
balance_sheet
.
total_more_year
])
item3
.
children
.
map
(
item4
=>
{
if
(
item4
.
children
&&
item4
.
children
.
length
>
0
)
{
dataTable
.
push
([
item4
.
type_report_id
,
item4
.
id
,
item4
.
parent
,
item4
.
formula
,
item4
.
level
,
item4
.
description
,
item4
.
balance_sheet
.
total_actual_before
,
item4
.
balance_sheet
.
january
,
item4
.
balance_sheet
.
february
,
item4
.
balance_sheet
.
march
,
item4
.
balance_sheet
.
april
,
item4
.
balance_sheet
.
may
,
item4
.
balance_sheet
.
june
,
item4
.
balance_sheet
.
july
,
item4
.
balance_sheet
.
august
,
item4
.
balance_sheet
.
september
,
item4
.
balance_sheet
.
october
,
item4
.
balance_sheet
.
november
,
item4
.
balance_sheet
.
december
,
item4
.
balance_sheet
.
total_current_year
,
item4
.
balance_sheet
.
total_next_year
,
item4
.
balance_sheet
.
total_more_year
])
item4
.
children
.
map
(
item5
=>
{
if
(
item5
.
children
&&
item5
.
children
.
length
>
0
)
{
dataTable
.
push
([
item5
.
type_report_id
,
item5
.
id
,
item5
.
parent
,
item5
.
formula
,
item5
.
level
,
item5
.
description
,
item5
.
balance_sheet
.
total_actual_before
,
item5
.
balance_sheet
.
january
,
item5
.
balance_sheet
.
february
,
item5
.
balance_sheet
.
march
,
item5
.
balance_sheet
.
april
,
item5
.
balance_sheet
.
may
,
item5
.
balance_sheet
.
june
,
item5
.
balance_sheet
.
july
,
item5
.
balance_sheet
.
august
,
item5
.
balance_sheet
.
september
,
item5
.
balance_sheet
.
october
,
item5
.
balance_sheet
.
november
,
item5
.
balance_sheet
.
december
,
item5
.
balance_sheet
.
total_current_year
,
item5
.
balance_sheet
.
total_next_year
,
item5
.
balance_sheet
.
total_more_year
])
item5
.
children
.
map
(
item6
=>
{
if
(
item6
.
children
&&
item
.
children
.
length
>
0
)
{
dataTable
.
push
([
item6
.
type_report_id
,
item6
.
id
,
item6
.
parent
,
item6
.
formula
,
item6
.
level
,
item6
.
description
,
item6
.
balance_sheet
.
total_actual_before
,
item6
.
balance_sheet
.
january
,
item6
.
balance_sheet
.
february
,
item6
.
balance_sheet
.
march
,
item6
.
balance_sheet
.
april
,
item6
.
balance_sheet
.
may
,
item6
.
balance_sheet
.
june
,
item6
.
balance_sheet
.
july
,
item6
.
balance_sheet
.
august
,
item6
.
balance_sheet
.
september
,
item6
.
balance_sheet
.
october
,
item6
.
balance_sheet
.
november
,
item6
.
balance_sheet
.
december
,
item6
.
balance_sheet
.
total_current_year
,
item6
.
balance_sheet
.
total_next_year
,
item6
.
balance_sheet
.
total_more_year
])
}
else
{
dataTable
.
push
([
item6
.
type_report_id
,
item6
.
id
,
item6
.
parent
,
item6
.
formula
,
item6
.
level
,
item6
.
description
,
item6
.
balance_sheet
.
total_actual_before
,
item6
.
balance_sheet
.
january
,
item6
.
balance_sheet
.
february
,
item6
.
balance_sheet
.
march
,
item6
.
balance_sheet
.
april
,
item6
.
balance_sheet
.
may
,
item6
.
balance_sheet
.
june
,
item6
.
balance_sheet
.
july
,
item6
.
balance_sheet
.
august
,
item6
.
balance_sheet
.
september
,
item6
.
balance_sheet
.
october
,
item6
.
balance_sheet
.
november
,
item6
.
balance_sheet
.
december
,
item6
.
balance_sheet
.
total_current_year
,
item6
.
balance_sheet
.
total_next_year
,
item6
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
item5
.
type_report_id
,
item5
.
id
,
item5
.
parent
,
item5
.
formula
,
item5
.
level
,
item5
.
description
,
item5
.
balance_sheet
.
total_actual_before
,
item5
.
balance_sheet
.
january
,
item5
.
balance_sheet
.
february
,
item5
.
balance_sheet
.
march
,
item5
.
balance_sheet
.
april
,
item5
.
balance_sheet
.
may
,
item5
.
balance_sheet
.
june
,
item5
.
balance_sheet
.
july
,
item5
.
balance_sheet
.
august
,
item5
.
balance_sheet
.
september
,
item5
.
balance_sheet
.
october
,
item5
.
balance_sheet
.
november
,
item5
.
balance_sheet
.
december
,
item5
.
balance_sheet
.
total_current_year
,
item5
.
balance_sheet
.
total_next_year
,
item5
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
item4
.
type_report_id
,
item4
.
id
,
item4
.
parent
,
item4
.
formula
,
item4
.
level
,
item4
.
description
,
item4
.
balance_sheet
.
total_actual_before
,
item4
.
balance_sheet
.
january
,
item4
.
balance_sheet
.
february
,
item4
.
balance_sheet
.
march
,
item4
.
balance_sheet
.
april
,
item4
.
balance_sheet
.
may
,
item4
.
balance_sheet
.
june
,
item4
.
balance_sheet
.
july
,
item4
.
balance_sheet
.
august
,
item4
.
balance_sheet
.
september
,
item4
.
balance_sheet
.
october
,
item4
.
balance_sheet
.
november
,
item4
.
balance_sheet
.
december
,
item4
.
balance_sheet
.
total_current_year
,
item4
.
balance_sheet
.
total_next_year
,
item4
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
item3
.
type_report_id
,
item3
.
id
,
item3
.
parent
,
item3
.
formula
,
item3
.
level
,
item3
.
description
,
item3
.
balance_sheet
.
total_actual_before
,
item3
.
balance_sheet
.
january
,
item3
.
balance_sheet
.
february
,
item3
.
balance_sheet
.
march
,
item3
.
balance_sheet
.
april
,
item3
.
balance_sheet
.
may
,
item3
.
balance_sheet
.
june
,
item3
.
balance_sheet
.
july
,
item3
.
balance_sheet
.
august
,
item3
.
balance_sheet
.
september
,
item3
.
balance_sheet
.
october
,
item3
.
balance_sheet
.
november
,
item3
.
balance_sheet
.
december
,
item3
.
balance_sheet
.
total_current_year
,
item3
.
balance_sheet
.
total_next_year
,
item3
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
item2
.
type_report_id
,
item2
.
id
,
item2
.
parent
,
item2
.
formula
,
item2
.
level
,
item2
.
description
,
item2
.
balance_sheet
.
total_actual_before
,
item2
.
balance_sheet
.
january
,
item2
.
balance_sheet
.
february
,
item2
.
balance_sheet
.
march
,
item2
.
balance_sheet
.
april
,
item2
.
balance_sheet
.
may
,
item2
.
balance_sheet
.
june
,
item2
.
balance_sheet
.
july
,
item2
.
balance_sheet
.
august
,
item2
.
balance_sheet
.
september
,
item2
.
balance_sheet
.
october
,
item2
.
balance_sheet
.
november
,
item2
.
balance_sheet
.
december
,
item2
.
balance_sheet
.
total_current_year
,
item2
.
balance_sheet
.
total_next_year
,
item2
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
item1
.
type_report_id
,
item1
.
id
,
item1
.
parent
,
item1
.
formula
,
item1
.
level
,
item1
.
description
,
item1
.
balance_sheet
.
total_actual_before
,
item1
.
balance_sheet
.
january
,
item1
.
balance_sheet
.
february
,
item1
.
balance_sheet
.
march
,
item1
.
balance_sheet
.
april
,
item1
.
balance_sheet
.
may
,
item1
.
balance_sheet
.
june
,
item1
.
balance_sheet
.
july
,
item1
.
balance_sheet
.
august
,
item1
.
balance_sheet
.
september
,
item1
.
balance_sheet
.
october
,
item1
.
balance_sheet
.
november
,
item1
.
balance_sheet
.
december
,
item1
.
balance_sheet
.
total_current_year
,
item1
.
balance_sheet
.
total_next_year
,
item1
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
itemss
.
type_report_id
,
itemss
.
id
,
itemss
.
parent
,
itemss
.
formula
,
itemss
.
level
,
itemss
.
description
,
itemss
.
balance_sheet
.
total_actual_before
,
itemss
.
balance_sheet
.
january
,
itemss
.
balance_sheet
.
february
,
itemss
.
balance_sheet
.
march
,
itemss
.
balance_sheet
.
april
,
itemss
.
balance_sheet
.
may
,
itemss
.
balance_sheet
.
june
,
itemss
.
balance_sheet
.
july
,
itemss
.
balance_sheet
.
august
,
itemss
.
balance_sheet
.
september
,
itemss
.
balance_sheet
.
october
,
itemss
.
balance_sheet
.
november
,
itemss
.
balance_sheet
.
december
,
itemss
.
balance_sheet
.
total_current_year
,
itemss
.
balance_sheet
.
total_next_year
,
itemss
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
items
.
type_report_id
,
items
.
id
,
items
.
parent
,
items
.
formula
,
items
.
level
,
items
.
description
,
items
.
balance_sheet
.
total_actual_before
,
items
.
balance_sheet
.
january
,
items
.
balance_sheet
.
february
,
items
.
balance_sheet
.
march
,
items
.
balance_sheet
.
april
,
items
.
balance_sheet
.
may
,
items
.
balance_sheet
.
june
,
items
.
balance_sheet
.
july
,
items
.
balance_sheet
.
august
,
items
.
balance_sheet
.
september
,
items
.
balance_sheet
.
october
,
items
.
balance_sheet
.
november
,
items
.
balance_sheet
.
december
,
items
.
balance_sheet
.
total_current_year
,
items
.
balance_sheet
.
total_next_year
,
items
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
val
.
type_report_id
,
val
.
id
,
val
.
parent
,
val
.
formula
,
val
.
level
,
val
.
description
,
val
.
balance_sheet
.
total_actual_before
,
val
.
balance_sheet
.
january
,
val
.
balance_sheet
.
february
,
val
.
balance_sheet
.
march
,
val
.
balance_sheet
.
april
,
val
.
balance_sheet
.
may
,
val
.
balance_sheet
.
june
,
val
.
balance_sheet
.
july
,
val
.
balance_sheet
.
august
,
val
.
balance_sheet
.
september
,
val
.
balance_sheet
.
october
,
val
.
balance_sheet
.
november
,
val
.
balance_sheet
.
december
,
val
.
balance_sheet
.
total_current_year
,
val
.
balance_sheet
.
total_next_year
,
val
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
i
.
type_report_id
,
i
.
id
,
i
.
parent
,
i
.
formula
,
i
.
level
,
i
.
description
,
i
.
balance_sheet
.
total_actual_before
,
i
.
balance_sheet
.
january
,
i
.
balance_sheet
.
february
,
i
.
balance_sheet
.
march
,
i
.
balance_sheet
.
april
,
i
.
balance_sheet
.
may
,
i
.
balance_sheet
.
june
,
i
.
balance_sheet
.
july
,
i
.
balance_sheet
.
august
,
i
.
balance_sheet
.
september
,
i
.
balance_sheet
.
october
,
i
.
balance_sheet
.
november
,
i
.
balance_sheet
.
december
,
i
.
balance_sheet
.
total_current_year
,
i
.
balance_sheet
.
total_next_year
,
i
.
balance_sheet
.
total_more_year
])
}
}
else
{
dataTable
.
push
([
i
.
type_report_id
,
i
.
id
,
i
.
parent
,
i
.
formula
,
i
.
level
,
i
.
description
,
i
.
balance_sheet
.
total_actual_before
,
i
.
balance_sheet
.
january
,
i
.
balance_sheet
.
february
,
i
.
balance_sheet
.
march
,
i
.
balance_sheet
.
april
,
i
.
balance_sheet
.
may
,
i
.
balance_sheet
.
june
,
i
.
balance_sheet
.
july
,
i
.
balance_sheet
.
august
,
i
.
balance_sheet
.
september
,
i
.
balance_sheet
.
october
,
i
.
balance_sheet
.
november
,
i
.
balance_sheet
.
december
,
i
.
balance_sheet
.
total_current_year
,
i
.
balance_sheet
.
total_next_year
,
i
.
balance_sheet
.
total_more_year
])
}
})
}
else
{
dataTable
.
push
([
item
.
type_report_id
,
item
.
id
,
item
.
parent
,
item
.
formula
,
item
.
level
,
item
.
description
,
item
.
balance_sheet
.
total_actual_before
,
item
.
balance_sheet
.
january
,
item
.
balance_sheet
.
february
,
item
.
balance_sheet
.
march
,
item
.
balance_sheet
.
april
,
item
.
balance_sheet
.
may
,
item
.
balance_sheet
.
june
,
item
.
balance_sheet
.
july
,
item
.
balance_sheet
.
august
,
item
.
balance_sheet
.
september
,
item
.
balance_sheet
.
october
,
item
.
balance_sheet
.
november
,
item
.
balance_sheet
.
december
,
item
.
balance_sheet
.
total_current_year
,
item
.
balance_sheet
.
total_next_year
,
item
.
balance_sheet
.
total_more_year
])
}
})
console
.
log
(
dataTable
);
this
.
setState
({
dataTable
,
loading
:
false
})
let
dataTable
=
[]
let
res
=
response
.
data
.
data
console
.
log
(
res
)
const
handlePushChild
=
(
item
)
=>
{
let
indexIDzz
=
dataTable
.
findIndex
((
val
)
=>
val
[
1
]
===
item
.
id
)
if
(
indexIDzz
===
-
1
)
{
dataTable
.
push
([
item
.
type_report_id
,
item
.
id
,
item
.
parent
,
item
.
formula
,
item
.
level
,
item
.
description
,
item
.
balance_sheet
.
total_actual_before
,
item
.
balance_sheet
.
january
,
item
.
balance_sheet
.
february
,
item
.
balance_sheet
.
march
,
item
.
balance_sheet
.
april
,
item
.
balance_sheet
.
may
,
item
.
balance_sheet
.
june
,
item
.
balance_sheet
.
july
,
item
.
balance_sheet
.
august
,
item
.
balance_sheet
.
september
,
item
.
balance_sheet
.
october
,
item
.
balance_sheet
.
november
,
item
.
balance_sheet
.
december
,
item
.
balance_sheet
.
total_current_year
,
item
.
balance_sheet
.
total_next_year
,
item
.
balance_sheet
.
total_more_year
])
}
if
(
item
.
children
!==
null
)
{
if
(
item
.
children
.
length
>
0
)
{
item
.
children
.
map
((
items
,
indexs
)
=>
{
handlePushChild
(
items
)
})
}
}
}
else
{
this
.
setState
({
loading
:
false
})
}
res
.
map
((
item
,
index
)
=>
{
dataTable
.
push
([
item
.
type_report_id
,
item
.
id
,
item
.
parent
,
item
.
formula
,
item
.
level
,
item
.
description
,
item
.
balance_sheet
.
total_actual_before
,
item
.
balance_sheet
.
january
,
item
.
balance_sheet
.
february
,
item
.
balance_sheet
.
march
,
item
.
balance_sheet
.
april
,
item
.
balance_sheet
.
may
,
item
.
balance_sheet
.
june
,
item
.
balance_sheet
.
july
,
item
.
balance_sheet
.
august
,
item
.
balance_sheet
.
september
,
item
.
balance_sheet
.
october
,
item
.
balance_sheet
.
november
,
item
.
balance_sheet
.
december
,
item
.
balance_sheet
.
total_current_year
,
item
.
balance_sheet
.
total_next_year
,
item
.
balance_sheet
.
total_more_year
])
if
(
item
.
children
!==
null
)
{
if
(
item
.
children
.
length
>
0
)
{
item
.
children
.
map
((
items
,
indexs
)
=>
{
handlePushChild
(
items
)
})
}
}
})
this
.
setState
({
dataTable
,
loading
:
false
})
})
}
...
...
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