From 6796520f30e412cf4030ecb5ac3f01296b61eb20 Mon Sep 17 00:00:00 2001
From: Johannes Hoermann <j.hoermann@adito.de>
Date: Wed, 26 Jun 2019 10:48:09 +0200
Subject: [PATCH] ebnable grant update process for offer

---
 entity/Offer_entity/grantUpdateProcess.js | 3 +--
 process/Offer_lib/process.js              | 2 --
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/entity/Offer_entity/grantUpdateProcess.js b/entity/Offer_entity/grantUpdateProcess.js
index 6d30eb0ee0..1a954c9426 100644
--- a/entity/Offer_entity/grantUpdateProcess.js
+++ b/entity/Offer_entity/grantUpdateProcess.js
@@ -1,6 +1,5 @@
-import("system.logging");
 import("system.vars");
 import("system.result");
 import("Offer_lib");
-logging.log(OfferUtils.isEditable(vars.get("$field.STATUS")))
+
 result.string(OfferUtils.isEditable(vars.get("$field.STATUS")));
\ No newline at end of file
diff --git a/process/Offer_lib/process.js b/process/Offer_lib/process.js
index 64bf8bad18..09d10a01eb 100644
--- a/process/Offer_lib/process.js
+++ b/process/Offer_lib/process.js
@@ -61,8 +61,6 @@ OfferUtils.getOfferNumberValidationFailString = function() {
     
 OfferUtils.isEditable = function(status) {
     // TODO: Administrator darf immer ändern, warten auf neue Berechtigungslogik?
-    logging.log(status.toSource())
-    logging.log($KeywordRegistry.offerStatus$sent())
     // Offer should be editable if offer state not equals "Sent", "Won" or "Lost"
     return status != $KeywordRegistry.offerStatus$sent() && status != $KeywordRegistry.offerStatus$won() && status != $KeywordRegistry.offerStatus$lost();
 }
-- 
GitLab