fix error

This commit is contained in:
BOYA,CHIU 2021-07-21 14:49:15 +08:00
parent 8adecbffa7
commit 038603dd32
3 changed files with 8 additions and 6 deletions

View File

@ -284,7 +284,7 @@ class Admin::SitePanelController < OrbitAdminController
def check_server_ability
store_token = current_site.store_token
network = ONetwork.new(OrbitStore::URL,"post")
site_num = SiteConstruct.where(hidden: false,:status.ne => 'closed').count
site_num = SiteConstruct.where(:hidden.ne=> true,:status => 'finish').count
response = network.request("/xhr/check_server_ability",
{"store_token" => store_token,
"site_num" => site_num,

View File

@ -12,11 +12,11 @@
<tr>
<td>
<p>
Active: <%=SiteConstruct.where(:server_type => site_server.server_name,:status=>"finish").count %><br>
Closed: <%=SiteConstruct.where(:server_type => site_server.server_name,:status=>"closed").count %><br>
Not yet installed: <%=SiteConstruct.where(:server_type => site_server.server_name,:status=>"").count %><br>
Production: <%=SiteConstruct.where(:server_type => site_server.server_name,:rails_env=>"production",:status=>"finish").count %><br>
Development: <%=SiteConstruct.where(:server_type => site_server.server_name,:rails_env.in=>["development",nil],:status=>"finish").count %><br>
Active: <%=SiteConstruct.where(:hidden.ne=> true,:server_type => site_server.server_name,:status=>"finish").count %><br>
Closed: <%=SiteConstruct.where(::hidden.ne=> true,server_type => site_server.server_name,:status=>"closed").count %><br>
Not yet installed: <%=SiteConstruct.where(:hidden.ne=> true,:server_type => site_server.server_name,:status=>"").count %><br>
Production: <%=SiteConstruct.where(:hidden.ne=> true,:server_type => site_server.server_name,:rails_env=>"production",:status=>"finish").count %><br>
Development: <%=SiteConstruct.where(:hidden.ne=> true,:server_type => site_server.server_name,:rails_env.in=>["development",nil],:status=>"finish").count %><br>
</p>
</td>
<td><%=site_server.server_name%></td>

View File

@ -5,4 +5,6 @@
<%= form_for @site_construct, :url => {:action=>"create"}, :html => {:class => 'form-horizontal main-forms'} do |f| %>
<%= render :partial => 'form', :locals => {:f => f} %>
<% end %>
<% else %>
<%= t('client_management.over_the_limit') %>
<% end %>