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
c51075bb
Commit
c51075bb
authored
Sep 01, 2023
by
Riri Novita
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev/riri' into 'ENV-DEV'
update issue CAT See merge request
!1971
parents
cf122e29
9a5b3081
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
31 deletions
+9
-31
index.js
src/api/index.js
+0
-6
BudgetTahunan.js
src/container/BudgetTahunan/BudgetTahunan.js
+2
-13
CorporateAnnualTarget.js
src/container/BudgetTahunan/CorporateAnnualTarget.js
+7
-12
No files found.
src/api/index.js
View file @
c51075bb
...
...
@@ -543,10 +543,6 @@ const create = (type = "") => {
const
uploadSimulasiMROI
=
(
body
)
=>
api
.
post
(
'transaction/operating_indicator/monthly_report/import_monthly_report/other_currency_existing'
,
body
)
const
uploadSimulasiROOI
=
(
body
)
=>
api
.
post
(
'transaction/operating_indicator/rolling_outlook/import_rolling_outlook/other_currency_existing'
,
body
)
// Delete Duplicate CAT
const
deleteDuplicateSubmitCAT
=
(
body
)
=>
api
.
post
(
'transaction/master_budget/delete_duplicate_submit_item_report'
,
body
)
const
deleteDuplicateImportCAT
=
(
body
)
=>
api
.
post
(
'transaction/master_budget/delete_duplicate_import_item_report'
,
body
)
// Superadmin Approve
const
getListApprover
=
(
report
,
monthlyReportId
)
=>
api
.
get
(
`transaction/
${
report
}
/get_approver/
${
monthlyReportId
}
`
)
const
getIdToken
=
(
userId
)
=>
api
.
get
(
`transaction/get_token/
${
userId
}
`
)
...
...
@@ -942,8 +938,6 @@ const create = (type = "") => {
uploadSimulasiOperatingInd
,
uploadSimulasiMROI
,
uploadSimulasiROOI
,
deleteDuplicateSubmitCAT
,
deleteDuplicateImportCAT
}
}
...
...
src/container/BudgetTahunan/BudgetTahunan.js
View file @
c51075bb
...
...
@@ -2346,29 +2346,18 @@ export default class BudgetTahunan extends Component {
if
(
response
.
data
.
status
===
'success'
)
{
if
(
type
===
"PL"
||
type
===
"DraftPL"
)
{
this
.
setState
({
visiblePL
:
false
,
visibleBudgetTahunan
:
true
,
loading
:
false
})
this
.
getSubmission
(
type
)
}
else
if
(
type
===
"TP"
||
type
===
"DraftTP"
)
{
this
.
setState
({
visibleTP
:
false
,
visibleBudgetTahunan
:
true
,
loading
:
false
})
this
.
getSubmission
(
type
)
}
else
if
(
type
===
"BS"
||
type
===
"DraftBS"
)
{
this
.
setState
({
visibleBS
:
false
,
visibleBudgetTahunan
:
true
,
loading
:
false
})
this
.
getSubmission
(
type
)
}
else
if
(
type
===
"FAM"
||
type
===
"DraftFAM"
)
{
this
.
setState
({
visibleFAM
:
false
,
visibleBudgetTahunan
:
true
,
loading
:
false
})
this
.
getSubmission
(
type
)
}
else
if
(
type
===
"CAT"
||
type
===
"DraftCAT"
)
{
api
.
create
().
deleteDuplicateSubmitCAT
(
data
).
then
((
res
)
=>
{
console
.
log
(
res
)
if
(
res
.
data
.
status
===
"success"
)
{
this
.
setState
({
loading
:
false
,
visibleCF
:
false
,
visibleBudgetTahunan
:
true
})
this
.
getSubmission
(
type
)
}
})
this
.
setState
({
visibleCF
:
false
,
visibleBudgetTahunan
:
true
,
loading
:
false
})
}
else
{
this
.
setState
({
visibleBudgetTahunan
:
true
,
visiblePL
:
false
,
visibleTP
:
false
,
visibleBS
:
false
,
visibleFAM
:
false
,
visibleCAT
:
false
,
loading
:
false
})
this
.
getSubmission
(
type
)
}
//
this.getSubmission(type)
this
.
getSubmission
(
type
)
}
else
{
console
.
log
(
response
.
data
);
if
(
response
.
data
.
message
==
"Please Set Up Rate Currency First"
)
{
...
...
src/container/BudgetTahunan/CorporateAnnualTarget.js
View file @
c51075bb
...
...
@@ -662,18 +662,13 @@ export default class CorporateAnnualTarget extends Component {
if
(
response
.
data
)
{
if
(
response
.
ok
)
{
if
(
response
.
data
.
status
===
"success"
)
{
api
.
create
().
deleteDuplicateImportCAT
(
body
).
then
((
res
)
=>
{
console
.
log
(
res
)
if
(
response
.
data
.
status
===
"success"
)
{
if
(
type
==
'submitted'
)
{
this
.
props
.
getReport
(
body
,
'CAT'
)
}
else
{
this
.
props
.
getReport
(
body
,
'DraftCAT'
)
}
this
.
setState
({
loading
:
false
})
this
.
props
.
onClickClose
()
}
})
if
(
type
==
'submitted'
)
{
this
.
props
.
getReport
(
body
,
'CAT'
)
}
else
{
this
.
props
.
getReport
(
body
,
'DraftCAT'
)
}
this
.
setState
({
loading
:
false
})
this
.
props
.
onClickClose
()
// this.props.getReport()
}
else
{
if
(
response
.
data
?.
message
==
"Please Set Up Rate Currency First"
)
{
...
...
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