简体   繁体   中英

Get total sum values within ng-repeat with angular js

I used ng-repeat to repeat json array. I calculated Night(s) by using dayDiff() function. Now I want to get total night all invoices. I am using angularjs.

How can I get total nights for all invoices?

<table class="table" ng-show="filteredItems > 0">
    <tr>
        <td>No</td>
        <td>Invoice No</td>
        <td>Name</td>
        <td>Eamil</td>
        <td>Room Name</td>
        <td>Check In Date</td>
        <td>Check Out Date</td>
        <td>No. Room</td>
        <td>Night(s)</td>
        <td>Booking Date</td>
        <td>Amount</td>
    </tr>
    <tr ng-repeat="data in filtered = (list | filter:search ) | startFrom:(currentPage-1)*entryLimit | limitTo:entryLimit">
        <td>{{$index+1}}</td>
        <td>{{data.invoicenumber}}</td>
        <td>{{data.firtname}}{{data.lastname}}</td>
        <td>{{data.email}}</td>
        <td>{{data.roomname}}</td>
        <td ng-model='fromDate'>{{data.cidt}}</td>
        <td ng-model='toDate'>{{data.codt}}</td>
        <td>{{data.qty}}</td>
        <td ng-model='night'>{{dayDiff(data.cidt,data.codt)}}</td>
        <td>{{data.bdt}}</td>
        <td>{{data.btotal}}</td>
    </tr>
</table>

You need to add an extra row to begin with. This extra row will look like this:

<tr>
    <td colspan="11">Total nights: {{calcTotal(filtered)}}</td>
</tr>

Then in your controller you need to add a function to calculate the nights like

$scope.calcTotal = function(filtered){
     var sum = 0;
     for(var i = 0 ; i<filtered.length ; i++){
        sum = sum + filtered[i].nights;
     }
     return sum;
};

You could first, use a factory for your JSON model, to store the computed nights:

// We inject the dayDiff function via the dayDiffService service
angular.factory('invoice', ['dayDiffService', function(dayDiffService) {
    var Invoice = function(data) {
        // merge json properties to self
        angular.merge(this, data);
        // we compute the night(s)
        this.nights = dayDiffService.dayDiff(data.cidt, data.codt);
    }
    return Invoice;
}]);

Then, in your controller, you add a function to sum up the nights from a filtered list:

angular.controller('invoicesCtrl', ['$scope', 'invoice', function($scope, Invoice) {
    $scope.list = [];

    // let's say that JSON holds your json model from http's response
    $scope.list = JSON.map(function() { 
        return new Invoice(i) 
    });

    $scope.sumNights = function(filtered) {
        filtered.reduce(function(sum, invoice) {
            sum += invoice.nights;
            sum
        }, 0);
    }
}]);

Then, in your html you add a new row to display the computed result:

<div ng-controller="invoicesCtrl as vm">
    <table>
        ...
        <tbody>
            <tr ng-repeat="data in filtered = (vm.list | filter:search ) | startFrom:(currentPage-1)*entryLimit | limitTo:entryLimit">
                <td>{{$index+1}}</td>
                ...
                <tr>
        </tbody>
        <tfoot>
            <tr>
                <td colspan="8"></td
                <td>{{vm.sumNights(filtered)}}</td
                <td colspan="2"></td
            </tr>
        </tfoot>
    </table>
</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM