...
After successfully paying the fee, Mutation application is accepted and file status changes to ACTIVE state.
New Property Application / Update Property Application(Sep 30 Release Feature):
Here Property Application can be send back to citizen if any wrong information or details needs to edited .
...
Once the Application moves to the pending for citizen Action , Citizen/Counter Employee can edit and resubmit the application.
...
Configuration required for Correction Pending status :
Business Service Configuration :
here isStateUpdatable
should be true so that edit option will be shown .
Code Block |
---|
docUploadRequired: false
isStartState: false
isStateUpdatable: true
isTerminateState: false
sla: null
state: "CORRECTIONPENDING"
tenantId: "pg.citya" |
UI Configuration for edit application :
Once the edit option is enabled from the Workflow , then it should be configured with redirect URL , so that
the application can be edited ,
getRedirectUrl
method should be updated with the redirect URL for specific business service .
Code Block |
---|
getRedirectUrl()
if (moduleName === "PT.CREATE") {
return `/property-tax/assessment-form?assessmentId=0&purpose=update&propertyId=${propertyId}&tenantId=${tenant}&mode=WORKFLOWEDIT` |
API Call Role Action mapping:
...