131 lines
3.4 KiB
Ruby
Executable File
131 lines
3.4 KiB
Ruby
Executable File
# -*- encoding : utf-8 -*-
|
|
|
|
class Admin::PDocumentsController < ApplicationController
|
|
#before_filter :auth_admin
|
|
|
|
include ActionView::Helpers::NumberHelper
|
|
|
|
#layout "admin"
|
|
|
|
before_filter :admin_space
|
|
|
|
def admin_space
|
|
@admin_space = "documents"
|
|
end
|
|
|
|
def search_to_affect
|
|
@p_customer = PCustomer.where(:id => params[:p_customer_id]).first
|
|
end
|
|
|
|
def index
|
|
@p_documents = PDocument.order("created_at DESC")
|
|
|
|
@p_documents = @p_documents.where(:p_document_type_id => params[:p_document_type_id]) if params[:p_document_type_id]
|
|
|
|
@p_documents = @p_documents.all
|
|
render :layout => "admin"
|
|
end
|
|
def detail
|
|
@p_document = PDocument.find(params[:id])
|
|
|
|
render :layout => "admin"
|
|
end
|
|
def show
|
|
@p_document = PDocument.find_by_token(params[:id])
|
|
@element = @p_document.element
|
|
params[:inline] = true
|
|
|
|
|
|
if !params[:html] and !Rails.env.development?
|
|
|
|
@temp_file = "#{Rails.root}/pdf/p_documents/#{@p_document.d_number}_temp.pdf"
|
|
@final_file = "#{Rails.root}/pdf/p_documents/#{@p_document.d_number}.pdf"
|
|
|
|
|
|
url = (Rails.env.development? ? "http://localhost:4000" : "http://biocoton.quartz.xyz").to_s+admin_p_document_path(:id => @p_document.token, :html => true)
|
|
puts url
|
|
pdf = ("pdf")
|
|
system("node #{pdf}.js #{Shellwords.escape(url)} #{Shellwords.escape(@temp_file)}")
|
|
|
|
|
|
|
|
require 'posix/spawn'
|
|
|
|
if @p_document.p_document_type.data_file
|
|
::POSIX::Spawn::Child.new 'pdftk', @temp_file, 'background', @p_document.p_document_type.data_file.file.path, 'output', @final_file
|
|
|
|
else
|
|
::POSIX::Spawn::Child.new 'pdftk', @temp_file, 'stamp', "#{Rails.root}/pdf_stamp/en-tete.pdf", 'output', @final_file
|
|
|
|
end
|
|
|
|
@data_to_send = File.open( @final_file).read
|
|
|
|
|
|
send_data @data_to_send, :filename =>"#{@p_document.d_number}.pdf" , :type => 'application/pdf',:disposition => (params[:inline] ? 'inline' : "attachment")
|
|
|
|
|
|
|
|
else
|
|
render :layout => false
|
|
end
|
|
|
|
end
|
|
|
|
|
|
def send_by_mail
|
|
@p_document = PDocument.find(params[:id])
|
|
@p_customer = @p_document.p_customer
|
|
|
|
render :layout => "admin"
|
|
end
|
|
|
|
def send_by_mail_save
|
|
@p_document = PDocument.find(params[:id])
|
|
@p_customer = @p_document.p_customer
|
|
|
|
|
|
params[:emails].each do |email|
|
|
|
|
mail_history = MailHistory.generateMail("envoi_facture", email, {:element => @p_document, :p_customer => @p_customer, :mail_options => {:arguments => {:lien => admin_p_document_url(@p_document.token), :numero => @p_document.d_number, :document => @p_document.label.downcase, :date => @p_document.created_at.to_date.to_s, :montant => number_to_currency(@p_document.cache_total_ttc)}}})
|
|
|
|
mail_history.deliver_mail
|
|
|
|
|
|
end
|
|
|
|
redirect_to detail_admin_p_document_path(@p_document)
|
|
|
|
|
|
end
|
|
|
|
|
|
def create_avoir
|
|
@p_document = PDocument.find(params[:id])
|
|
@avoir = @p_document.create_avoir
|
|
# @p_document.element.restock if @p_document.element and @p_document.element_type == "PCustomerSheet"
|
|
#end
|
|
#redirect_to :back
|
|
|
|
render :layout => "admin"
|
|
|
|
|
|
end
|
|
|
|
|
|
def save_avoir
|
|
@avoir = PDocument.new(params.require(:p_document).permit!)
|
|
|
|
|
|
if @avoir.save
|
|
|
|
redirect_to admin_p_customer_sheet_path(@avoir.element)
|
|
else
|
|
render action: "create_avoir"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|