Catching case for empty dossiers, cannot download them while locked on procedure

This commit is contained in:
JC 2017-01-03 15:14:30 +01:00
parent 54bcc829c0
commit e7ef58dc9a

View file

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