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
c767d45f
Commit
c767d45f
authored
Feb 01, 2021
by
rifkaki
Browse files
Options
Browse Files
Download
Plain Diff
ytd
parents
bce6e759
6dfdcdd4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
68 additions
and
10 deletions
+68
-10
index.js
src/api/index.js
+4
-2
TableSubHolding.js
src/container/Laporan/TableSubHolding.js
+54
-0
SummaryOfTriputra.js
src/container/SummaryTriputra/SummaryOfTriputra.js
+10
-8
No files found.
src/api/index.js
View file @
c767d45f
...
...
@@ -266,6 +266,7 @@ const create = (type = "") => {
const
getDashboardCAT
=
(
body
)
=>
api
.
post
(
'/dashboard/cat'
,
body
)
const
getHierarkiReportYtd
=
(
body
)
=>
api
.
post
(
'/transaction/summary/ytd/get_report_hierarki'
,
body
)
const
getHierarkiReportHistorical
=
(
body
)
=>
api
.
post
(
'/transaction/historical/get_historical_hierarki'
,
body
)
const
getHierarkiReportMTD
=
(
body
)
=>
api
.
post
(
'/transaction/summary/mtd/get_report_hierarki'
,
body
)
//CASH FLOW
const
getDetailReportCF
=
(
body
)
=>
api
.
post
(
'/transaction/cash_flow/master_budget/get_report_hierarki'
,
body
)
...
...
@@ -638,8 +639,9 @@ const create = (type = "") => {
createReportPLMB
,
createReportPLMR
,
getPLID
,
getHierarkiReportYtd
,
getHierarkiReportHistorical
getHierarkiReportHistorical
,
getHierarkiReportMTD
,
getHierarkiReportYtd
}
}
...
...
src/container/Laporan/TableSubHolding.js
View file @
c767d45f
...
...
@@ -3913,6 +3913,60 @@ export default class TableSubHolding extends Component {
)
}
}
}, {
name: "Notes",
options: {
customHeadRender: (columnMeta) => (
dataTable2.length > 0 ?
<TableCell style={{ ...stylenotes, top: 0, zIndex: 103, backgroundColor: '#1c71b8', width: 96 }}>
<Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
</TableCell> :
<TableCell style={{ ...styleNotesEmpty, top: 0, zIndex: 103, backgroundColor: '#1c71b8', width: 96 }}>
<Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
</TableCell>
),
setCellProps: () => ({
style: {
position: "sticky",
background: "white",
zIndex: 101,
left: 350
}
}),
customBodyRender: (value, tableMeta, updateValue) => {
return (
<div style={{ textAlign: 'right' }}>
<div style={{ flex: 1 }}>
{tableMeta.rowData[0] === 4 ? null : tableMeta.rowData[4] === 0 ? null : tableMeta.rowData[4] === 1 ? null :
<FormControlLabel
style={{ margin: 0 }}
// value={tableMeta.rowData[51]}
control={
<Input
disableUnderline={true}
style={{ color: "#5198ea", fontSize: 12, textAlign: 'left', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
type="text"
placeholder=""
disabled={true}
// value={tableMeta.rowData[51]}
defaultValue={tableMeta.rowData[51]}
inputProps={{
style: {
color: "#5198ea"
}
}}
// onBlur={(event) => {
// handleNotes(event.target.value, tableMeta, 0)
// }}
/>
}
/>
}
</div>
</div>
)
}
}
}, {
name: `MB ${this.props.periode}`,
options: {
src/container/SummaryTriputra/SummaryOfTriputra.js
View file @
c767d45f
...
...
@@ -32,6 +32,7 @@ export default class SummaryOfTriputra extends Component {
loading
:
false
,
previewTable
:
false
,
listMonths
:
null
,
month
:
null
}
}
...
...
@@ -193,7 +194,7 @@ export default class SummaryOfTriputra extends Component {
let
index
=
data
.
findIndex
((
val
)
=>
val
.
month_name
==
month
)
console
.
log
(
index
)
console
.
log
(
monthData
)
this
.
setState
({
listMonths
:
defaultProps
,
month
:
index
==
-
1
?
monthData
[
0
]
.
month_name
:
monthData
[
index
].
month_name
},
()
=>
{
this
.
setState
({
listMonths
:
defaultProps
,
month
:
index
==
-
1
?
monthData
[
0
]
:
monthData
[
index
]
},
()
=>
{
this
.
getDataTable
()
})
console
.
log
(
this
.
state
.
month
)
...
...
@@ -264,18 +265,18 @@ export default class SummaryOfTriputra extends Component {
getDataTable
()
{
let
payload
=
{
"report_type"
:
1
,
"periode"
:
"2021"
,
"months"
:
1
"report_type"
:
this
.
state
.
report
.
value
,
"periode"
:
this
.
state
.
periode
.
periode
,
"months"
:
this
.
state
.
month
.
month_id
}
let
newPayload
=
{
"periode"
:
this
.
state
.
periode
.
periode
,
"report_type"
:
"historical"
}
if
(
this
.
state
.
report
.
value
===
1
)
{
// api.create().getDetailReportMB
(payload).then(response => {
// //
console.log(response);
// //
console.log(payload)
api
.
create
().
getHierarkiReportMTD
(
payload
).
then
(
response
=>
{
console
.
log
(
response
);
console
.
log
(
payload
)
let
dataTable
=
[]
// if (response.data) {
// let res = response.data.data
...
...
@@ -355,7 +356,7 @@ export default class SummaryOfTriputra extends Component {
// } else {
// this.setState({ dataTable: [], previewTable: false, loading: false, previewDownload: false })
// }
//
})
})
}
else
if
(
this
.
state
.
report
.
value
===
2
)
{
api
.
create
().
getHierarkiReportYtd
(
payload
).
then
(
response
=>
{
console
.
log
(
payload
);
...
...
@@ -833,6 +834,7 @@ export default class SummaryOfTriputra extends Component {
width
=
{
this
.
props
.
width
}
height
=
{
this
.
props
.
height
}
open
=
{
this
.
props
.
open
}
month
=
{
this
.
state
.
month
}
type
=
{
this
.
state
.
report
?
this
.
state
.
report
.
value
:
1
}
dataTable
=
{
this
.
state
.
dataTable
}
periode
=
{
this
.
state
.
periode
?
this
.
state
.
periode
.
periode
:
null
}
...
...
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