Merge branch 'develop' of https://git.trustie.net/jacknudt/trustieforge into develop
This commit is contained in:
commit
f3dcd4ed09
|
@ -461,8 +461,8 @@ class AdminController < ApplicationController
|
||||||
scope = User.order('last_login_on desc')
|
scope = User.order('last_login_on desc')
|
||||||
scope = scope.where("last_login_on>= '#{params[:startdate]} 00:00:00'") if params[:startdate].present?
|
scope = scope.where("last_login_on>= '#{params[:startdate]} 00:00:00'") if params[:startdate].present?
|
||||||
scope =scope.where("last_login_on <= '#{params[:enddate]} 23:59:59'") if params[:enddate].present?
|
scope =scope.where("last_login_on <= '#{params[:enddate]} 23:59:59'") if params[:enddate].present?
|
||||||
@user = scope
|
@users = scope
|
||||||
@user = paginateHelper @user,30
|
@users = paginateHelper @users,30
|
||||||
@page = (params['page'] || 1).to_i - 1
|
@page = (params['page'] || 1).to_i - 1
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html
|
format.html
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% @count=@page * 30 %>
|
<% @count=@page * 30 %>
|
||||||
<% for user in @user do %>
|
<% for user in @users do %>
|
||||||
<tr>
|
<tr>
|
||||||
<% @count +=1 %>
|
<% @count +=1 %>
|
||||||
<td align="center">
|
<td align="center">
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
<p class="proInfoP"><span><%= activity.status.name %></span> <a href="javascript:void(0)" class="pic_edit2 ml5"></a></p>
|
<p class="proInfoP"><span><%= activity.status.name %></span> <a href="javascript:void(0)" class="pic_edit2 ml5"></a></p>
|
||||||
<%= select( :issue,:status, [["新增",1],["正在解决",2],["已解决",3],["反馈",4],["关闭",5],["拒绝",6]].unshift(["状态",0]),
|
<%= select( :issue,:status, [["新增",1],["正在解决",2],["已解决",3],["反馈",4],["关闭",5],["拒绝",6]].unshift(["状态",0]),
|
||||||
{:include_blank => false, :selected => @status_id ? @status_id : 0 },
|
{:include_blank => false, :selected => @status_id ? @status_id : 0 },
|
||||||
{:onchange=>"remote_function('#issue_query_form_#{activity.id}');",:id=>"status_id",:name=>"status_id",:class=>"w70 undis issueEdit"}
|
{:onchange=>"remote_function('#issue_query_form_#{activity.id}');",:id=>"status_id",:name=>"status_id",:class=>"w70 undis issueEdit",:style=>"white-space:nowrap; overflow:hidden;"}
|
||||||
)
|
)
|
||||||
%>
|
%>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue