diff --git a/app/frontend/src/javascript/directives/cart.js b/app/frontend/src/javascript/directives/cart.js index bd8f0f586..dc19f0765 100644 --- a/app/frontend/src/javascript/directives/cart.js +++ b/app/frontend/src/javascript/directives/cart.js @@ -782,6 +782,9 @@ Application.Directives.directive('cart', ['$rootScope', '$uibModal', 'dialogs', // Shows the schedule info in the modal $scope.schedule = schedule.payment_schedule; + // how should we collect payments for the payment schedule + $scope.payment_method = 'stripe'; + // Button label if ($scope.amount > 0) { $scope.validButtonName = _t('app.shared.cart.confirm_payment_of_html', { ROLE: $rootScope.currentUser.role, AMOUNT: $filter('currency')($scope.amount) }); diff --git a/app/frontend/templates/shared/valid_reservation_modal.html b/app/frontend/templates/shared/valid_reservation_modal.html index 3df22145c..8843a62f5 100644 --- a/app/frontend/templates/shared/valid_reservation_modal.html +++ b/app/frontend/templates/shared/valid_reservation_modal.html @@ -18,7 +18,19 @@
{{ plan | humanReadablePlanName }}
{{ 'app.shared.valid_reservation_modal.payment_schedule' }}
+{{ 'app.shared.valid_reservation_modal.stripe_collection_info' }}
+{{ 'app.shared.valid_reservation_modal.check_collection_info' }}