set recvtyp to NOTIFICATION approval_submit notification

This commit is contained in:
Uwe Steinmann 2021-02-08 18:55:18 +01:00
parent aaec9a5410
commit d53318b917

View File

@ -128,9 +128,9 @@ if ($_POST["approvalType"] == "ind" || $_POST["approvalType"] == "grp") {
// Send notification to subscribers.
$nl=$document->getNotifyList();
$notifier->toList($user, $nl["users"], $subject, $message, $params, SeedDMS_NotificationService::RECV_APPROVER);
$notifier->toList($user, $nl["users"], $subject, $message, $params, SeedDMS_NotificationService::RECV_NOTIFICATION);
foreach ($nl["groups"] as $grp) {
$notifier->toGroup($user, $grp, $subject, $message, $params, SeedDMS_NotificationService::RECV_APPROVER);
$notifier->toGroup($user, $grp, $subject, $message, $params, SeedDMS_NotificationService::RECV_NOTIFICATION);
}
}
}