end of day commit

This commit is contained in:
2012-08-23 18:50:06 +02:00
parent 13dd2bf335
commit 0bae1bcbed
37 changed files with 1157 additions and 83 deletions
+15 -1
View File
@@ -5,16 +5,30 @@ Qrammer::Application.routes.draw do
get :qrcode
end
end
resources :orders do
member do
post :is_being_processed
post :is_delivered
end
end
resources :suppliers do
member do
get :product_list
get :active_order_list
get :active_lists
end
end
resources :lists do
member do
get :current
post :is_closed
end
end
resources :lists
resources :products
resources :product_categories
match "/:action", controller: 'dashboard'
match '/view_active_list' => 'dashboard#view_active_list', as: :view_active_list
# The priority is based upon order of creation:
# first created -> highest priority.