mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
49 lines
1.6 KiB
CoffeeScript
49 lines
1.6 KiB
CoffeeScript
Darkswarm.factory 'Order', ($resource, Product, order, $http, CheckoutFormState, flash, Navigation)->
|
|
new class Order
|
|
errors: {}
|
|
|
|
constructor: ->
|
|
@order = order
|
|
|
|
submit: ->
|
|
$http.put('/checkout', {order: @preprocess()}).success (data, status)=>
|
|
Navigation.go data.path
|
|
.error (response, status)=>
|
|
@errors = response.errors
|
|
flash.error = response.flash?.error
|
|
flash.success = response.flash?.notice
|
|
|
|
# Rails wants our Spree::Address data to be provided with _attributes
|
|
preprocess: ->
|
|
munged_order = {}
|
|
for name, value of @order # Clone all data from the order JSON object
|
|
switch name
|
|
when "bill_address"
|
|
munged_order["bill_address_attributes"] = value
|
|
when "ship_address"
|
|
munged_order["ship_address_attributes"] = value
|
|
when "payment_method_id"
|
|
munged_order["payments_attributes"] = [{payment_method_id: value}]
|
|
when "form_state" # don't keep this shit
|
|
else
|
|
munged_order[name] = value
|
|
|
|
if CheckoutFormState.ship_address_same_as_billing
|
|
munged_order.ship_address_attributes = munged_order.bill_address_attributes
|
|
munged_order
|
|
|
|
shippingMethod: ->
|
|
@order.shipping_methods[@order.shipping_method_id] if @order.shipping_method_id
|
|
|
|
requireShipAddress: ->
|
|
@shippingMethod()?.require_ship_address
|
|
|
|
shippingPrice: ->
|
|
@shippingMethod()?.price
|
|
|
|
paymentMethod: ->
|
|
@order.payment_methods[@order.payment_method_id]
|
|
|
|
cartTotal: ->
|
|
@shippingPrice() + @order.display_total
|