Commit efce8e5a by nilu

S21294007 # Client - Incoming Issues (raised by Client) #Free Trial

Diabling free trial for the release
parent 863ab1f2
...@@ -1058,7 +1058,7 @@ public abstract class BaseHiringTeam extends BaseBusinessClass ...@@ -1058,7 +1058,7 @@ public abstract class BaseHiringTeam extends BaseBusinessClass
Map metaInfo = new HashMap (); Map metaInfo = new HashMap ();
metaInfo.put ("dbcol", "on_trial"); metaInfo.put ("dbcol", "on_trial");
metaInfo.put ("defaultValue", "Boolean.TRUE"); metaInfo.put ("defaultValue", "Boolean.FALSE");
metaInfo.put ("name", "OnTrial"); metaInfo.put ("name", "OnTrial");
metaInfo.put ("type", "Boolean"); metaInfo.put ("type", "Boolean");
...@@ -1164,7 +1164,7 @@ public abstract class BaseHiringTeam extends BaseBusinessClass ...@@ -1164,7 +1164,7 @@ public abstract class BaseHiringTeam extends BaseBusinessClass
_LastPlanAmount = (Double)(HELPER_LastPlanAmount.initialise (_LastPlanAmount)); _LastPlanAmount = (Double)(HELPER_LastPlanAmount.initialise (_LastPlanAmount));
_GoogleAddressText = (String)(HELPER_GoogleAddressText.initialise (_GoogleAddressText)); _GoogleAddressText = (String)(HELPER_GoogleAddressText.initialise (_GoogleAddressText));
_PlanCancelled = (Boolean)(Boolean.FALSE); _PlanCancelled = (Boolean)(Boolean.FALSE);
_OnTrial = (Boolean)(Boolean.TRUE); _OnTrial = (Boolean)(Boolean.FALSE);
_TrialJobCount = (Integer)(0); _TrialJobCount = (Integer)(0);
_MessageID = (Integer)(HELPER_MessageID.initialise (_MessageID)); _MessageID = (Integer)(HELPER_MessageID.initialise (_MessageID));
_IsLogoDeleted = (Boolean)(Boolean.FALSE); _IsLogoDeleted = (Boolean)(Boolean.FALSE);
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
<ATTRIB name="LastPlanAmount" type="Double" dbcol="last_plan_amount" /> <ATTRIB name="LastPlanAmount" type="Double" dbcol="last_plan_amount" />
<ATTRIB name="GoogleAddressText" type="String" dbcol="google_address_text" length="300" /> <ATTRIB name="GoogleAddressText" type="String" dbcol="google_address_text" length="300" />
<ATTRIB name="PlanCancelled" type="Boolean" dbcol="plan_cancelled" defaultValue="Boolean.FALSE"/> <ATTRIB name="PlanCancelled" type="Boolean" dbcol="plan_cancelled" defaultValue="Boolean.FALSE"/>
<ATTRIB name="OnTrial" type="Boolean" dbcol="on_trial" defaultValue="Boolean.TRUE"/> <ATTRIB name="OnTrial" type="Boolean" dbcol="on_trial" defaultValue="Boolean.FALSE"/>
<ATTRIB name="TrialJobCount" type="Integer" dbcol="trial_job_count" defaultValue="0"/> <ATTRIB name="TrialJobCount" type="Integer" dbcol="trial_job_count" defaultValue="0"/>
<ATTRIB name="MessageID" type="Integer" dbcol="message_id" /> <ATTRIB name="MessageID" type="Integer" dbcol="message_id" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment