It is recommended to utilize ng-click instead of onclick in Angular, as Angular offers this functionality.
<div ng-click="deleteArrival(filterList.id)"
class="table-icon deleteIcon">{{filterList.id}}</div>
The appropriate approach is to relocate your function to the AngularJS Controller and bind it to the scope.
$scope.deleteArrival = function(filterListId) { ... };
If for some reason you must use onclick to invoke an external function, you can modify the function within your scope as shown above, while still utilizing the ng-click attribute.
$scope.deleteArrival = function(filterListId) { window.deleteArrival(filterListId); };
Nevertheless, there is no compelling reason not to place it within your scope.