diff --git a/entity/Offer_entity/Offer_entity.aod b/entity/Offer_entity/Offer_entity.aod
index 339c61499b8787d822be7bac1b6c15013eb493a0..374dc68a17629f4656bebca3296225f497d08543 100644
--- a/entity/Offer_entity/Offer_entity.aod
+++ b/entity/Offer_entity/Offer_entity.aod
@@ -67,6 +67,7 @@
       <minValue v="0" />
       <outputFormat>0'%'</outputFormat>
       <groupable v="true" />
+      <textInputAllowed v="true" />
       <stateProcess>%aditoprj%/entity/Offer_entity/entityfields/probability/stateProcess.js</stateProcess>
       <valueProcess>%aditoprj%/entity/Offer_entity/entityfields/probability/valueProcess.js</valueProcess>
     </entityField>
diff --git a/entity/Offer_entity/entityfields/probability/valueProcess.js b/entity/Offer_entity/entityfields/probability/valueProcess.js
index 72e0517304f96f7d2aa94f10a9e938d71b4fef50..9ae444393cd06e0831d37db9c44162cbfff4b19e 100644
--- a/entity/Offer_entity/entityfields/probability/valueProcess.js
+++ b/entity/Offer_entity/entityfields/probability/valueProcess.js
@@ -4,5 +4,5 @@ import("system.vars");
 
 if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && vars.get("$this.value") == null)
 {
-    result.string("0.00");
+    result.string("0");
 }
\ No newline at end of file