mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-06 22:36:07 +00:00
17 lines
550 B
CoffeeScript
17 lines
550 B
CoffeeScript
angular.module("Checkout").controller "CheckoutCtrl", ($scope, $rootScope, order) ->
|
|
$scope.require_ship_address = false
|
|
$scope.shipping_method = -1
|
|
$scope.payment_method = -1
|
|
$scope.same_as_billing = true
|
|
$scope.order = order
|
|
|
|
$scope.require_ship_address = $scope.order.shipping_methods[$scope.order.shipping_method_id]
|
|
|
|
$scope.shippingMethodChanged = ->
|
|
$scope.require_ship_address = $scope.order.shipping_methods[$scope.order.shipping_method_id]
|
|
|
|
|
|
$scope.purchase = (event)->
|
|
event.preventDefault()
|
|
checkout.submit()
|