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
6915602c
Commit
6915602c
authored
Jan 28, 2021
by
Riri Novita
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://103.44.149.204/d.arizona/tia-dev
into riri
parents
8a0bfc81
d0313fc0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
SubHolding.js
src/container/Laporan/SubHolding.js
+1
-1
MonthlyReport.js
src/container/MonthlyReport.js
+3
-3
BalanceSheetMR.js
src/container/MonthlyReport/BalanceSheetMR.js
+1
-1
FixedAssetsMovementMR.js
src/container/MonthlyReport/FixedAssetsMovementMR.js
+1
-1
No files found.
src/container/Laporan/SubHolding.js
View file @
6915602c
...
@@ -2405,7 +2405,7 @@ export default class SubHolding extends Component {
...
@@ -2405,7 +2405,7 @@ export default class SubHolding extends Component {
this
.
getReportType
()
this
.
getReportType
()
})}
})}
disableClearable
disableClearable
style
=
{{
width
:
250
,
marginLeft
:
10
}}
style
=
{{
width
:
250
}}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"Months"
margin
=
"normal"
style
=
{{
marginTop
:
7
}}
/>
}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"Months"
margin
=
"normal"
style
=
{{
marginTop
:
7
}}
/>
}
value
=
{
this
.
state
.
month
}
value
=
{
this
.
state
.
month
}
/
>
/
>
...
...
src/container/MonthlyReport.js
View file @
6915602c
...
@@ -1079,7 +1079,7 @@ export default class MonthlyReport extends Component {
...
@@ -1079,7 +1079,7 @@ export default class MonthlyReport extends Component {
}
}
})
})
console
.
log
(
dataTable
)
console
.
log
(
dataTable
)
this
.
setState
({
dbCF
:
dataTable
,
loading
:
false
},
()
=>
{
this
.
setState
({
dbCF
:
dataTable
},
()
=>
{
this
.
olahDataCashFlow
(
this
.
state
.
dbCF
,
type
)
this
.
olahDataCashFlow
(
this
.
state
.
dbCF
,
type
)
})
})
}
}
...
@@ -1797,7 +1797,7 @@ export default class MonthlyReport extends Component {
...
@@ -1797,7 +1797,7 @@ export default class MonthlyReport extends Component {
getOptionLabel
=
{(
option
)
=>
option
.
name
}
getOptionLabel
=
{(
option
)
=>
option
.
name
}
style
=
{{
width
:
250
}}
style
=
{{
width
:
250
}}
onChange
=
{(
event
,
newInputValue
)
=>
{
onChange
=
{(
event
,
newInputValue
)
=>
{
this
.
setState
({
selectedStatus
:
newInputValue
},
()
=>
{
this
.
setState
({
selectedStatus
:
newInputValue
,
loading
:
true
},
()
=>
{
console
.
log
(
newInputValue
);
console
.
log
(
newInputValue
);
this
.
getCompanySubmitted
()
this
.
getCompanySubmitted
()
})
})
...
@@ -1823,7 +1823,7 @@ export default class MonthlyReport extends Component {
...
@@ -1823,7 +1823,7 @@ export default class MonthlyReport extends Component {
{...
this
.
state
.
listCompany
}
{...
this
.
state
.
listCompany
}
id
=
"company"
id
=
"company"
disabled
=
{
this
.
state
.
listCompany
===
null
?
true
:
false
}
disabled
=
{
this
.
state
.
listCompany
===
null
?
true
:
false
}
onChange
=
{(
event
,
newInputValue
)
=>
this
.
setState
({
company
:
newInputValue
},
()
=>
{
onChange
=
{(
event
,
newInputValue
)
=>
this
.
setState
({
company
:
newInputValue
,
loading
:
true
},
()
=>
{
this
.
getMonthlyReportID
()
this
.
getMonthlyReportID
()
})}
})}
disableClearable
disableClearable
...
...
src/container/MonthlyReport/BalanceSheetMR.js
View file @
6915602c
...
@@ -289,7 +289,7 @@ export default class BalanceSheetMR extends Component {
...
@@ -289,7 +289,7 @@ export default class BalanceSheetMR extends Component {
downloadTemplate
=
async
()
=>
{
downloadTemplate
=
async
()
=>
{
let
res
=
await
fetch
(
let
res
=
await
fetch
(
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/balance_sheet/monthly_report/download_template?report_id=
${
this
.
props
.
report_id
}
&&company_id=
${
this
.
props
.
company
.
company_id
}
&&year=
${
this
.
props
.
periode
}
`
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/balance_sheet/monthly_report/download_template?report_id=
${
this
.
props
.
report_id
}
&&company_id=
${
this
.
props
.
company
.
company_id
}
&&year=
${
this
.
props
.
periode
}
&&months=
${
this
.
props
.
month
.
month_id
}
`
)
)
res
=
await
res
.
blob
()
res
=
await
res
.
blob
()
// console.log(res)
// console.log(res)
...
...
src/container/MonthlyReport/FixedAssetsMovementMR.js
View file @
6915602c
...
@@ -232,7 +232,7 @@ export default class FixedAssetsMovementMR extends Component {
...
@@ -232,7 +232,7 @@ export default class FixedAssetsMovementMR extends Component {
downloadTemplate
=
async
()
=>
{
downloadTemplate
=
async
()
=>
{
let
res
=
await
fetch
(
let
res
=
await
fetch
(
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/fam/monthly_report/download_template?report_id=
${
this
.
props
.
report_id
}
&&company_id=
${
this
.
props
.
company
.
company_id
}
&&year=
${
this
.
props
.
periode
}
`
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/fam/monthly_report/download_template?report_id=
${
this
.
props
.
report_id
}
&&company_id=
${
this
.
props
.
company
.
company_id
}
&&year=
${
this
.
props
.
periode
}
&&months=
${
this
.
props
.
month
.
month_id
}
`
)
)
res
=
await
res
.
blob
()
res
=
await
res
.
blob
()
console
.
log
(
res
);
console
.
log
(
res
);
...
...
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