mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
16 lines
521 B
CoffeeScript
16 lines
521 B
CoffeeScript
Darkswarm.factory 'OrderCycle', ($resource, Product, orderCycleData) ->
|
|
class OrderCycle
|
|
@order_cycle = orderCycleData || null
|
|
@push_order_cycle: ->
|
|
new $resource("/shop/order_cycle").save {order_cycle_id: @order_cycle.order_cycle_id}, (order_data)->
|
|
OrderCycle.order_cycle.orders_close_at = order_data.orders_close_at
|
|
Product.update()
|
|
|
|
@orders_close_at: ->
|
|
if @order_cycle
|
|
@order_cycle.orders_close_at
|
|
else
|
|
""
|
|
@selected: ->
|
|
@order_cycle != null
|