Compare commits

..

1 Commits

Author SHA1 Message Date
Manson Wang ff763bd6d6 ntu_mb 2014-02-10 18:30:49 +08:00
7 changed files with 31 additions and 34 deletions

View File

@ -231,13 +231,7 @@ class Panel::PersonalBook::BackEnd::WritingBooksController < OrbitBackendControl
respond_to do |format|
if @writing_book.update_attributes(params[:writing_book])
if params[:writing_book][:user_id]
format.html { redirect_to(admin_users_new_interface_url(:id=>params[:writing_book][:user_id],:show_plugin_profile=>"WritingBook")) }
else
format.html { redirect_to(panel_personal_book_back_end_writing_books_url) }
end
format.html { redirect_to(panel_personal_book_back_end_writing_books_url) }
# format.js { render 'toggle_enable' }
format.xml { head :ok }
else
@ -257,13 +251,7 @@ class Panel::PersonalBook::BackEnd::WritingBooksController < OrbitBackendControl
@writing_book.destroy
respond_to do |format|
if params[:user_id]
format.html { redirect_to(admin_users_new_interface_url(:id=>params[:user_id],:show_plugin_profile=>"WritingBook")) }
else
format.html { redirect_to(panel_personal_book_back_end_writing_books_url) }
end
format.html { redirect_to(panel_personal_book_back_end_writing_books_url) }
# format.xml { head :ok }
format.js
end

View File

@ -11,6 +11,8 @@ class WritingBook
LANGUAGE_TYPES = [ "English", "Chinese" ]
field :paper_title, localize: true
field :book_title, localize: true
field :authors, localize: true
field :extracted_chapters, localize: true
@ -43,6 +45,8 @@ class WritingBook
# before_save :clean_checkboxs
validates :paper_title, :at_least_one => true
before_validation :add_http
after_save :save_writing_book_files
@ -81,6 +85,8 @@ class WritingBook
def create_link
title = []
title << self.authors if self.authors.present?
# title << self.paper_title if self.paper_title.present?
title << self.book_title if self.book_title.present?
title << self.publisher if self.publisher.present?
title << self.isbn if self.isbn.present?
@ -88,6 +94,8 @@ class WritingBook
if !self.publish_date.nil?
pd = self.publish_date.strftime("%Y-%m-%d").split('-')
title << pd[0]+"/"+pd[1]
elsif !self.year.blank?
title << self.year
end
# title << "(#{self.journal_level_types.collect{|x| x.title}.join(', ')})"

View File

@ -200,6 +200,16 @@
<div class="<%= locale %> tab-pane fade <%= ( i == 0 ) ? "in active" : '' %>">
<!-- paper_title-->
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_book.paper_title") %></label>
<div class="controls">
<%= f.fields_for :paper_title_translations do |f| %>
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_book.paper_title"), value: (@writing_book.paper_title_translations[locale] rescue nil) %>
<% end %>
</div>
</div>
<!-- book_title-->
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_book.book_title") %></label>
@ -245,7 +255,7 @@
<label class="control-label muted"><%= t("personal_book.authors") %></label>
<div class="controls">
<%= f.fields_for :authors_translations do |f| %>
<%= f.text_field locale, rows: 2, class: "input-block-level", value: (@writing_book.authors_translations[locale] rescue nil) %>
<%= f.text_area locale, rows: 2, class: "input-block-level", value: (@writing_book.authors_translations[locale] rescue nil) %>
<% end %>
</div>
</div>

View File

@ -1,6 +1,5 @@
<% # encoding: utf-8 %>
<div class="writing_detail">
<table>
<caption> <%= t("module_name.personal_book") %> </caption>
<tbody>
@ -12,6 +11,10 @@
<tr><th><%= t("personal_book.language")%></th><td><%= @writing_book.language %></td></tr>
<% end %>
<% if !@writing_book.paper_title.blank? %>
<tr><th><%= t("personal_book.paper_title")%></th><td><%= @writing_book.paper_title %></td></tr>
<% end %>
<% if !@writing_book.book_title.blank? %>
<tr><th><%= t("personal_book.book_title")%></th><td><%= @writing_book.book_title %></td></tr>
<% end %>
@ -56,9 +59,7 @@
<tr><th><%= t("personal_book.url")%></th><td><%= link_to t(:url), @writing_book.url, {:target => '_blank', :title => @writing_book.url} if !@writing_book.url.blank? %></td></tr>
<% end %>
<% if !@writing_book.authors.blank? %>
<tr><th><%= t("personal_book.authors")%></th><td><%= "#{@writing_book.authors rescue ''}"%></td></tr>
<% end %>
<tr><th><%= t("personal_book.authors")%></th><td><%= "#{User.from_id(@writing_book.create_user_id).name rescue ''},#{@writing_book.authors rescue ''}"%></td></tr>
<% if @writing_book.writing_book_files.size > 0 %>
<tr><th><%= t("personal_book.files")%></th>
@ -76,4 +77,3 @@
<% end %>
</tbody>
</table>
</div>

View File

@ -41,7 +41,7 @@
</div>
<% end -%>
<table class="table table-condensed table-striped main-list">
<table class="table table-condensed table-striped">
<thead>
<tr>
<% if is_admin? %>
@ -55,7 +55,7 @@
<% @writing_books.each do |writing_book| %>
<tr id="<%= dom_id writing_book %>" class="<%= writing_book.is_hidden ? "checkHide" : "" %>">
<tr class="<%= writing_book.is_hidden ? "checkHide" : "" %>">
<% if is_admin? %>
<td>
<%= check_box_tag 'to_change[]', writing_book.id.to_s, false, :class => "list-check" %>
@ -64,14 +64,6 @@
<td><%= writing_book.year %></td>
<td>
<%= link_to writing_book.create_link, panel_personal_book_front_end_writing_book_path(writing_book) %>
<div class="quick-edit">
<ul class="nav nav-pills hide">
<%if at_least_module_manager || writing_book.writing_book_category.cur_user_is_sub_manager_of(:edit)%>
<li><%= link_to t('edit'), edit_panel_personal_book_back_end_writing_book_path(writing_book,:user_id => @user.id) %></li>
<li><%= link_to t(:delete_), panel_personal_book_back_end_writing_book_path(writing_book,:user_id => @user.id), :confirm => t('sure?'), :method => :delete, :remote => true %></li>
<% end -%>
</ul>
</div>
</td>
</tr>
@ -83,8 +75,9 @@
<% if is_admin? %>
<div class="bottomnav clearfix">
<div class="action pull-right">
<%= link_to content_tag(:i, nil, :class => 'icon-plus') + t('personal_plugins.edit_brief_intro'), panel_personal_book_back_end_personal_book_intros_path(:user_id => @user.id), :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-plus') + t('announcement.add_new'), new_panel_personal_book_back_end_writing_book_path(:user_id => @user.id), :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-plus') + t('personal_plugins.sync_data'), admin_import_data_sync_book_data_path(:user_id => @user.id), :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-plus') + t('personal_plugins.edit_brief_intro'), panel_personal_book_back_end_personal_book_intros_path(:user_id => @user.id), :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-plus') + t('announcement.add_new'), new_panel_personal_book_back_end_writing_book_path(:user_id => @user.id), :class => 'btn btn-primary' %>
</div>
<div class="pagination pagination-centered">
<%= paginate @writing_books, :params => {:direction => params[:direction], :sort => params[:sort], :filter => @filter, :new_filter => nil} %>

View File

@ -16,7 +16,6 @@ en:
form_to_start : "From"
form_to_end : "To"
total_pages : "Total Pages"
publishers : "Publishers"
keywords : "Keywords"
abstract : "Abstract"
publication_date : "Date of Publication"

View File

@ -15,7 +15,6 @@ zh_tw:
issue_no : "期數"
form_to_start : "起"
form_to_end : "訖"
publishers : "出版商"
total_pages : "總頁數"
keywords : "關鍵字"
abstract : "摘要"