Skip to content
Snippets Groups Projects
Commit 79d431e9 authored by Markus Schloder's avatar Markus Schloder
Browse files

Merge branch '1066033_ps_gb_BenachrichtigungZuordnung' into '2020.2.0_Betreuung_HamaDSG'

1066033 ps gb benachrichtigung zuordnung

See merge request xrm/basic!473
parents d632ebd8 9f2196c2
No related branches found
No related tags found
No related merge requests found
......@@ -19,4 +19,4 @@
<!--enable this only when you definetly want to overwrite the existing data with demo records:-->
<!--<include relativeToChangelogFile="true" file="basic/_demoData/changelog.xml" context="example"/>-->
</databaseChangeLog>
</databaseChangeLog>
\ No newline at end of file
import("system.tools");
import("system.text");
import("system.datetime");
import("system.notification");
import("system.translate");
import("system.logging");
import("Contact_lib");
import("KeywordRegistry_basic");
......@@ -259,12 +264,13 @@ DistrictUtils.getAppliedFilter = function (pDistrictFilter, pParentDistrict_Dist
var parentFilter = DistrictUtils.getParentFilter(pParentDistrict_DistrictId);
var appliedFilter = {
entity: "Organisation_entity",
filter: {
type: "group",
operator: "AND",
childs: []
}};
entity: "Organisation_entity",
filter: {
type: "group",
operator: "AND",
childs: []
}
};
if (parentFilter)
{
......@@ -427,8 +433,33 @@ DistrictUtils.assignOrganisationToDistrict = function (pOrganisationId, pUserLog
}
//Variante 2: Aufruf des Server-Prozessen mit allen Gebieten mit Auto-Zuordnung gleich true
//Wirft den gleichen Fehler wie Variante 1
//TODO: Aus dem pUserLogin noch die Employee-ID ermitteln
//DistrictUtils.assignDistrictOnServer(allAutoDistricts, pUserLogin);
}
\ No newline at end of file
//Variante 2: Aufruf des Server-Prozessen mit allen Gebieten mit Auto-Zuordnung gleich true
//Wirft den gleichen Fehler wie Variante 1
//TODO: Aus dem pUserLogin noch die Employee-ID ermitteln
//DistrictUtils.assignDistrictOnServer(allAutoDistricts, pUserLogin);
}
/**
* This function will notificate the district contact that he/she was assigned
*
* @param {String} pDistrictContactId <p>
* DistrictContact-ID of the new Dataset<br>
* @return <none> <p>
*/
DistrictUtils.notificateNewDistrictContact = function(pDistrictContactId){
message = translate.text("Assignment to a new district/company!");
//[0]: DISTRICT_ID, [1]: ADVISER_CONTACT_ID, [2]: CONTACT_ID
var arrayDistrictContact = DistrictUtils.getDataFromDistrictContact(pDistrictContactId);
//get corresponding profile information of the systemalias
var user = tools.getUserByAttribute(tools.CONTACTID, arrayDistrictContact[1], tools.PROFILE_DEFAULT);
var userName = user[tools.NAME];
var districtName = DistrictUtils.getDistrictName(arrayDistrictContact[0]);
var organisationName = ContactUtils.getFullTitleByContactId(arrayDistrictContact[2]);
// Benachrichtigung am Ende der Zuordnungen
description = translate.withArguments("You were assigned as new district contact to district %0 and organisation %1.",
[districtName, organisationName])
notification.addNotification(util.getNewUUID(), text.encodeMS(["Organisation", arrayDistrictContact[2]]), null, null, "DistrictAssigned", notification.PRIO_NORMAL, 2, notification.STATE_UNSEEN, [userName], message, description);
}
......@@ -21,4 +21,8 @@ if (sqlAction != 'X')
//if (sqlAction == 'I' && tableName == 'ORGANISATION')
//{
// DistrictUtils.assignOrganisationToDistrict(id, userLogin);
//}
\ No newline at end of file
//}
if(sqlAction == 'I' && tableName == 'DISTRICTCONTACT'){
DistrictUtils.notificateNewDistrictContact(id);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment