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
c1f866f4
Commit
c1f866f4
authored
Dec 17, 2020
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
29d60692
d0db23d0
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
590 additions
and
9 deletions
+590
-9
BudgetTahunan.js
src/container/BudgetTahunan.js
+12
-7
AllDocument.js
src/container/DocumentManagement/AllDocument.js
+1
-1
CreateManagementDoc.js
src/container/DocumentManagement/CreateManagementDoc.js
+1
-0
SummaryFR.js
src/container/Laporan/SummaryFR.js
+570
-0
CorporateAnnualTargetMR.js
src/container/MonthlyReport/CorporateAnnualTargetMR.js
+6
-1
No files found.
src/container/BudgetTahunan.js
View file @
c1f866f4
...
...
@@ -69,7 +69,8 @@ export default class BudgetTahunan extends Component {
btnApprove
:
false
,
isAdmin
:
false
,
btncreate
:
false
,
loadview
:
false
loadview
:
false
,
permissionhandle
:
false
}
this
.
myRef
=
React
.
createRef
()
this
.
fileHandler
=
this
.
fileHandler
.
bind
(
this
);
...
...
@@ -166,10 +167,12 @@ export default class BudgetTahunan extends Component {
if
(
response
.
data
.
status
===
"success"
)
{
// // console.log(response);
if
(
response
.
data
.
data
.
is_approver
===
true
)
{
this
.
setState
({
isApprover
:
true
,
checkApprover
:
true
},
()
=>
this
.
getPeriode
())
this
.
setState
({
isApprover
:
true
,
permissionhandle
:
true
,
checkApprover
:
true
},
()
=>
{
this
.
getPeriode
()
})
}
else
{
this
.
setState
({
isApprover
:
false
,
checkApprover
:
false
},
()
=>
this
.
setState
({
isApprover
:
false
,
permissionhandle
:
false
,
checkApprover
:
false
},
()
=>
this
.
getDetailUser
())
}
}
else
{
...
...
@@ -489,7 +492,7 @@ export default class BudgetTahunan extends Component {
let
payload
=
{
"company_id"
:
this
.
state
.
company
.
company_id
,
"periode"
:
this
.
state
.
periode
.
periode
,
"is_approver"
:
this
.
state
.
isApprover
"is_approver"
:
this
.
state
.
permissionhandle
?
this
.
state
.
permissionhandle
:
this
.
state
.
isApprover
}
api
.
create
().
getSubmission
(
payload
).
then
(
response
=>
{
console
.
log
(
response
)
...
...
@@ -504,11 +507,13 @@ export default class BudgetTahunan extends Component {
btnApprove
:
response
.
data
.
data
.
is_submit
,
// loading: false
},
()
=>
{
// // console.log(this.state.lastStatus);
// console.log(response.data.data.is_submit);
// console.log(this.state.btnApprove)
this
.
historyApproval
()
this
.
getLatestPeriodSubmit
()
api
.
create
().
checkApprover
().
then
(
response
=>
{
// // console.log(response);
// console.log(this.state.btncreate);
// console.log(this.state.btnedit)
if
(
this
.
state
.
btncreate
===
true
&&
this
.
state
.
btnedit
===
true
)
{
this
.
setState
({
isApprover
:
false
},
()
=>
{
if
(
response
.
data
.
data
.
is_approver
===
true
)
{
...
...
src/container/DocumentManagement/AllDocument.js
View file @
c1f866f4
...
...
@@ -123,7 +123,7 @@ export default class getAllDocument extends Component {
openPopUp
=
async
(
index
,
val
,
type
)
=>
{
if
(
type
===
'download'
)
{
let
res
=
await
fetch
(
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/document/download_document?documentName=`
+
this
.
state
.
docPath
[
val
]
+
"&&fileType="
+
index
[
5
]
`
${
process
.
env
.
REACT_APP_URL_MAIN_BE
}
/public/document/download_document?documentName=`
+
this
.
state
.
docPath
[
val
]
+
"&&fileType="
+
index
[
6
]
)
res
=
await
res
.
blob
()
// console.log(res)
...
...
src/container/DocumentManagement/CreateManagementDoc.js
View file @
c1f866f4
...
...
@@ -302,6 +302,7 @@ export default class CreateManagementDoc extends Component {
})
}
}
this
.
props
.
handleLoading
(
0
)
}
deleteFile
(
e
)
{
...
...
src/container/Laporan/SummaryFR.js
0 → 100644
View file @
c1f866f4
This diff is collapsed.
Click to expand it.
src/container/MonthlyReport/CorporateAnnualTargetMR.js
View file @
c1f866f4
...
...
@@ -85,7 +85,9 @@ export default class CorporateAnnualTargetMR extends Component {
"monthly_report_id"
:
this
.
props
.
monthlyReportId
,
"months"
:
this
.
props
.
month
.
month_id
}
// console.log(payload)
api
.
create
().
getLastestUpdateMR
(
payload
).
then
(
response
=>
{
// console.log(JSON.stringify(response))
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
"success"
)
{
this
.
setState
({
...
...
@@ -102,6 +104,7 @@ export default class CorporateAnnualTargetMR extends Component {
})
}
}
else
{
// console.log('brrrrrrrr')
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
problem
,
tipeAlert
:
'error'
,
loading
:
false
})
}
})
...
...
@@ -203,6 +206,8 @@ export default class CorporateAnnualTargetMR extends Component {
})
}
}
else
{
// console.log('terrrr')
//
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
problem
,
tipeAlert
:
'error'
,
loading
:
false
})
}
console
.
log
(
dataTable
);
...
...
@@ -509,7 +514,7 @@ export default class CorporateAnnualTargetMR extends Component {
}
}
else
{
this
.
setState
({
loading
:
false
},
()
=>
{
this
.
getSubmission
()
//
this.getSubmission()
document
.
body
.
style
.
overflow
=
'unset'
;
})
}
...
...
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