amelioration(bulk_messages): ETQ instructeur, je peux envoyer un message aux usagers ayant un dossier en brouillon
This commit is contained in:
parent
764f19d11a
commit
425d8867be
12 changed files with 145 additions and 111 deletions
|
@ -224,19 +224,18 @@ module Instructeurs
|
||||||
|
|
||||||
def email_usagers
|
def email_usagers
|
||||||
@procedure = procedure
|
@procedure = procedure
|
||||||
@commentaire = Commentaire.new
|
@bulk_messages = BulkMessage.includes(:groupe_instructeurs).where(groupe_instructeurs: { procedure: procedure })
|
||||||
@email_usagers_dossiers = email_usagers_dossiers
|
@bulk_message = current_instructeur.bulk_messages.build
|
||||||
@dossiers_count = @email_usagers_dossiers.count
|
@dossiers_without_groupe_count = procedure.dossiers.state_brouillon.for_groupe_instructeur(nil).count
|
||||||
@groupe_instructeurs = email_usagers_groupe_instructeurs_label
|
|
||||||
@bulk_messages = BulkMessage.includes(:groupe_instructeurs).where(groupe_instructeurs: { id: current_instructeur.groupe_instructeur_ids, procedure: procedure })
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def create_multiple_commentaire
|
def create_multiple_commentaire
|
||||||
@procedure = procedure
|
@procedure = procedure
|
||||||
errors = []
|
errors = []
|
||||||
|
bulk_message = current_instructeur.bulk_messages.build(bulk_message_params)
|
||||||
email_usagers_dossiers.each do |dossier|
|
dossiers = procedure.dossiers.state_brouillon.for_groupe_instructeur(nil)
|
||||||
commentaire = CommentaireService.create(current_instructeur, dossier, commentaire_params)
|
dossiers.each do |dossier|
|
||||||
|
commentaire = CommentaireService.create(current_instructeur, dossier, bulk_message_params.except(:targets))
|
||||||
if commentaire.errors.empty?
|
if commentaire.errors.empty?
|
||||||
commentaire.dossier.update!(last_commentaire_updated_at: Time.zone.now)
|
commentaire.dossier.update!(last_commentaire_updated_at: Time.zone.now)
|
||||||
else
|
else
|
||||||
|
@ -244,8 +243,15 @@ module Instructeurs
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
valid_dossiers_count = email_usagers_dossiers.count - errors.count
|
valid_dossiers_count = dossiers.count - errors.count
|
||||||
create_bulk_message_mail(valid_dossiers_count, Dossier.states.fetch(:brouillon))
|
bulk_message.assign_attributes(
|
||||||
|
dossier_count: valid_dossiers_count,
|
||||||
|
dossier_state: Dossier.states.fetch(:brouillon),
|
||||||
|
sent_at: Time.zone.now,
|
||||||
|
instructeur_id: current_instructeur.id,
|
||||||
|
groupe_instructeurs: GroupeInstructeur.for_dossiers(dossiers)
|
||||||
|
)
|
||||||
|
bulk_message.save!
|
||||||
|
|
||||||
if errors.empty?
|
if errors.empty?
|
||||||
flash[:notice] = "Tous les messages ont été envoyés avec succès"
|
flash[:notice] = "Tous les messages ont été envoyés avec succès"
|
||||||
|
@ -262,18 +268,6 @@ module Instructeurs
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def create_bulk_message_mail(dossier_count, dossier_state)
|
|
||||||
BulkMessage.create(
|
|
||||||
dossier_count: dossier_count,
|
|
||||||
dossier_state: dossier_state,
|
|
||||||
body: commentaire_params[:body],
|
|
||||||
sent_at: Time.zone.now,
|
|
||||||
instructeur_id: current_instructeur.id,
|
|
||||||
piece_jointe: commentaire_params[:piece_jointe],
|
|
||||||
groupe_instructeurs: email_usagers_groupe_instructeurs
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
def assign_to_params
|
def assign_to_params
|
||||||
params.require(:assign_to)
|
params.require(:assign_to)
|
||||||
.permit(:instant_expert_avis_email_notifications_enabled, :instant_email_dossier_notifications_enabled, :instant_email_message_notifications_enabled, :daily_email_notifications_enabled, :weekly_email_notifications_enabled)
|
.permit(:instant_expert_avis_email_notifications_enabled, :instant_email_dossier_notifications_enabled, :instant_email_message_notifications_enabled, :daily_email_notifications_enabled, :weekly_email_notifications_enabled)
|
||||||
|
@ -355,20 +349,8 @@ module Instructeurs
|
||||||
@current_filters ||= procedure_presentation.filters.fetch(statut, [])
|
@current_filters ||= procedure_presentation.filters.fetch(statut, [])
|
||||||
end
|
end
|
||||||
|
|
||||||
def email_usagers_dossiers
|
def bulk_message_params
|
||||||
procedure.dossiers.state_brouillon.where(groupe_instructeur: current_instructeur.groupe_instructeur_ids).includes(:groupe_instructeur)
|
params.require(:bulk_message).permit(:body)
|
||||||
end
|
|
||||||
|
|
||||||
def email_usagers_groupe_instructeurs_label
|
|
||||||
email_usagers_dossiers.map(&:groupe_instructeur).uniq.map(&:label)
|
|
||||||
end
|
|
||||||
|
|
||||||
def email_usagers_groupe_instructeurs
|
|
||||||
email_usagers_dossiers.map(&:groupe_instructeur).uniq
|
|
||||||
end
|
|
||||||
|
|
||||||
def commentaire_params
|
|
||||||
params.require(:commentaire).permit(:body, :piece_jointe)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -541,6 +541,7 @@ module Users
|
||||||
|
|
||||||
def update_dossier_and_compute_errors
|
def update_dossier_and_compute_errors
|
||||||
errors = []
|
errors = []
|
||||||
|
|
||||||
@dossier.assign_attributes(champs_public_params)
|
@dossier.assign_attributes(champs_public_params)
|
||||||
if @dossier.champs_public_all.any?(&:changed_for_autosave?)
|
if @dossier.champs_public_all.any?(&:changed_for_autosave?)
|
||||||
@dossier.last_champ_updated_at = Time.zone.now
|
@dossier.last_champ_updated_at = Time.zone.now
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
class BulkMessage < ApplicationRecord
|
class BulkMessage < ApplicationRecord
|
||||||
belongs_to :instructeur
|
belongs_to :instructeur
|
||||||
has_and_belongs_to_many :groupe_instructeurs, -> { order(:label) }
|
has_and_belongs_to_many :groupe_instructeurs, -> { order(:label) }
|
||||||
has_one_attached :piece_jointe
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
class Commentaire < ApplicationRecord
|
class Commentaire < ApplicationRecord
|
||||||
include Discard::Model
|
include Discard::Model
|
||||||
|
|
||||||
belongs_to :dossier, inverse_of: :commentaires, touch: true, optional: false
|
belongs_to :dossier, inverse_of: :commentaires, touch: true, optional: false
|
||||||
|
|
||||||
belongs_to :instructeur, inverse_of: :commentaires, optional: true
|
belongs_to :instructeur, inverse_of: :commentaires, optional: true
|
||||||
belongs_to :expert, inverse_of: :commentaires, optional: true
|
belongs_to :expert, inverse_of: :commentaires, optional: true
|
||||||
has_one :dossier_correction, inverse_of: :commentaire, dependent: :nullify
|
has_one :dossier_correction, inverse_of: :commentaire, dependent: :nullify
|
||||||
|
|
|
@ -215,7 +215,7 @@ class Dossier < ApplicationRecord
|
||||||
}
|
}
|
||||||
scope :for_procedure_preview, -> { where(for_procedure_preview: true) }
|
scope :for_procedure_preview, -> { where(for_procedure_preview: true) }
|
||||||
scope :for_editing_fork, -> { where.not(editing_fork_origin_id: nil) }
|
scope :for_editing_fork, -> { where.not(editing_fork_origin_id: nil) }
|
||||||
|
scope :for_groupe_instructeur, -> (groupe_instructeurs) { where(groupe_instructeur: groupe_instructeurs) }
|
||||||
scope :order_by_updated_at, -> (order = :desc) { order(updated_at: order) }
|
scope :order_by_updated_at, -> (order = :desc) { order(updated_at: order) }
|
||||||
scope :order_by_created_at, -> (order = :asc) { order(depose_at: order, created_at: order, id: order) }
|
scope :order_by_created_at, -> (order = :asc) { order(depose_at: order, created_at: order, id: order) }
|
||||||
scope :updated_since, -> (since) { where('dossiers.updated_at >= ?', since) }
|
scope :updated_since, -> (since) { where('dossiers.updated_at >= ?', since) }
|
||||||
|
|
|
@ -30,7 +30,7 @@ class GroupeInstructeur < ApplicationRecord
|
||||||
scope :for_api_v2, -> { includes(procedure: [:administrateurs]) }
|
scope :for_api_v2, -> { includes(procedure: [:administrateurs]) }
|
||||||
scope :active, -> { where(closed: false) }
|
scope :active, -> { where(closed: false) }
|
||||||
scope :closed, -> { where(closed: true) }
|
scope :closed, -> { where(closed: true) }
|
||||||
|
scope :for_dossiers, -> (dossiers) { joins(:dossiers).where(dossiers: dossiers).distinct(:id) }
|
||||||
def add(instructeur)
|
def add(instructeur)
|
||||||
return if instructeur.nil?
|
return if instructeur.nil?
|
||||||
return if in?(instructeur.groupe_instructeurs)
|
return if in?(instructeur.groupe_instructeurs)
|
||||||
|
|
|
@ -3,30 +3,35 @@
|
||||||
= render partial: 'administrateurs/breadcrumbs',
|
= render partial: 'administrateurs/breadcrumbs',
|
||||||
locals: { steps: [[@procedure.libelle.truncate_words(10), instructeur_procedure_path(@procedure)],
|
locals: { steps: [[@procedure.libelle.truncate_words(10), instructeur_procedure_path(@procedure)],
|
||||||
[t('.contact_users')]] }
|
[t('.contact_users')]] }
|
||||||
.messagerie.container
|
.messagerie.fr-container
|
||||||
- if @email_usagers_dossiers.present?
|
%h1 Contacter les usagers
|
||||||
%p.notice.mb-2.mt-4
|
%p.fr-highlight
|
||||||
= t('.notice', dossiers_count: pluralize(@dossiers_count, 'personne'), groupe_instructeurs: @groupe_instructeurs.join(', '))
|
= t('.hint', count: @dossiers_without_groupe_count).html_safe
|
||||||
|
|
||||||
= render partial: 'shared/dossiers/messages/form', locals: { commentaire: @commentaire, form_url: create_multiple_commentaire_instructeur_procedure_path(@procedure), disable_piece_jointe: true }
|
- if @dossiers_without_groupe_count.positive?
|
||||||
|
= form_for(@bulk_message, url: create_multiple_commentaire_instructeur_procedure_path, html: { data: { controller: 'persisted-form', persisted_form_key_value: dom_id(@procedure, :bulk_message) } }) do |f|
|
||||||
|
|
||||||
- if @bulk_messages.present?
|
%p.mandatory-explanation= t('asterisk_html', scope: [:utils])
|
||||||
%section.list-avis.mt-8
|
|
||||||
%h1.tab-title
|
|
||||||
Messages envoyés précédemment
|
|
||||||
%span.fr-badge= @bulk_messages.count
|
|
||||||
|
|
||||||
%ul
|
= render Dsfr::InputComponent.new(form: f, attribute: :body, input_type: :text_area, opts: { rows: 5, placeholder: t('views.shared.dossiers.messages.form.write_message_placeholder'), title: t('views.shared.dossiers.messages.form.write_message_placeholder'), class: 'fr-input message-textarea'})
|
||||||
- @bulk_messages.each do |message|
|
|
||||||
%li.one-avis.flex.align-start
|
.fr-mt-3w
|
||||||
.width-100
|
= f.submit t('views.shared.dossiers.messages.form.send_message'), class: 'fr-btn', data: { disable: true }
|
||||||
%h2.claimant
|
|
||||||
%span.email= message.instructeur.email
|
|
||||||
%span.date message envoyé à #{@dossiers_count} usagers le #{message.sent_at.strftime('%d/%m/%y à %H:%M')}
|
|
||||||
%p= message.body
|
|
||||||
.answer.flex.align-start
|
|
||||||
- if message.piece_jointe.present?
|
|
||||||
= render Attachment::ShowComponent.new(attachment: message.piece_jointe.attachment)
|
|
||||||
- else
|
- else
|
||||||
.page-title.center
|
.page-title.center
|
||||||
%h2 Il n’y a aucun dossier en brouillon dans vos groupes d’instructeurs
|
%h2 Il n’y a aucun dossier en brouillon
|
||||||
|
|
||||||
|
- if @bulk_messages.present?
|
||||||
|
%section.list-avis.mt-8
|
||||||
|
%h1.tab-title
|
||||||
|
Messages envoyés précédemment
|
||||||
|
%span.fr-badge= @bulk_messages.count
|
||||||
|
|
||||||
|
%ul
|
||||||
|
- @bulk_messages.each do |message|
|
||||||
|
%li.one-avis.flex.align-start
|
||||||
|
.width-100
|
||||||
|
%h2.claimant
|
||||||
|
%span.email= message.instructeur.email
|
||||||
|
%span.date message envoyé à #{@dossiers_count} usagers le #{message.sent_at.strftime('%d/%m/%y à %H:%M')}
|
||||||
|
%p= message.body
|
||||||
|
|
9
config/locales/models/bulk_message/en.yml
Normal file
9
config/locales/models/bulk_message/en.yml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
en:
|
||||||
|
activerecord:
|
||||||
|
models:
|
||||||
|
bulk_message:
|
||||||
|
one: "Bulk message to users"
|
||||||
|
other: "Bulk message to users"
|
||||||
|
attributes:
|
||||||
|
bulk_message:
|
||||||
|
body: Content
|
9
config/locales/models/bulk_message/fr.yml
Normal file
9
config/locales/models/bulk_message/fr.yml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
fr:
|
||||||
|
activerecord:
|
||||||
|
models:
|
||||||
|
bulk_message:
|
||||||
|
one: "Message aux usagers"
|
||||||
|
other: "Messages aux usagers"
|
||||||
|
attributes:
|
||||||
|
bulk_message:
|
||||||
|
body: "Message envoyé aux destinataires :"
|
|
@ -12,8 +12,11 @@ en:
|
||||||
copy_link_button: Copy the procedure link to clipboard
|
copy_link_button: Copy the procedure link to clipboard
|
||||||
email_usagers:
|
email_usagers:
|
||||||
contact_users: Contact users (draft)
|
contact_users: Contact users (draft)
|
||||||
notice: "You will send a message to %{dossiers_count} whose files are in draft, in the instructor groups : %{groupe_instructeurs}."
|
hint:
|
||||||
|
zero: "There is no user with a draft."
|
||||||
|
one: "You will send a message to <strong>1</strong> user."
|
||||||
|
other: "You will send a message to <strong>%{count}</strong> users."
|
||||||
administrators_list:
|
administrators_list:
|
||||||
title: "%{procedure_libelle} - n°%{procedure_id} - administrators"
|
title: "%{procedure_libelle} - n°%{procedure_id} - administrators"
|
||||||
stats:
|
stats:
|
||||||
title: Statistics
|
title: Statistics
|
||||||
|
|
|
@ -12,7 +12,10 @@ fr:
|
||||||
copy_link_button: Copier le lien de la démarche dans le presse-papiers
|
copy_link_button: Copier le lien de la démarche dans le presse-papiers
|
||||||
email_usagers:
|
email_usagers:
|
||||||
contact_users: Contacter les usagers (brouillon)
|
contact_users: Contacter les usagers (brouillon)
|
||||||
notice: "Vous allez envoyer un message à %{dossiers_count} dont les dossiers sont en brouillon, dans les groupes instructeurs : %{groupe_instructeurs}."
|
hint:
|
||||||
|
zero: "Aucun usager n'a de dossier en brouillon."
|
||||||
|
one: "Vous allez envoyer un message à <strong>1</strong> usager ayant un dossier en brouillon."
|
||||||
|
other: "Vous allez envoyer un message à <strong>%{count}</strong> usagers ayant un dossier en brouillon."
|
||||||
administrators_list:
|
administrators_list:
|
||||||
title: "%{procedure_libelle} - n°%{procedure_id} - administrateurs"
|
title: "%{procedure_libelle} - n°%{procedure_id} - administrateurs"
|
||||||
stats:
|
stats:
|
||||||
|
|
|
@ -486,6 +486,76 @@ describe Instructeurs::ProceduresController, type: :controller do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe '#email_usagers' do
|
||||||
|
let(:instructeur) { create(:instructeur) }
|
||||||
|
let(:procedure) { create(:procedure) }
|
||||||
|
let!(:gi_1) { create(:groupe_instructeur, label: 'gi_1', procedure: procedure, instructeurs: [instructeur]) }
|
||||||
|
let!(:dossier_without_groupe) { create(:dossier, :brouillon, procedure: procedure, groupe_instructeur: nil) }
|
||||||
|
|
||||||
|
subject do
|
||||||
|
get :email_usagers, params: { procedure_id: procedure.id }
|
||||||
|
end
|
||||||
|
|
||||||
|
it { is_expected.to redirect_to(new_user_session_path) }
|
||||||
|
|
||||||
|
context 'when authenticated' do
|
||||||
|
before { sign_in(instructeur.user) }
|
||||||
|
it 'lists dossier brouillon in groupe_instructeur as well as dossiers_brouillon outside groupe_instructeur' do
|
||||||
|
is_expected.to have_http_status(200)
|
||||||
|
expect(assigns(:dossiers_without_groupe_count)).to eq(1)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe '#create_multiple_commentaire' do
|
||||||
|
let(:instructeur) { create(:instructeur) }
|
||||||
|
let!(:gi_p1_1) { create(:groupe_instructeur, label: '1', procedure: procedure, instructeurs: [instructeur]) }
|
||||||
|
let!(:gi_p1_2) { create(:groupe_instructeur, label: '2', procedure: procedure) }
|
||||||
|
let(:body) { "avant\napres" }
|
||||||
|
let(:bulk_message) { BulkMessage.first }
|
||||||
|
let!(:dossier) { create(:dossier, state: "brouillon", procedure: procedure, groupe_instructeur: gi_p1_1) }
|
||||||
|
let!(:dossier_2) { create(:dossier, state: "brouillon", procedure: procedure, groupe_instructeur: gi_p1_1) }
|
||||||
|
let!(:dossier_3) { create(:dossier, state: "brouillon", procedure: procedure, groupe_instructeur: gi_p1_2) }
|
||||||
|
let!(:procedure) { create(:procedure, :published, instructeurs: [instructeur]) }
|
||||||
|
|
||||||
|
before do
|
||||||
|
sign_in(instructeur.user)
|
||||||
|
procedure
|
||||||
|
end
|
||||||
|
|
||||||
|
let!(:dossier_4) { create(:dossier, state: "brouillon", procedure: procedure, groupe_instructeur: nil) }
|
||||||
|
before do
|
||||||
|
post :create_multiple_commentaire,
|
||||||
|
params: {
|
||||||
|
procedure_id: procedure.id,
|
||||||
|
bulk_message: { body: body }
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
it "creates a commentaire for 1 dossiers" do
|
||||||
|
expect(Commentaire.count).to eq(1)
|
||||||
|
expect(dossier.commentaires).to eq([])
|
||||||
|
expect(dossier_2.commentaires).to eq([])
|
||||||
|
expect(dossier_3.commentaires).to eq([])
|
||||||
|
expect(dossier_4.commentaires.first.body).to eq("avant\napres")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "creates a Bulk Message for 2 groupes instructeurs" do
|
||||||
|
expect(BulkMessage.count).to eq(1)
|
||||||
|
expect(bulk_message.body).to eq("avant\napres")
|
||||||
|
expect(bulk_message.groupe_instructeurs).to be_empty
|
||||||
|
end
|
||||||
|
|
||||||
|
it "creates a flash notice" do
|
||||||
|
expect(flash.notice).to be_present
|
||||||
|
expect(flash.notice).to eq("Tous les messages ont été envoyés avec succès")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "redirect to instructeur_procedure_path" do
|
||||||
|
expect(response).to redirect_to instructeur_procedure_path(procedure)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe '#download_export' do
|
describe '#download_export' do
|
||||||
let(:instructeur) { create(:instructeur) }
|
let(:instructeur) { create(:instructeur) }
|
||||||
let!(:procedure) { create(:procedure) }
|
let!(:procedure) { create(:procedure) }
|
||||||
|
@ -563,49 +633,4 @@ describe Instructeurs::ProceduresController, type: :controller do
|
||||||
it { is_expected.to have_http_status(:forbidden) }
|
it { is_expected.to have_http_status(:forbidden) }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe '#create_multiple_commentaire' do
|
|
||||||
let(:instructeur) { create(:instructeur) }
|
|
||||||
let!(:gi_p1_1) { create(:groupe_instructeur, label: '1', procedure: procedure) }
|
|
||||||
let!(:gi_p1_2) { create(:groupe_instructeur, label: '2', procedure: procedure) }
|
|
||||||
let(:body) { "avant\napres" }
|
|
||||||
let(:bulk_message) { BulkMessage.first }
|
|
||||||
let!(:dossier) { create(:dossier, state: "brouillon", procedure: procedure, groupe_instructeur: gi_p1_1) }
|
|
||||||
let!(:dossier_2) { create(:dossier, state: "brouillon", procedure: procedure, groupe_instructeur: gi_p1_1) }
|
|
||||||
let!(:dossier_3) { create(:dossier, state: "brouillon", procedure: procedure, groupe_instructeur: gi_p1_2) }
|
|
||||||
let!(:procedure) { create(:procedure, :published, instructeurs: [instructeur]) }
|
|
||||||
|
|
||||||
before do
|
|
||||||
sign_in(instructeur.user)
|
|
||||||
instructeur.groupe_instructeurs << gi_p1_1
|
|
||||||
procedure
|
|
||||||
post :create_multiple_commentaire,
|
|
||||||
params: {
|
|
||||||
procedure_id: procedure.id,
|
|
||||||
commentaire: { body: body }
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
it "creates a commentaire for 2 dossiers" do
|
|
||||||
expect(Commentaire.count).to eq(2)
|
|
||||||
expect(dossier.commentaires.first.body).to eq("avant\napres")
|
|
||||||
expect(dossier_2.commentaires.first.body).to eq("avant\napres")
|
|
||||||
expect(dossier_3.commentaires).to eq([])
|
|
||||||
end
|
|
||||||
|
|
||||||
it "creates a Bulk Message for 2 groupes instructeurs" do
|
|
||||||
expect(BulkMessage.count).to eq(1)
|
|
||||||
expect(bulk_message.body).to eq("avant\napres")
|
|
||||||
expect(bulk_message.groupe_instructeurs).to match([gi_p1_1])
|
|
||||||
end
|
|
||||||
|
|
||||||
it "creates a flash notice" do
|
|
||||||
expect(flash.notice).to be_present
|
|
||||||
expect(flash.notice).to eq("Tous les messages ont été envoyés avec succès")
|
|
||||||
end
|
|
||||||
|
|
||||||
it "redirect to instructeur_procedure_path" do
|
|
||||||
expect(response).to redirect_to instructeur_procedure_path(procedure)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue