Property - Update Existing Property

Objective

Provide Citizen/Employee to Update an Existing Property. User can update various information regarding Property Location , Property Built up Information and Property Documents. User has to upload supportive documents. Once the application registered successfully it goes through various phases such as Verification, Field Inspection, Approval .

Route - https://egov-micro-qa.egovernments.org/employee/property-tax/property/PROPERTY_ID/TENANT_ID

Technical Implementation Details

Search For the Existing Property , Click on View Property and then Click on EDIT PROPERTY to Update Property Information

Update New Property

Update New Property application divided into five forms. Parent Component of all these forms are Formwizard.

Employee FormWizard https://github.com/egovernments/frontend/blob/5360ed2606d0ea597022eda3050a583f0fb8a4aa/web/rainmaker/dev-packages/pt-employee-dev/src/Screens/FormWizard/index.js

Citizen FormWizard https://github.com/egovernments/frontend/blob/5360ed2606d0ea597022eda3050a583f0fb8a4aa/web/rainmaker/dev-packages/pt-citizen-dev/src/Screens/FormWizard/index.js

All the config for the Forms are present in https://github.com/egovernments/frontend/blob/1c4086b504b1fffc7388952c100e72b5a98fae75/web/rainmaker/dev-packages/egov-ui-kit-dev/src/config/forms/specs/PropertyTaxPay path.

 MDMS Configs and other actions are Explained in

Summary Screen

After successfully uploading the documents, the next step is summary page. User can see all the information entered . User has options to edit the information of each section. Upon clicking of edit icon user will navigate to respective section with all the data pre-filled. Below is the file contains all the required configuration of this screen.

Summary Screen Edit information is configured and explained in

Update Property

Once user clicks on Update Property button, user navigates to acknowledgement screen stating that the application submitted successfully. Below is the acknowledgement configuration file.

Acknowledgement screen and acknowledgement is Explained in

  

Property Update Api

Property is Updated using /property-services/property/_update API, the returned data is formatted and dispatched to redux

While Updating Property

creationReason: "UPDATE"

and workflow information as follow

workflow = {             "businessService": "PT.CREATE",             "action":  "OPEN",             "moduleName": "PT"         }

Api call is made in

 

For More Information About Property ,

Once The Application is Successfully created for further actions are explained as below,

Search Property is explained in

About Property Information is explained in

About Property Application approval is explained in

About Property Re-Assessment after approval is explained in

API Call Role Action mapping:

API

Action id

Roles

API

Action id

Roles

1

/localization/messages/v1/_search

1531

SUPERUSER,EMPLOYEE,CITIZEN,GRO,DGRO,

2

/property-services/property/_search

1897

CITIZEN, 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

1896

CITIZEN, PT_CEMP,PT_DOC_VERIFIER,PT_FIELD_INSPECTOR,PT_APPROVER

Â