Skip to content

Commit

Permalink
Changes to send reminder notifications; only when outcome is not taken.
Browse files Browse the repository at this point in the history
  • Loading branch information
sumathi.thirumani committed Dec 21, 2023
1 parent 30e6474 commit 4e10941
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,8 @@ def prepareoipc(self, requestschema, ministryrequestid, version, userid):
return oipcarr

def __formatoipcattributes(self, inquiryattributes):
if inquiryattributes not in (None, ""):
if (inquiryattributes["inquirydate"]) in ("","null"):
inquiryattributes["inquirydate"] = None
print(inquiryattributes)
if inquiryattributes not in (None, "") and inquiryattributes["inquirydate"] in ("","null"):
inquiryattributes["inquirydate"] = None
return inquiryattributes


Expand Down

0 comments on commit 4e10941

Please sign in to comment.