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
a407b909
Commit
a407b909
authored
Oct 05, 2023
by
Riri Novita
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update MR
parent
af827e20
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
59 additions
and
59 deletions
+59
-59
BalanceSheetMR.js
src/container/MonthlyReport/BalanceSheetMR.js
+11
-11
CashFlowMR.js
src/container/MonthlyReport/CashFlowMR.js
+1
-1
CorporateAnnualTargetMR.js
src/container/MonthlyReport/CorporateAnnualTargetMR.js
+1
-1
FixedAssetsMovementMR.js
src/container/MonthlyReport/FixedAssetsMovementMR.js
+9
-9
ListOfCreditFacilitiesMR.js
src/container/MonthlyReport/ListOfCreditFacilitiesMR.js
+37
-37
No files found.
src/container/MonthlyReport/BalanceSheetMR.js
View file @
a407b909
This diff is collapsed.
Click to expand it.
src/container/MonthlyReport/CashFlowMR.js
View file @
a407b909
...
...
@@ -610,7 +610,7 @@ export default class CashFlowMR extends Component {
type
=
"text"
placeholder
=
""
disabled
=
{
true
}
value
=
{
this
.
props
.
defaultCurrency
.
id
==
1
?
(
this
.
props
.
PLBSFAMSubmitted
?
fixNumber
(
Number
(
tableMeta
.
rowData
[
6
].
value
),
1
)
:
fixNumber
(
Number
(
handleValueFormula
(
tableMeta
,
6
)),
1
))
:
this
.
props
.
PLBSFAMSubmitted
?
Number
(
tableMeta
.
rowData
[
6
].
value
)
:
Number
(
handleValueFormula
(
tableMeta
,
6
))}
value
=
{
this
.
props
.
defaultCurrency
.
id
==
1
?
(
this
.
props
.
PLBSFAMSubmitted
?
fixNumber
(
Number
(
tableMeta
.
rowData
[
6
].
value
),
1
)
:
fixNumber
(
Number
(
handleValueFormula
(
tableMeta
,
6
)),
1
))
:
this
.
props
.
PLBSFAMSubmitted
?
Number
(
tableMeta
.
rowData
[
6
].
value
)
==
0
?
"0.0"
:
Number
(
tableMeta
.
rowData
[
6
].
value
)
:
Number
(
handleValueFormula
(
tableMeta
,
6
))
==
0
?
"0.0"
:
Number
(
handleValueFormula
(
tableMeta
,
6
))}
/
>
<
/span
>
:
...
...
src/container/MonthlyReport/CorporateAnnualTargetMR.js
View file @
a407b909
...
...
@@ -1755,7 +1755,7 @@ export default class CorporateAnnualTargetMR extends Component {
style
=
{{
color
:
this
.
state
.
get_for
==
'view'
?
"black"
:
handleAction
(
tableMeta
.
rowData
[
2
],
tableMeta
.
rowData
[
0
],
tableMeta
)
?
"#5198ea"
:
'black'
,
fontSize
:
12
,
textAlign
:
'right'
,
borderColor
:
'transparent'
,
margin
:
0
,
width
:
96
,
backgroundColor
:
'transparent'
}}
type
=
"text"
placeholder
=
""
value
=
{
Number
(
value
)
==
0
?
"0.0"
:
this
.
props
.
defaultCurrency
.
id
==
1
?
(
tableMeta
.
rowData
[
0
]
===
5
||
tableMeta
.
rowData
[
0
]
===
6
?
fixNumber
(
Number
(
handleValueFormula
(
value
,
tableMeta
,
tableMeta
.
columnIndex
)),
1
)
:
fixNumber
(
Number
(
value
),
1
))
:
(
tableMeta
.
rowData
[
0
]
===
5
||
tableMeta
.
rowData
[
0
]
===
6
?
Number
(
handleValueFormula
(
value
,
tableMeta
,
tableMeta
.
columnIndex
))
:
Number
(
value
))}
value
=
{
this
.
props
.
defaultCurrency
.
id
==
1
?
(
tableMeta
.
rowData
[
0
]
===
5
||
tableMeta
.
rowData
[
0
]
===
6
?
fixNumber
(
Number
(
handleValueFormula
(
value
,
tableMeta
,
tableMeta
.
columnIndex
)),
1
)
:
fixNumber
(
Number
(
value
),
1
))
:
(
tableMeta
.
rowData
[
0
]
===
5
||
tableMeta
.
rowData
[
0
]
===
6
?
(
Number
(
handleValueFormula
(
value
,
tableMeta
,
tableMeta
.
columnIndex
))
==
0
?
"0.0"
:
Number
(
handleValueFormula
(
value
,
tableMeta
,
tableMeta
.
columnIndex
)))
:
Number
(
value
)
==
0
?
"0.0"
:
Number
(
value
))}
// disabled={this.props.isApprover ? true : ((this.props.lastStatus == 'SUBMIT' || this.props.lastStatus == 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
disabled
=
{
this
.
state
.
get_for
==
'view'
?
true
:
!
handleAction
(
tableMeta
.
rowData
[
2
],
tableMeta
.
rowData
[
0
],
tableMeta
)}
decimalScale
=
{
1
}
...
...
src/container/MonthlyReport/FixedAssetsMovementMR.js
View file @
a407b909
This diff is collapsed.
Click to expand it.
src/container/MonthlyReport/ListOfCreditFacilitiesMR.js
View file @
a407b909
This diff is collapsed.
Click to expand it.
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