Skip to content
Snippets Groups Projects
Commit 0d839e3b authored by Alexander Niebisch's avatar Alexander Niebisch :coffee:
Browse files

logging Aufrufe entfernt.

parent cdcb8c9d
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,6 @@ function addAddressIds(pRes, pCurrId)
sql = "select ADDRESS.ADDRESSID from ADDRESS left join CONTACT on CONTACT.CONTACTID = ADDRESS.CONTACT_ID where CONTACT.ORGANISATION_ID = '" + pCurrId + "'";
ids = db.array(db.COLUMN, sql, alias, 0 , 1 * datetime.ONE_MINUTE);
logging.log("Addresses: " + ids);
addIds(pRes, "Addresses", ids);
}
......@@ -54,6 +53,5 @@ function addCommunicationIds(pRes, pCurrId)
sql = "select COMMUNICATION.COMMUNICATIONID from COMMUNICATION left join CONTACT on CONTACT.CONTACTID = COMMUNICATION.CONTACT_ID where CONTACT.ORGANISATION_ID = '" + pCurrId + "'";
ids = db.array(db.COLUMN, sql, alias, 0 , 1 * datetime.ONE_MINUTE);
logging.log("Communications: " + ids);
addIds(pRes, "Communications", ids);
}
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