116 lines
4.3 KiB
Plaintext
116 lines
4.3 KiB
Plaintext
<% # encoding: utf-8 %>
|
|
<% content_for :page_specific_css do %>
|
|
<%= stylesheet_link_tag "lib/main-forms" %>
|
|
<%= stylesheet_link_tag "lib/fileupload" %>
|
|
<%= stylesheet_link_tag "lib/main-list" %>
|
|
<%= stylesheet_link_tag "lib/main-form-col2" %>
|
|
<style>
|
|
.graph-type {
|
|
margin-right: 10px !important;
|
|
}
|
|
.analysis-show-area{
|
|
margin-top: 25px;
|
|
}
|
|
.role {
|
|
margin: 15px auto;
|
|
width: 90%;
|
|
height: 400px;
|
|
}
|
|
.role h3{
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
.role .graph-area{
|
|
text-align: center;
|
|
}
|
|
.role .graph-area .loader {
|
|
margin-top: 170px;
|
|
}
|
|
</style>
|
|
<% end %>
|
|
<% content_for :page_specific_javascript do %>
|
|
<%= javascript_include_tag "//www.google.com/jsapi", "chartkick"%>
|
|
<%= javascript_include_tag "justgage.1.0.1.min" %>
|
|
<%= javascript_include_tag "raphael.2.1.0.min" %>
|
|
<%= javascript_include_tag "validator" %>
|
|
<%= javascript_include_tag "lib/bootstrap-datetimepicker" %>
|
|
<%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %>
|
|
<% end %>
|
|
<div id="analysis-area">
|
|
<div class="analysis-form">
|
|
<form id="analysis-form" action="" class="form-horizontal main-forms">
|
|
<div class="input-area">
|
|
<div class="control-group input-title">
|
|
<label class="control-label muted"><%= t("personal_other_paper.issue_date") %> : </label>
|
|
<div class="controls">
|
|
<span><%=t("personal_other_paper.extend_translate.start_year_month")%></span><%= datetime_picker "issue_date_start",:format => "yyyy/MM", :no_label => true %><span><%=t("personal_other_paper.extend_translate.end_year_month")%></span><%= datetime_picker "issue_date_end",:format => "yyyy/MM", :no_label => true %>
|
|
</div>
|
|
</div>
|
|
<div class="control-group input-title">
|
|
<label class="control-label muted"><%= t("personal_other_paper.graph_by") %> : </label>
|
|
<div class="controls">
|
|
<%= t("personal_other_paper.other_paper_status.status") %>
|
|
<input type="radio" name="graph_by" class="graph-type" value="other_paper_status">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-actions">
|
|
<button id="generate_graph" class="btn btn-info">Graphs</button>
|
|
<a href="" id="generate_excel" class="btn btn-primary">Export</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="analysis-show-area hide in">
|
|
<% Role.where(:disabled => false, :title.ne => "", :title.ne => nil).asc(:key).each do |role| %>
|
|
<div class="role muted" data-role-id="<%= role.id.to_s %>">
|
|
<h3><%= role.title %></h3>
|
|
<div class="graph-area">
|
|
<img class="loader" src="/assets/preloader.gif" alt="loading" width="70" height="70">
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
var now = new Date();
|
|
var late_hour = -(Math.floor(now.getTimezoneOffset() / 60));
|
|
var minute = -(now.getTimezoneOffset() % 60);
|
|
var sign = (late_hour < 0) ? "-" : "+";
|
|
var time_zone_string = sign + ("00" + Math.abs(late_hour)).slice(-2) + ":"+ ("00" + Math.abs(minute)).slice(-2);
|
|
var form = new FormValidator($("#analysis-form")),
|
|
roleArea = $("#analysis-area .analysis-show-area"),
|
|
totalRoles = roleArea.find(".role").length;
|
|
form.form.on("submit",function(){return false;})
|
|
|
|
$("#generate_excel").on("click",function(){
|
|
window.location.href = "/admin/other_papers/download_excel.xlsx?" + "issue_date_start=" + form.form.find("[name=issue_date_start]").val() + "&issue_date_end=" + form.form.find("[name=issue_date_end]").val() + "&time_zone=" + time_zone_string;
|
|
return false;
|
|
})
|
|
|
|
$("#generate_graph").on("click",function(){
|
|
if(form.isFormValidated()){
|
|
generateCharts(0);
|
|
roleArea.removeClass("hide");
|
|
}
|
|
return false;
|
|
})
|
|
|
|
var generateCharts = function(index){
|
|
var role = roleArea.find(".role").eq(index);
|
|
$.ajax({
|
|
url : "/admin/other_papers/analysis_report",
|
|
data : {"role_id" : role.data("role-id"), "issue_date_start" : form.form.find("[name=issue_date_start]").val(), "issue_date_end" : form.form.find("[name=issue_date_end]").val(), "graph_by" : form.form.find("input[name=graph_by]:checked").val(),"time_zone": time_zone_string},
|
|
type : "get",
|
|
dataType : "html"
|
|
}).done(function(html){
|
|
role.find(".graph-area").html(html);
|
|
if(index < totalRoles){
|
|
generateCharts(index + 1);
|
|
}
|
|
}).error(function(){
|
|
role.find(".graph-area").html("There was an error loading this graph.");
|
|
if(index < totalRoles){
|
|
generateCharts(index + 1);
|
|
}
|
|
})
|
|
}
|
|
</script> |