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
c2c3837e
Commit
c2c3837e
authored
Feb 01, 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
24c4918c
9616c8e3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
253 additions
and
214 deletions
+253
-214
BudgetTahunan.js
src/container/BudgetTahunan.js
+117
-97
MonthlyReport.js
src/container/MonthlyReport.js
+136
-117
No files found.
src/container/BudgetTahunan.js
View file @
c2c3837e
...
...
@@ -73,7 +73,8 @@ export default class BudgetTahunan extends Component {
loadview
:
false
,
permissionhandle
:
false
,
userType
:
''
,
PLBSFAMSubmitted
:
false
PLBSFAMSubmitted
:
false
,
PLID
:
null
}
this
.
myRef
=
React
.
createRef
()
this
.
fileHandler
=
this
.
fileHandler
.
bind
(
this
);
...
...
@@ -1090,12 +1091,26 @@ export default class BudgetTahunan extends Component {
}
getPL
(
type
)
{
let
PLID
=
null
let
payloadID
=
{
"periode"
:
this
.
state
.
periode
.
periode
,
"company_id"
:
this
.
state
.
company
.
company_id
}
console
.
log
(
payloadID
);
api
.
create
().
getPLID
(
payloadID
).
then
(
response
=>
{
console
.
log
(
response
);
if
(
response
)
{
PLID
=
response
.
data
.
data
==
null
?
null
:
response
.
data
.
data
.
profit_loss_id
}
else
{
PLID
=
null
}
this
.
setState
({
PLID
},
()
=>
{
let
payload
=
{
"report_id"
:
6
,
"report_id"
:
28
,
"revision"
:
Number
(
this
.
state
.
lastRevision
),
"periode"
:
this
.
state
.
periode
.
periode
,
"company_id"
:
this
.
state
.
company
.
company_id
,
"submission_id"
:
this
.
state
.
submission
ID
,
"submission_id"
:
this
.
state
.
PL
ID
,
"months"
:
0
,
"quarter"
:
0
,
}
...
...
@@ -1191,6 +1206,10 @@ export default class BudgetTahunan extends Component {
})
})
})
}
handleValueFormulaDBPL
=
(
indexDBCF
,
value
,
tableMeta
,
column
,
periode
,
forecast
)
=>
{
...
...
@@ -1538,11 +1557,12 @@ export default class BudgetTahunan extends Component {
createDBPL
()
{
let
payload
=
{
"submission_id"
:
this
.
state
.
submissionID
,
//
"submission_id": this.state.submissionID,
"company_id"
:
this
.
state
.
company
.
company_id
,
"periode"
:
this
.
state
.
periode
.
periode
,
"report_id"
:
1
,
"report_id"
:
28
,
"status"
:
"submitted"
,
"profit_loss_id"
:
this
.
state
.
PLID
,
"profit_loss_mb"
:
this
.
state
.
dbPL
,
"months"
:
0
,
}
...
...
src/container/MonthlyReport.js
View file @
c2c3837e
...
...
@@ -72,7 +72,8 @@ export default class MonthlyReport extends Component {
isApprovedMB
:
false
,
textRevision
:
''
,
dbCF
:
[],
PLBSFAMSubmitted
:
false
PLBSFAMSubmitted
:
false
,
PLID
:
null
}
this
.
myRef
=
React
.
createRef
()
this
.
fileHandler
=
this
.
fileHandler
.
bind
(
this
);
...
...
@@ -1383,6 +1384,20 @@ export default class MonthlyReport extends Component {
}
getPL
(
type
)
{
let
PLID
=
null
let
payloadID
=
{
"periode"
:
this
.
state
.
periode
.
periode
,
"company_id"
:
this
.
state
.
company
.
company_id
}
console
.
log
(
payloadID
);
api
.
create
().
getPLID
(
payloadID
).
then
(
response
=>
{
console
.
log
(
response
);
if
(
response
)
{
PLID
=
response
.
data
.
data
==
null
?
null
:
response
.
data
.
data
.
profit_loss_id
}
else
{
PLID
=
null
}
this
.
setState
({
PLID
},
()
=>
{
let
payload
=
{
"revision"
:
Number
(
this
.
state
.
lastRevision
),
"periode"
:
this
.
state
.
periode
.
periode
,
...
...
@@ -1390,7 +1405,7 @@ export default class MonthlyReport extends Component {
"months"
:
this
.
state
.
month
.
month_id
,
"quarter"
:
0
,
"report_id"
:
1
,
"submission_id"
:
0
"submission_id"
:
this
.
state
.
PLID
}
api
.
create
().
getHierarkiCreateReportPLMR
(
payload
).
then
((
response
)
=>
{
...
...
@@ -1505,6 +1520,9 @@ export default class MonthlyReport extends Component {
}
console
.
log
(
dataTable
);
})
})
})
}
handleValueFormulaDBPLMR
=
(
value
,
tableMeta
,
column
,
periode
,
forecast
)
=>
{
...
...
@@ -1757,13 +1775,14 @@ export default class MonthlyReport extends Component {
createPL
()
{
let
payload
=
{
"monthly_report_id"
:
this
.
state
.
monthlyReportId
,
//
"monthly_report_id": this.state.monthlyReportId,
"company_id"
:
this
.
state
.
company
.
company_id
,
"periode"
:
this
.
state
.
periode
.
periode
,
"report_id"
:
1
,
"status"
:
"submitted"
,
"months"
:
this
.
state
.
month
.
month_id
,
"quarter"
:
0
,
"profit_loss_id"
:
this
.
state
.
PLID
,
"profit_loss_mr"
:
this
.
state
.
dbPL
}
api
.
create
().
createReportPLMR
(
payload
).
then
((
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