Merge branch 'develop' into staging

This commit is contained in:
Xavier J 2017-01-03 15:51:31 +01:00
commit d2766c0171
2 changed files with 14 additions and 12 deletions

View file

@ -41,7 +41,7 @@ class Backoffice::DossiersController < Backoffice::DossiersListController
def download_dossiers_tps def download_dossiers_tps
if procedure = Procedure.find_by(id: params[:procedure_id]) if procedure = Procedure.find_by(id: params[:procedure_id])
dossiers = dossiers_list_facade(param_liste).dossiers_to_display dossiers = dossiers_list_facade(param_liste).dossiers_to_display
respond_with Dossier.export_full_generation(dossiers, request.format) if dossiers.empty? respond_with Dossier.export_full_generation(dossiers, request.format) unless dossiers.empty?
else else
dossiers = dossiers_list_facade(param_liste).dossiers_to_display dossiers = dossiers_list_facade(param_liste).dossiers_to_display
respond_to do |format| respond_to do |format|

View file

@ -293,6 +293,7 @@ class Dossier < ActiveRecord::Base
end end
def self.export_full_generation(dossiers, format) def self.export_full_generation(dossiers, format)
if dossiers && !dossiers.empty?
data = [] data = []
headers = dossiers.first.export_headers headers = dossiers.first.export_headers
dossiers.each do |dossier| dossiers.each do |dossier|
@ -306,6 +307,7 @@ class Dossier < ActiveRecord::Base
return SpreadsheetArchitect.to_ods(data: data, headers: headers) return SpreadsheetArchitect.to_ods(data: data, headers: headers)
end end
end end
end
def reset! def reset!
etablissement.destroy etablissement.destroy