155 lines
5.1 KiB
Ruby
155 lines
5.1 KiB
Ruby
# encoding: utf-8
|
||
class Admin::AsksController < OrbitAdminController
|
||
include Admin::AsksHelper
|
||
before_action ->(module_app = @app_title) { set_variables module_app }
|
||
before_action :set_askquestion, only: [:edit, :destroy]
|
||
|
||
def initialize
|
||
super
|
||
@app_title = "ask"
|
||
end
|
||
|
||
def filter_fields(categories, tags)
|
||
{
|
||
:situation=>[{:title=>"is_waiting",:id=>"is_waiting"},{:title=>"is_processed",:id=>"is_processed"},{:title=>"is_referral",:id=>"is_referral"}],
|
||
:category=>categories.map{|c| {:title=>(c.title.blank? ? " " : c.title), :id=>c.id}},
|
||
:identity=>tags.map{|tag| {:title=>(tag.name.blank? ? " " : tag.name), :id=>tag.id}}
|
||
}
|
||
end
|
||
|
||
# 抓取網址的狀態參數
|
||
def filter2(type)
|
||
case type
|
||
when "situation"
|
||
params[:filters][:situation].blank? ? [] : params[:filters][:situation] rescue []
|
||
when "identity"
|
||
params[:filters][:identity].blank? ? [] : params[:filters][:identity] rescue []
|
||
end
|
||
end
|
||
|
||
def index
|
||
@tags = @module_app.tags
|
||
@categories = @module_app.categories
|
||
@filter_fields = filter_fields(@categories, @tags)
|
||
# 列表欄位
|
||
@table_fields = [:situation, :category, :title, 'ask.name', 'ask.created_at']
|
||
# 列表排序
|
||
# debugger
|
||
if filter2("situation").blank? and filter2("identity").blank?
|
||
@askquestions = AskQuestion.order_by(sort)
|
||
.with_categories(filters("category"))
|
||
elsif filter2("situation").blank?
|
||
@askquestions = AskQuestion.order_by(sort)
|
||
.with_categories(filters("category"))
|
||
.any_in(:identity => filter2("identity"))
|
||
elsif filter2("identity").blank?
|
||
@askquestions = AskQuestion.order_by(sort)
|
||
.with_categories(filters("category"))
|
||
.any_in(:situation => filter2("situation"))
|
||
else
|
||
@askquestions = AskQuestion.order_by(sort)
|
||
.with_categories(filters("category"))
|
||
.any_in(:identity => filter2("identity"))
|
||
.any_in(:situation => filter2("situation"))
|
||
end
|
||
|
||
# 分頁
|
||
@askquestions = search_data(@askquestions,[:title]).page(params[:page]).per(10)
|
||
if request.xhr?
|
||
render :partial => "index"
|
||
end
|
||
end
|
||
|
||
def search_tag(tag)
|
||
Tag.find(tag).name_translations{}
|
||
end
|
||
|
||
def edit
|
||
@ask_question = AskQuestion.find(params[:id])
|
||
@url = admin_ask_path(@ask_question)
|
||
end
|
||
|
||
def destroy
|
||
@askquestions.destroy
|
||
redirect_to "/admin/asks"
|
||
end
|
||
|
||
def update
|
||
@ask_question = AskQuestion.find(params[:id])
|
||
@ask_question.update_attributes(params.require(:ask_question).permit!)
|
||
if @ask_question.send_email?
|
||
build_email(@ask_question)
|
||
end
|
||
|
||
redirect_to admin_asks_path, notice: t('ask.reply_success')
|
||
end
|
||
|
||
def build_email(email_er)
|
||
email = Email.new
|
||
email.save
|
||
email_er.email_id = email.id
|
||
email_er.save
|
||
|
||
@group_mail = email_er.mail
|
||
@mail_sentdate = DateTime.now
|
||
|
||
email_er.email.update_attributes(
|
||
:create_user=>current_user,
|
||
:mail_sentdate=>@mail_sentdate,
|
||
:module_app=>@module_app,
|
||
:mail_to=>@group_mail,
|
||
:mail_subject=>Site.first.title_translations["zh_tw"]+" #{t('ask.reply')}:"+email_er.title,
|
||
:template=>'admin/asks/email',
|
||
:template_data=>{
|
||
"reply" => email_er.reply
|
||
}
|
||
)
|
||
|
||
OrbitMailer.set_mail(email_er.email).deliver
|
||
end
|
||
|
||
def export
|
||
|
||
end
|
||
|
||
def do_export
|
||
|
||
Rails.application.config.mongoid.use_activesupport_time_zone = true
|
||
date_start = "#{params[:export]['start(1i)']}-#{params[:export]['start(2i)']}-#{params[:export]['start(3i)']}"
|
||
date_end = "#{params[:export]['end(1i)']}-#{params[:export]['end(2i)']}-#{params[:export]['end(3i)']}"
|
||
@ask_questions = AskQuestion.where(:created_at.gte => date_start.to_datetime, :created_at.lte => date_end.to_datetime+1)
|
||
|
||
csv = CSV.generate do |csv|
|
||
csv << [ t('category'),
|
||
AskQuestion.human_attribute_name(:name),
|
||
AskQuestion.human_attribute_name(:identity),
|
||
AskQuestion.human_attribute_name(:mail),
|
||
AskQuestion.human_attribute_name(:phone),
|
||
AskQuestion.human_attribute_name(:fax),
|
||
AskQuestion.human_attribute_name(:title),
|
||
AskQuestion.human_attribute_name(:content),
|
||
AskQuestion.human_attribute_name(:reply),
|
||
AskQuestion.human_attribute_name(:comment)]
|
||
@ask_questions.each do |ask_question|
|
||
Tag.where({:id => ask_question[:identity]}).each do |tag|
|
||
csv << [ ask_question.category.title,
|
||
ask_question.name,
|
||
tag.name,
|
||
ask_question.mail,
|
||
ask_question.phone,
|
||
ask_question.fax,
|
||
ask_question.title,
|
||
ask_question.content,
|
||
ask_question.reply,
|
||
ask_question.comment ]
|
||
end
|
||
end
|
||
end
|
||
send_data csv.encode('Big5'), type: 'text/csv', filename: "Questions-#{date_start}-#{date_end}.csv"
|
||
end
|
||
|
||
def set_askquestion
|
||
@askquestions = AskQuestion.find(params[:id])
|
||
end
|
||
end
|