Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
425 B
3
Indexable
/**
 * Updates the flag Policy.PolicyFlagForBulkChangeEU`` 
 * 
 */
public void updatePolicyFlagIfNeeded(PolicyVO  newPolicy) {\
    PolicyHXDEVO policy = (PolicyHXDEVO) newPolicy;

    
    if (policy.isPolicyCreatedUsingConversion()) {
        return;
    }
   
    
// I think we don't need the rest of the conditions, could you please test just this
        policy.setPolicyFlagForBulkChangeEU(Boolean.FALSE);
    
}




Leave a Comment