Skip to content

Commit b52aeea

Browse files
author
Ezra Peisach
committed
Auto reminder messages should be archived in main message area - not as notes
1 parent 6da2f01 commit b52aeea

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

wwpdb/apps/msgmodule/io/MessagingIo.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1437,10 +1437,10 @@ def autoMsg(self, p_depIdList, p_tmpltType="release-publ", p_isEmdbEntry=False,
14371437
elif p_tmpltType == "remind-unlocked":
14381438
msgTmplt = MessagingTemplates.msgTmplt_remindUnlocked
14391439
attachFiles = False
1440-
isNote = True
1440+
# isNote = True
14411441
# Need all ids
14421442
accstr = templateDict["accession_ids"]
1443-
subject = "ARCHIVED: Please attend to your unlocked deposition session - " + accstr
1443+
subject = "Please attend to your unlocked deposition session - " + accstr
14441444
elif p_tmpltType == "approval-impl": # CS 2024-04-04 change implicit-approved to approval-impl to match frontend drop-down
14451445
msgTmplt = MessagingTemplates.msgTmplt_approvalImplicit_em if p_isEmdbEntry else MessagingTemplates.msgTmplt_approvalImplicit
14461446
attachFiles = False
@@ -1468,14 +1468,14 @@ def autoMsg(self, p_depIdList, p_tmpltType="release-publ", p_isEmdbEntry=False,
14681468
elif p_tmpltType == "reminder": # CS 2024-04-04 change type from remind-feedback to reminder to match frontend drop-down
14691469
msgTmplt = MessagingTemplates.msgTmplt_reminder_em if p_isEmdbEntry else MessagingTemplates.msgTmplt_reminder
14701470
attachFiles = False
1471-
isNote = True
1471+
# isNote = True
14721472
# Need all ids
14731473
accstr = templateDict["accession_ids"]
14741474
subject = "REMINDER: Still awaiting feedback for " + accstr
14751475
elif p_tmpltType == "reminder-auth-to-rel": # CS 2024-09-09 add process to send reminder on AUTH entry deposited as REL
14761476
msgTmplt = MessagingTemplates.msgTmplt_reminder_auth_to_rel_em if p_isEmdbEntry else MessagingTemplates.msgTmplt_reminder_auth_to_rel
14771477
attachFiles = False
1478-
isNote = True
1478+
# isNote = True
14791479
accstr = templateDict["accession_ids"]
14801480
subject = "REMINDER: Upcoming release of " + accstr
14811481
else:

0 commit comments

Comments
 (0)