Merge branch 'master' into devel-1.6.1
This commit is contained in:
commit
2000cc50a2
@ -66,6 +66,27 @@ unless Redmine::Plugin.installed?(:easy_extensions)
|
||||
else
|
||||
ActiveSupport.on_load(:easyproject, yield: true) do
|
||||
init
|
||||
|
||||
require File.expand_path('../app/models/easy_page_modules/easy_dms/epm_dmsf_locked_documents', __FILE__)
|
||||
require File.expand_path('../app/models/easy_page_modules/easy_dms/epm_dmsf_open_approvals', __FILE__)
|
||||
|
||||
EpmDmsfLockedDocuments.register_to_all(:plugin => :easy_dms)
|
||||
EpmDmsfOpenApprovals.register_to_all(:plugin => :easy_dms)
|
||||
|
||||
EasyExtensions::AfterInstallScripts.add do
|
||||
page = EasyPage.where(:page_name => 'project-overview').first
|
||||
page_template = page.default_template if page
|
||||
|
||||
unless page_template
|
||||
page_template = EasyPageTemplate.create(:easy_pages_id => page.id, :template_name => 'Default template',
|
||||
:description => 'Default template', :is_default => true)
|
||||
EasyPageTemplateModule.create_template_module(page, page_template, EpmDmsfLockedDocuments.first,
|
||||
'top-left', HashWithIndifferentAccess.new, 1)
|
||||
EasyPageTemplateModule.create_template_module(page, page_template, EpmDmsfOpenApprovals.first,
|
||||
'top-left', HashWithIndifferentAccess.new, 1)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@ -0,0 +1,35 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Redmine plugin for Document Management System "Features"
|
||||
#
|
||||
# Copyright (C) 2011-17 Karel Pičman <karel.picman@kontron.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
class EpmDmsfLockedDocuments < EasyPageModule
|
||||
|
||||
def category_name
|
||||
@category_name ||= 'easy_dms'
|
||||
end
|
||||
|
||||
def get_show_data(settings, user, page_context = {})
|
||||
{}
|
||||
end
|
||||
|
||||
def get_edit_data(settings, user, page_context = {})
|
||||
{}
|
||||
end
|
||||
|
||||
end
|
||||
@ -0,0 +1,31 @@
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Redmine plugin for Document Management System "Features"
|
||||
#
|
||||
# Copyright (C) 2011-17 Karel Pičman <karel.picman@kontron.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
class EpmDmsfOpenApprovals < EasyPageModule
|
||||
|
||||
def category_name
|
||||
@category_name ||= 'easy_dms'
|
||||
end
|
||||
|
||||
def get_show_data(settings, user, page_context = {})
|
||||
{}
|
||||
end
|
||||
|
||||
end
|
||||
@ -87,7 +87,7 @@
|
||||
<% if (@type == 'link_from') && !@container %>
|
||||
<div id="link_external" style="display: none">
|
||||
<p>
|
||||
<%= f.text_field :external_url, :required => true %>
|
||||
<%= f.text_field :external_url, :required => false %>
|
||||
</p>
|
||||
</div>
|
||||
<% end %>
|
||||
@ -124,5 +124,11 @@
|
||||
$("input[name=external_link]:radio").change(function(){
|
||||
$("#link_internal").toggle();
|
||||
$("#link_external").toggle();
|
||||
$("#dmsf_link_external_url").toggleClass('required', $(this).val());
|
||||
var labelUrl = $('label[for="dmsf_link_external_url"]');
|
||||
labelUrl.toggleClass('required', $(this).val());
|
||||
if(labelUrl.find(".required").length == 0){
|
||||
labelUrl.append('<span class="required"> *</span>');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
@ -0,0 +1,23 @@
|
||||
<%
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Redmine plugin for Document Management System "Features"
|
||||
#
|
||||
# Copyright (C) 2011-17 Karel Pičman <karel.picman@kontron.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
%>
|
||||
|
||||
<% 'Nothing to show' %>
|
||||
@ -0,0 +1,23 @@
|
||||
<%
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Redmine plugin for Document Management System "Features"
|
||||
#
|
||||
# Copyright (C) 2011-17 Karel Pičman <karel.picman@kontron.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
%>
|
||||
|
||||
<%= render :partial => 'my/blocks/open_approvals' %>
|
||||
@ -0,0 +1,23 @@
|
||||
<%
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Redmine plugin for Document Management System "Features"
|
||||
#
|
||||
# Copyright (C) 2011-17 Karel Pičman <karel.picman@kontron.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
%>
|
||||
|
||||
<% 'Nothing to show' %>
|
||||
@ -0,0 +1,23 @@
|
||||
<%
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Redmine plugin for Document Management System "Features"
|
||||
#
|
||||
# Copyright (C) 2011-17 Karel Pičman <karel.picman@kontron.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
%>
|
||||
|
||||
<%= render :partial => 'my/blocks/locked_documents' %>
|
||||
@ -360,4 +360,11 @@ cs:
|
||||
label_user_search_add: Vyhledej uživatele pro přidání
|
||||
|
||||
label_dmsf_attachments: DMS přílohy
|
||||
label_basic_attachments: Souborové přílohy
|
||||
label_basic_attachments: Souborové přílohy
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -357,4 +357,11 @@ de:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Anhänge
|
||||
label_basic_attachments: Dateianhängen
|
||||
label_basic_attachments: Dateianhängen
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ en:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ es:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -361,3 +361,10 @@ fr:
|
||||
|
||||
label_dmsf_attachments: Pièces-jointes DMS
|
||||
label_basic_attachments: Pièces-jointes standards
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ hu:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ it: # Italian strings thx 2 Matteo Arceci!
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ ja:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ pl:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -361,3 +361,10 @@ pt-BR:
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ ru:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ sl:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ zh-TW:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -360,4 +360,11 @@ zh:
|
||||
label_user_search_add: Search for user to add
|
||||
|
||||
label_dmsf_attachments: DMS Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
label_basic_attachments: Basic Attachments
|
||||
|
||||
easy_pages:
|
||||
modules:
|
||||
dmsf_locked_documents: My locked documents
|
||||
dmsf_open_approvals: My open approvals
|
||||
module_category:
|
||||
easy_dms: Easy DMS
|
||||
@ -3,99 +3,98 @@ module RedmineDmsf
|
||||
|
||||
def self.included(base)
|
||||
base.send(:include, InstanceMethods)
|
||||
|
||||
base.class_eval do
|
||||
|
||||
unloadable
|
||||
before_action :controller_easy_crm_cases_before_save, only: [:create, :update, :bulk_update]
|
||||
after_action :controller_easy_crm_cases_after_save, only: [:create, :update, :bulk_update]
|
||||
|
||||
|
||||
private
|
||||
|
||||
def controller_easy_crm_cases_before_save
|
||||
easy_crm_cases = @easy_crm_cases
|
||||
easy_crm_cases ||= [@easy_crm_case]
|
||||
easy_crm_cases.each do |easy_crm_case|
|
||||
easy_crm_case.save_dmsf_attachments(params[:dmsf_attachments])
|
||||
easy_crm_case.save_dmsf_links(params[:dmsf_links])
|
||||
easy_crm_case.save_dmsf_attachments_wfs(params[:dmsf_attachments_wfs], params[:dmsf_attachments])
|
||||
easy_crm_case.save_dmsf_links_wfs(params[:dmsf_links_wfs])
|
||||
end
|
||||
end
|
||||
|
||||
def controller_easy_crm_cases_after_save
|
||||
easy_crm_cases = @easy_crm_cases
|
||||
easy_crm_cases ||= [@easy_crm_case]
|
||||
easy_crm_cases.each do |easy_crm_case|
|
||||
# Attach DMS documents
|
||||
uploaded_files = params[:dmsf_attachments]
|
||||
if uploaded_files && uploaded_files.is_a?(Hash)
|
||||
system_folder = easy_crm_case.system_folder(true)
|
||||
uploaded_files.each do |key, uploaded_file|
|
||||
upload = DmsfUpload.create_from_uploaded_attachment(easy_crm_case.project, system_folder, uploaded_file)
|
||||
if upload
|
||||
uploaded_file[:disk_filename] = upload.disk_filename
|
||||
uploaded_file[:name] = upload.name
|
||||
uploaded_file[:title] = upload.title
|
||||
uploaded_file[:version] = 1
|
||||
uploaded_file[:size] = upload.size
|
||||
uploaded_file[:mime_type] = upload.mime_type
|
||||
uploaded_file[:tempfile_path] = upload.tempfile_path
|
||||
if params[:dmsf_attachments_wfs].present? && params[:dmsf_attachments_wfs][key].present?
|
||||
uploaded_file[:workflow_id] = params[:dmsf_attachments_wfs][key].to_i
|
||||
end
|
||||
end
|
||||
end
|
||||
DmsfUploadHelper.commit_files_internal uploaded_files, easy_crm_case.project, system_folder, self
|
||||
end
|
||||
# Attach DMS links
|
||||
easy_crm_case.saved_dmsf_links.each do |l|
|
||||
file = l.target_file
|
||||
revision = file.last_revision
|
||||
system_folder = easy_crm_case.system_folder(true)
|
||||
if system_folder
|
||||
l.project_id = system_folder.project_id
|
||||
l.dmsf_folder_id = system_folder.id
|
||||
if l.save
|
||||
easy_crm_case.dmsf_file_added file
|
||||
end
|
||||
wf = easy_crm_case.saved_dmsf_links_wfs[l.id]
|
||||
if wf
|
||||
# Assign the workflow
|
||||
revision.set_workflow(wf.id, 'assign')
|
||||
revision.assign_workflow(wf.id)
|
||||
# Start the workflow
|
||||
revision.set_workflow(wf.id, 'start')
|
||||
if revision.save
|
||||
wf.notify_users(easy_crm_case.project, revision, self)
|
||||
begin
|
||||
file.lock!
|
||||
rescue DmsfLockError => e
|
||||
Rails.logger.warn e.message
|
||||
end
|
||||
else
|
||||
Rails.logger.error l(:error_workflow_assign)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
copied_from = EasyCrmCase.find_by_id(params[:copy_from]) if params[:copy_from].present?
|
||||
# Save documents
|
||||
if copied_from
|
||||
copied_from.dmsf_files.each do |dmsf_file|
|
||||
dmsf_file.copy_to(easy_crm_case.project, easy_crm_cases.system_folder(true))
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
alias_method_chain :easy_crm_after_save, :dmsf
|
||||
end
|
||||
end
|
||||
|
||||
module InstanceMethods
|
||||
|
||||
def controller_easy_crm_cases_before_save
|
||||
easy_crm_cases = @easy_crm_cases
|
||||
easy_crm_cases ||= [@easy_crm_case]
|
||||
easy_crm_cases.each do |easy_crm_case|
|
||||
easy_crm_case.save_dmsf_attachments(params[:dmsf_attachments])
|
||||
easy_crm_case.save_dmsf_links(params[:dmsf_links])
|
||||
easy_crm_case.save_dmsf_attachments_wfs(params[:dmsf_attachments_wfs], params[:dmsf_attachments])
|
||||
easy_crm_case.save_dmsf_links_wfs(params[:dmsf_links_wfs])
|
||||
end
|
||||
end
|
||||
|
||||
def easy_crm_after_save_with_dmsf
|
||||
easy_crm_after_save_without_dmsf
|
||||
easy_crm_cases = @easy_crm_cases
|
||||
easy_crm_cases ||= [@easy_crm_case]
|
||||
easy_crm_cases.each do |easy_crm_case|
|
||||
# Attach DMS documents
|
||||
uploaded_files = params[:dmsf_attachments]
|
||||
if uploaded_files && uploaded_files.is_a?(Hash)
|
||||
system_folder = easy_crm_case.system_folder(true)
|
||||
uploaded_files.each do |key, uploaded_file|
|
||||
upload = DmsfUpload.create_from_uploaded_attachment(easy_crm_case.project, system_folder, uploaded_file)
|
||||
if upload
|
||||
uploaded_file[:disk_filename] = upload.disk_filename
|
||||
uploaded_file[:name] = upload.name
|
||||
uploaded_file[:title] = upload.title
|
||||
uploaded_file[:version] = 1
|
||||
uploaded_file[:size] = upload.size
|
||||
uploaded_file[:mime_type] = upload.mime_type
|
||||
uploaded_file[:tempfile_path] = upload.tempfile_path
|
||||
if params[:dmsf_attachments_wfs].present? && params[:dmsf_attachments_wfs][key].present?
|
||||
uploaded_file[:workflow_id] = params[:dmsf_attachments_wfs][key].to_i
|
||||
end
|
||||
end
|
||||
end
|
||||
DmsfUploadHelper.commit_files_internal uploaded_files, easy_crm_case.project, system_folder, self
|
||||
end
|
||||
# Attach DMS links
|
||||
easy_crm_case.saved_dmsf_links.each do |l|
|
||||
file = l.target_file
|
||||
revision = file.last_revision
|
||||
system_folder = easy_crm_case.system_folder(true)
|
||||
if system_folder
|
||||
l.project_id = system_folder.project_id
|
||||
l.dmsf_folder_id = system_folder.id
|
||||
if l.save
|
||||
easy_crm_case.dmsf_file_added file
|
||||
end
|
||||
wf = easy_crm_case.saved_dmsf_links_wfs[l.id]
|
||||
if wf
|
||||
# Assign the workflow
|
||||
revision.set_workflow(wf.id, 'assign')
|
||||
revision.assign_workflow(wf.id)
|
||||
# Start the workflow
|
||||
revision.set_workflow(wf.id, 'start')
|
||||
if revision.save
|
||||
wf.notify_users(easy_crm_case.project, revision, self)
|
||||
begin
|
||||
file.lock!
|
||||
rescue DmsfLockError => e
|
||||
Rails.logger.warn e.message
|
||||
end
|
||||
else
|
||||
Rails.logger.error l(:error_workflow_assign)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
copied_from = EasyCrmCase.find_by_id(params[:copy_from]) if params[:copy_from].present?
|
||||
# Save documents
|
||||
if copied_from
|
||||
copied_from.dmsf_files.each do |dmsf_file|
|
||||
dmsf_file.copy_to(easy_crm_case.project, easy_crm_cases.system_folder(true))
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
Rails.configuration.to_prepare do
|
||||
unless EasyCrmCasesController.included_modules.include?(RedmineDmsf::EasyCrmCasesControllerPatch)
|
||||
EasyCrmCasesController.send(:include, RedmineDmsf::EasyCrmCasesControllerPatch)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user