Sum in realted item
Hello,
I want to make the sum of a column with type of number, in a related item. This goes with:
var total = 0;
var rows = fd.relatedItems (0) .data ('ctx'). ListData.Row;
rows.forEach (function (item) {
total + = parseFloat (item ['HardwareSelection_x003a_Price_x002'])
});
alert (total);
My first question:
Unfortunately, no decimal places are calculated. The column "Hardwareauswahl:Preis (Zahl)" should be calculated (theoretically 225.50). However, he only indicates 225. How can I include the decimal places?
My second question:
How can I calculate the sum of the "Hardwareauswahl:Preis (Zahl)" column of only certain elements in a related item. Namely only of elements in which the value "Genehmigt" is contained in the column "Genehmigt"?
Many Thanks!
I want to make the sum of a column with type of number, in a related item. This goes with:
var total = 0;
var rows = fd.relatedItems (0) .data ('ctx'). ListData.Row;
rows.forEach (function (item) {
total + = parseFloat (item ['HardwareSelection_x003a_Price_x002'])
});
alert (total);
My first question:
Unfortunately, no decimal places are calculated. The column "Hardwareauswahl:Preis (Zahl)" should be calculated (theoretically 225.50). However, he only indicates 225. How can I include the decimal places?
My second question:
How can I calculate the sum of the "Hardwareauswahl:Preis (Zahl)" column of only certain elements in a related item. Namely only of elements in which the value "Genehmigt" is contained in the column "Genehmigt"?
Many Thanks!
- Attachments
-
- related_item.PNG (10.51 KiB) Viewed 2146 times
- Nikita Kurguzov
- Posts: 889
- Joined: Mon Jul 03, 2017
Dear RMIC,
Not sure why does the calculation not work correctly. I've just tested it myself and all the decimals should be included correctly. Try to run the following code from the console, what will it show?
Please, send us a screenshot of the result.
As for your second question, it should be rather easy, you just need to add a condition for the Row, something like this:
Not sure why does the calculation not work correctly. I've just tested it myself and all the decimals should be included correctly. Try to run the following code from the console, what will it show?
Code: Select all
var total = 0;
var rows = fd.relatedItems (0) .data ('ctx'). ListData.Row;
rows.forEach (function (item) {
console.log( parseFloat(item['HardwareSelection_x003a_Price_x002']));
console.log( parseFloat(item['HardwareSelection_x003a_Price_x002.']));
total + = parseFloat(item['HardwareSelection_x003a_Price_x002']);
});
console.log("Total: " + total);
As for your second question, it should be rather easy, you just need to add a condition for the Row, something like this:
Code: Select all
rows.forEach (function (item) {
if(item['Genehmigt'] == 'Genehmigt'){
total + = parseFloat(item['HardwareSelection_x003a_Price_x002']);
}
});
Cheers
- Nikita Kurguzov
- Posts: 889
- Joined: Mon Jul 03, 2017
Dear RMIC,
Thank you for the screenshot. Can you try this code as well?
Thank you for the screenshot. Can you try this code as well?
Code: Select all
var total = 0;
var rows = fd.relatedItems (0) .data ('ctx'). ListData.Row;
rows.forEach (function (item) {
console.log(item['HardwareSelection_x003a_Price_x002']);
total + = parseFloat(item['HardwareSelection_x003a_Price_x002']);
});
console.log("Total: " + total);
Cheers
- Nikita Kurguzov
- Posts: 889
- Joined: Mon Jul 03, 2017
Dear RMIC,
Please, try the following code as well:
Please, try the following code as well:
Code: Select all
var total = 0;
var rows = fd.relatedItems (0) .data ('ctx'). ListData.Row;
rows.forEach (function (item) {
var price = parseFloat(item['HardwareSelection_x003a_Price_x002'].replace(',', '.'));
console.log(price);
total + = price;
});
console.log("Total: " + total);
Cheers
- Nikita Kurguzov
- Posts: 889
- Joined: Mon Jul 03, 2017
Dear RMIC,
Just use the following code before setting the field:
Just use the following code before setting the field:
Code: Select all
total = total.toFixed(2);
Cheers
Hello,
Now I want to calculate the total of a number column in a Quick Edit. This works well with the following code:
But I have two mistakes.
First mistake:
He calculates the number 1000.10 internally with "1". Which is clear because of the replace (',', '.').
As a total I receive 201.2.
How do I get the grand total of 1200.3?
Second mistake:
When I delete an element in the Quickedit, the deleted element is also used in the calculation. How can I prevent this?
Many thanks!
Best Regards,
RMIC
Now I want to calculate the total of a number column in a Quick Edit. This works well with the following code:
Code: Select all
var total = 0;
var rows = fd.relatedItems(0).data('ctx').ListData.Row;
rows.forEach(function(item)
{
total += parseFloat(item['BetragHauswaehrungNetto'].replace(',', '.'));
alert("total: "+total);
});
total = total.toFixed(2);
total = total.replace('.', ',');
fd.field('Gross_Amount').value(total);
First mistake:
He calculates the number 1000.10 internally with "1". Which is clear because of the replace (',', '.').
As a total I receive 201.2.
How do I get the grand total of 1200.3?
Second mistake:
When I delete an element in the Quickedit, the deleted element is also used in the calculation. How can I prevent this?
Many thanks!
Best Regards,
RMIC
- Attachments
-
- calc_quick_edit.PNG (48.45 KiB) Viewed 2009 times
-
- Information
-
Who is online
Users browsing this forum: No registered users and 14 guests