wip on entering individual date for invoices
This commit is contained in:
parent
b2882d8592
commit
76be8fdf1a
3 changed files with 37 additions and 3 deletions
|
@ -26,9 +26,32 @@ class GroupOrderInvoicesController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def create_multiple
|
||||||
|
invoice_date = params[:group_order_invoice][:invoice_date]
|
||||||
|
order_id = params[:group_order_invoice][:order_id]
|
||||||
|
puts "
|
||||||
|
" + "______________" + "
|
||||||
|
" + "______________" + "
|
||||||
|
" + "______________" + "
|
||||||
|
" + "#{invoice_date}" + "
|
||||||
|
" + "______________"+ "
|
||||||
|
" + "______________"+ "
|
||||||
|
" + "______________"
|
||||||
|
raise "#{invoice_date}"
|
||||||
|
gos = GroupOrder.find_by(order_id: params[:order_id])
|
||||||
|
for go in gos
|
||||||
|
GroupOrderInvoice.find_or_create_by!(group_order_id: go.id)
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
redirect_back fallback_location: root_path
|
||||||
|
rescue => error
|
||||||
|
redirect_back fallback_location: root_path, notice: 'Something went wrong', :alert => I18n.t('errors.general_msg', :msg => error)
|
||||||
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
go = GroupOrder.find(params[:group_order])
|
go = GroupOrder.find(params[:group_order])
|
||||||
@order = go.order
|
|
||||||
GroupOrderInvoice.find_or_create_by!(group_order_id: go.id)
|
GroupOrderInvoice.find_or_create_by!(group_order_id: go.id)
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.js
|
format.js
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
.row
|
||||||
|
= form_for :group_order_invoice, url: url_for('group_order_invoice#create_multiple') do |f|
|
||||||
|
= f.date_field :invoice_date, {}
|
||||||
|
= f.hidden_field :order_id, value: order.id
|
||||||
|
= f.submit 'Alle Rechnungen mit Datum erzeugen', class: 'btn btn small'
|
||||||
|
|
||||||
- order.group_orders.includes([:group_order_invoice, :ordergroup]).each do |go|
|
- order.group_orders.includes([:group_order_invoice, :ordergroup]).each do |go|
|
||||||
.row
|
.row
|
||||||
.column.small-3
|
.column.small-3
|
||||||
|
|
|
@ -139,11 +139,15 @@ Rails.application.routes.draw do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
post 'finance/group_order_invoice', to: 'group_order_invoices#create_multiple'
|
||||||
resources :group_order_invoices
|
resources :group_order_invoices
|
||||||
|
|
||||||
resources :article_categories
|
resources :article_categories
|
||||||
|
|
||||||
########### Finance
|
########### Finance
|
||||||
|
|
||||||
namespace :finance do
|
namespace :finance do
|
||||||
root to: 'base#index'
|
root to: 'base#index'
|
||||||
|
|
||||||
|
@ -172,6 +176,7 @@ Rails.application.routes.draw do
|
||||||
get :unpaid, on: :collection
|
get :unpaid, on: :collection
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
resources :links, controller: 'financial_links', only: [:create, :show] do
|
resources :links, controller: 'financial_links', only: [:create, :show] do
|
||||||
collection do
|
collection do
|
||||||
get :incomplete
|
get :incomplete
|
||||||
|
|
Loading…
Reference in a new issue