Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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:

S.No.

API

Action id

Roles

1

/localization/messages/v1/_search

1531

SUPERUSER,EMPLOYEE,CITIZEN,GRO,DGRO,

2

/property-services/property/_search

1897EMPLOYEE

,CITIZENCITIZEN, PT_CEMP,PT_DOC_VERIFIER,PT_FIELD_INSPECTOR,PT_APPROVER

3

/filestore/v1/files/url

1528

SUPERUSER,EMPLOYEE,CITIZEN,GRO,DGRO,

4

/property-services/property/_update

1896EMPLOYEE

,CITIZENCITIZEN, PT_CEMP,PT_DOC_VERIFIER,PT_FIELD_INSPECTOR,PT_APPROVER

5

/egov-hrms/employees/_search

1752

SUPERUSER,EMPLOYEE,CITIZEN,GRO,DGRO,TL_CEMP,TL_APPROVER,TL_FIELD_INSPECTOR,TL_DOC_VERIFIER

...