draftNewPolicyId: function(oldPolicy) {
     if (!this.restAndHeal(oldPolicy)) {
         if (policyKeeperSectorMarshal.readyAttackKeeper(oldPolicy)) {
             return policyFrameworks.policyKeeperSectorAttack(oldPolicy, true);
         } else {
             oldPolicy.cleared = false;
             return policyFrameworks.policyKeeperSectorMarshal(undefined, undefined, true, oldPolicy);
         }
     }
     if (this.hurryItUp(oldPolicy) && policyKeeperSectorMarshal.readyAttackKeeper(oldPolicy)) {
         return policyFrameworks.policyKeeperSectorAttack(oldPolicy, true);
     }
     return oldPolicy;
 },