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
70c7ed28
Commit
70c7ed28
authored
Apr 15, 2021
by
d.arizona
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update create db pl
parent
c0898c4f
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
517 additions
and
7 deletions
+517
-7
index.js
src/api/index.js
+6
-2
OutlookPA.js
src/container/OutlookPA.js
+1
-2
RollingOutlook.js
src/container/RollingOutlook.js
+500
-1
ProfitLossRO.js
src/container/RollingOutlook/ProfitLossRO.js
+10
-2
No files found.
src/api/index.js
View file @
70c7ed28
...
...
@@ -363,7 +363,9 @@ const create = (type = "") => {
const
createCFOLPA
=
(
body
)
=>
api
.
post
(
'transaction/cash_flow/outlook_pa/create_outlook_report'
,
body
)
const
getHierarkiDBPLOLPA
=
(
body
)
=>
api
.
post
(
'transaction/db_profit_loss/outlook_pa/get_report_hierarki'
,
body
)
const
createDBPLOLPA
=
(
body
)
=>
api
.
post
(
'transaction/db_profit_loss/outlook_pa/create_outlook_report'
,
body
)
const
getHierarkiDBPLRO
=
(
body
)
=>
api
.
post
(
'transaction/db_profit_loss/rolling_outlook/get_report_hierarki'
,
body
)
const
createDBPLRO
=
(
body
)
=>
api
.
post
(
'transaction/db_profit_loss/rolling_outlook/create_rolling_outlook'
,
body
)
// Monthly
const
getMonthlyReport
=
(
body
)
=>
api
.
post
(
'transaction/monthly_report/get_all_report'
,
body
)
const
submitMonthlyReport
=
(
body
)
=>
api
.
post
(
'transaction/monthly_report/submit_monthly_report'
,
body
)
...
...
@@ -796,7 +798,9 @@ const create = (type = "") => {
getHierarkiCFOLPA
,
createCFOLPA
,
getHierarkiDBPLOLPA
,
createDBPLOLPA
createDBPLOLPA
,
getHierarkiDBPLRO
,
createDBPLRO
}
}
...
...
src/container/OutlookPA.js
View file @
70c7ed28
...
...
@@ -821,7 +821,7 @@ export default class OutlookPA extends Component {
"revision"
:
Number
(
this
.
state
.
lastRevision
),
"periode"
:
this
.
state
.
periode
.
periode
,
"company_id"
:
this
.
state
.
company
.
company_id
,
"
submission
_id"
:
this
.
state
.
PLID
,
"
outlook_pa
_id"
:
this
.
state
.
PLID
,
}
api
.
create
().
getHierarkiDBPLOLPA
(
payload
).
then
(
response
=>
{
// console.log(response);
...
...
@@ -1282,7 +1282,6 @@ export default class OutlookPA extends Component {
"status"
:
"submitted"
,
"profit_loss_id"
:
this
.
state
.
PLID
,
"profit_loss_olpa"
:
this
.
state
.
dbPL
,
"months"
:
0
,
}
console
.
log
(
this
.
state
.
dbPL
)
// console.log(JSON.stringify(payload))
...
...
src/container/RollingOutlook.js
View file @
70c7ed28
This diff is collapsed.
Click to expand it.
src/container/RollingOutlook/ProfitLossRO.js
View file @
70c7ed28
...
...
@@ -405,7 +405,11 @@ export default class ProfitLossROO extends Component {
console
.
log
(
response
);
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
"success"
)
{
this
.
props
.
refresh
()
if
(
type
==
'submitted'
)
{
this
.
props
.
refresh
(
'PL'
)
}
else
{
this
.
props
.
refresh
()
}
this
.
props
.
onClickClose
()
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
data
.
message
,
tipeAlert
:
'warning'
,
loading
:
false
,
handleTekTekTek
:
0
},
()
=>
{
...
...
@@ -573,7 +577,11 @@ export default class ProfitLossROO extends Component {
if
(
response
.
ok
)
{
if
(
response
.
data
.
status
===
"success"
)
{
this
.
props
.
onClickClose
()
this
.
props
.
refresh
()
if
(
type
==
'submitted'
)
{
this
.
props
.
refresh
(
'PL'
)
}
else
{
this
.
props
.
refresh
()
}
// this.props.onClickClose()
// this.props.getReport()
}
else
{
...
...
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