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
b5f6ad27
Commit
b5f6ad27
authored
Apr 22, 2021
by
faisalhamdi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug issue total ro - bs!
parent
5cbaf397
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
BalanceSheetRO.js
src/container/RollingOutlook/BalanceSheetRO.js
+9
-8
No files found.
src/container/RollingOutlook/BalanceSheetRO.js
View file @
b5f6ad27
...
...
@@ -707,16 +707,17 @@ export default class BalanceSheetRO extends Component {
return a
}
const
handleTotal
=
(
val
,
tableMeta
)
=>
{
const handleTotal = (tableMeta) => {
let total = 0
tableMeta.rowData.map((item,index) => {
if
(
index
>=
7
&&
index
<=
18
)
{
if
(
String
(
tableMeta
.
rowData
[
5
]).
toLocaleLowerCase
()
==
"profit (loss) mtd"
)
{
total
+=
Number
(
item
.
value
)
}
else
{
total
+=
Number
(
item
)
}
if (index == 18) {
total = isNaN(item) ? Number(item.value) : Number(item)
// if (String(tableMeta.rowData[5]).toLocaleLowerCase() == "profit (loss) mtd") {
// total = Number(item.value)
// } else {
// total = Number(item)
// }
}
})
dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = total
...
...
@@ -2318,7 +2319,7 @@ export default class BalanceSheetRO extends Component {
type="text"
placeholder=""
disabled={true}
value
=
{
Number
(
handleTotal
(
val
,
tableMeta
)).
toFixed
(
1
)}
value={Number(handleTotal(tableMeta)).toFixed(1)}
/>
</span>
}
...
...
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