feecollected report
This commit is contained in:
parent
11788c5286
commit
48d6c06de5
@ -1121,6 +1121,10 @@ if($feeDetails)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//print_r( $this->db->last_query());
|
||||||
|
//die();
|
||||||
|
|
||||||
|
|
||||||
return $result_array;
|
return $result_array;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -175,9 +175,19 @@ $scope.tod = to_dt;
|
|||||||
$scope.newreglist = response.data.details;
|
$scope.newreglist = response.data.details;
|
||||||
$scope.isShow=true;
|
$scope.isShow=true;
|
||||||
$scope.isLoaderShow=false;
|
$scope.isLoaderShow=false;
|
||||||
|
$scope.Totalfee =0;
|
||||||
|
|
||||||
console.log($scope.newreglist);
|
console.log($scope.newreglist);
|
||||||
|
|
||||||
|
|
||||||
|
angular.forEach(($scope.newreglist),function(newreglist,key)
|
||||||
|
{
|
||||||
|
|
||||||
|
console.log(newreglist)
|
||||||
|
|
||||||
|
$scope.Totalfee= parseFloat($scope.Totalfee)+parseFloat(newreglist.Total);
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|||||||
@ -172,6 +172,7 @@
|
|||||||
<th style="font-size: 12px;">Waiver</th>
|
<th style="font-size: 12px;">Waiver</th>
|
||||||
<th style="font-size: 12px;">Credit/Debit Card</th>
|
<th style="font-size: 12px;">Credit/Debit Card</th>
|
||||||
<th style="font-size: 12px;">Total</th>
|
<th style="font-size: 12px;">Total</th>
|
||||||
|
|
||||||
<!-- <th style="font-size: 12px;">Amount</th>
|
<!-- <th style="font-size: 12px;">Amount</th>
|
||||||
<th style="font-size: 12px;">Action</th> -->
|
<th style="font-size: 12px;">Action</th> -->
|
||||||
</tr>
|
</tr>
|
||||||
@ -186,10 +187,23 @@
|
|||||||
<td>{{p.WAIVER}}</td>
|
<td>{{p.WAIVER}}</td>
|
||||||
<td>{{p.Card}}</td>
|
<td>{{p.Card}}</td>
|
||||||
<td>{{p.Total}}</td>
|
<td>{{p.Total}}</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
||||||
|
|
||||||
|
<tfoot>
|
||||||
|
<!-- <td></td>
|
||||||
|
<td></td>style="font-size:35px;"
|
||||||
|
<td></td>
|
||||||
|
<td></td> -->
|
||||||
|
<td colspan="7" align="right"><span style="font-size:15px;font-weight:bold">Total</span></td>
|
||||||
|
<!-- <td></td>
|
||||||
|
<td></td> -->
|
||||||
|
<td><span style="font-size:15px;font-weight:bold">{{Totalfee}}</span></td>
|
||||||
|
|
||||||
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user