1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-29 18:52:22 +01:00

prevent modify reservation to a complete slot

This commit is contained in:
Sylvain 2017-03-01 14:35:07 +01:00
parent c9d6df13f9
commit 30c6954464

View File

@ -246,7 +246,7 @@ Application.Directives.directive 'cart', [ '$rootScope', '$uibModal', 'dialogs',
resetCartState()
# finally, we update the prices
updateCartPrice()
else if !$scope.slot.is_reserved && $scope.events.modifiable
else if !$scope.slot.is_reserved and !$scope.slot.is_completed and $scope.events.modifiable
# slot is not reserved but we are currently modifying a slot
# -> we request the calender to change the rendering
$scope.onSlotModifyUnselect() if typeof $scope.onSlotModifyUnselect == 'function'