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
e5afd33a
Commit
e5afd33a
authored
Nov 30, 2023
by
Riri Novita
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev-riri' into 'ENV-DEV'
Remark 2 See merge request
!2204
parents
1f30d5f4
6d7103fa
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
418 additions
and
308 deletions
+418
-308
index.js
src/api/index.js
+2
-0
BudgetTahunan.js
src/container/BudgetTahunan/BudgetTahunan.js
+34
-25
LOCFMR.js
src/container/MonthlyReport/LOCFMR.js
+215
-127
ListOfCreditFacilitiesMR.js
src/container/MonthlyReport/ListOfCreditFacilitiesMR.js
+167
-156
No files found.
src/api/index.js
View file @
e5afd33a
...
...
@@ -175,6 +175,7 @@ const create = (type = "") => {
const
createAllItemReport
=
(
body
)
=>
api
.
post
(
'item_report/create_all_item_report'
,
body
)
const
deleteAllItemReport
=
(
body
)
=>
api
.
post
(
'/item_report/delete_all_item_report'
,
body
)
const
deleteAllItemReportLOCF
=
(
body
)
=>
api
.
post
(
'/item_report/delete_all_item_report_locf'
,
body
)
const
getAllSettingBusinessBank
=
(
body
)
=>
api
.
post
(
'setting/get_all_setting_by_group_name'
,
body
)
//PARAMETER
const
getAllParameter
=
()
=>
api
.
get
(
'/setting/get_all_setting'
)
...
...
@@ -693,6 +694,7 @@ const create = (type = "") => {
createOpetaingInd
,
uploadMasterBudget
,
getAllSettingByType
,
getAllSettingBusinessBank
,
getOpetratingIndID
,
createAllItemReport
,
deleteAllItemReport
,
...
...
src/container/BudgetTahunan/BudgetTahunan.js
View file @
e5afd33a
...
...
@@ -2522,7 +2522,7 @@ export default class BudgetTahunan extends Component {
"month"
:
""
,
"quartal"
:
""
,
"type_report_name"
:
"Master Budget"
,
"currency_id"
:
defaultCurrency
.
id
"currency_id"
:
defaultCurrency
.
id
}
// console.log(payload);
api
.
create
().
createDownloadFile
(
payload
).
then
((
response
)
=>
{
...
...
@@ -2570,34 +2570,43 @@ export default class BudgetTahunan extends Component {
let
datas
=
data
.
findIndex
((
val
)
=>
val
[
4
]
==
items
)
let
report
=
data
[
datas
]
if
(
items
===
6
)
{
let
resReal
=
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/cash_flow/master_budget/export_master_budget?submission_id=
${
submissionID
}
&company_id=
${
company
.
company_id
}
&year=
${
periode
.
periode
}
&revision=
${
report
[
2
]}
&report_id=
${
report
[
4
]}
&download_file_report_id=
${
downloadedFileReportId
}
¤cy_id=
${
defaultCurrency
.
id
}
`
let
resNull
=
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/cash_flow/master_budget/export_master_budget?submission_id=&&company_id=
${
company
.
company_id
}
&year=
${
periode
.
periode
}
&revision=
${
report
[
2
]}
&report_id=
${
report
[
4
]}
&download_file_report_id=
${
downloadedFileReportId
}
¤cy_id=
${
defaultCurrency
.
id
}
`
try
{
let
resReal
=
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/cash_flow/master_budget/export_master_budget?submission_id=
${
submissionID
}
&company_id=
${
company
.
company_id
}
&year=
${
periode
.
periode
}
&revision=
${
report
[
2
]}
&report_id=
${
report
[
4
]}
&download_file_report_id=
${
downloadedFileReportId
}
¤cy_id=
${
defaultCurrency
.
id
}
`
let
resNull
=
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/cash_flow/master_budget/export_master_budget?submission_id=&&company_id=
${
company
.
company_id
}
&year=
${
periode
.
periode
}
&revision=
${
report
[
2
]}
&report_id=
${
report
[
4
]}
&download_file_report_id=
${
downloadedFileReportId
}
¤cy_id=
${
defaultCurrency
.
id
}
`
let
res
=
await
fetch
(
submissionID
==
null
?
resNull
:
resReal
)
if
(
res
.
size
>
0
)
{
let
url
=
window
.
URL
.
createObjectURL
(
res
);
let
a
=
document
.
createElement
(
'a'
);
a
.
href
=
url
;
}
if
(
res
.
status
===
200
)
{
result
=
[...
result
,
res
];
let
res
=
await
fetch
(
submissionID
==
null
?
resNull
:
resReal
)
if
(
res
.
size
>
0
)
{
let
url
=
window
.
URL
.
createObjectURL
(
res
);
let
a
=
document
.
createElement
(
'a'
);
a
.
href
=
url
;
}
if
(
res
.
status
===
200
)
{
result
=
[...
result
,
res
];
}
}
catch
(
error
)
{
alert
(
error
)
}
}
else
{
let
resReal
=
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/master_budget/export_master_budget?submission_id=
${
submissionID
}
&report_id=
${
report
[
4
]}
&company_id=
${
company
.
company_id
}
&year=
${
periode
.
periode
}
&revision=
${
report
[
2
]}
&download_file_report_id=
${
downloadedFileReportId
}
¤cy_id=
${
defaultCurrency
.
id
}
`
let
resNull
=
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/master_budget/export_master_budget?submission_id=&report_id=
${
report
[
4
]}
&company_id=
${
company
.
company_id
}
&year=
${
periode
.
periode
}
&revision=
${
report
[
2
]}
&download_file_report_id=
${
downloadedFileReportId
}
¤cy_id=
${
defaultCurrency
.
id
}
`
try
{
let
resReal
=
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/master_budget/export_master_budget?submission_id=
${
submissionID
}
&report_id=
${
report
[
4
]}
&company_id=
${
company
.
company_id
}
&year=
${
periode
.
periode
}
&revision=
${
report
[
2
]}
&download_file_report_id=
${
downloadedFileReportId
}
¤cy_id=
${
defaultCurrency
.
id
}
`
let
resNull
=
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/transaction/master_budget/export_master_budget?submission_id=&report_id=
${
report
[
4
]}
&company_id=
${
company
.
company_id
}
&year=
${
periode
.
periode
}
&revision=
${
report
[
2
]}
&download_file_report_id=
${
downloadedFileReportId
}
¤cy_id=
${
defaultCurrency
.
id
}
`
let
res
=
await
fetch
(
submissionID
==
null
?
resNull
:
resReal
)
if
(
res
.
size
>
0
)
{
let
url
=
window
.
URL
.
createObjectURL
(
res
);
let
a
=
document
.
createElement
(
'a'
);
a
.
href
=
url
;
}
if
(
res
.
status
===
200
)
{
result
=
[...
result
,
res
];
let
res
=
await
fetch
(
submissionID
==
null
?
resNull
:
resReal
)
if
(
res
.
size
>
0
)
{
let
url
=
window
.
URL
.
createObjectURL
(
res
);
let
a
=
document
.
createElement
(
'a'
);
a
.
href
=
url
;
}
if
(
res
.
status
===
200
)
{
result
=
[...
result
,
res
];
}
}
catch
(
error
)
{
alert
(
error
)
}
}
}
...
...
src/container/MonthlyReport/LOCFMR.js
View file @
e5afd33a
This diff is collapsed.
Click to expand it.
src/container/MonthlyReport/ListOfCreditFacilitiesMR.js
View file @
e5afd33a
This diff is collapsed.
Click to expand it.
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