Versions Compared

Key

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

...

Apply for New Water & Sewerage Application divided into four forms. The configuration related to all these forms are written in apply.js file.
https://github.com/egovernments/frontend/blob/master/web/rainmaker/dev-packages/egov-wns-dev/src/ui-config/screens/specs/wns/apply.js

MDMS Configs and other actions are Explained in W&S - UI Technical Configuration

...

For below screen shots relevant code is present in https://github.com/egovernments/frontend/blob/master/web/rainmaker/dev-packages/egov-wns-dev/src/ui-config/screens/specs/wns/applyResource/connectionDetails.js .

...

Only for sewerage:

...

For below screen shot relevant code is present in apply.js file in that formwizardFirstStep.

...

For below screen shot relevant code is present in apply.js file in that formwizardThirdStep.

...

Multi Road Type Feature:

Earlier, it supports single type and storing the values in the string format like roadType: "BMPREMIXROAD" and roadCuttingArea: 123

Now, it supports multi type, user can add multiple road types by clicking on the add road type button and sending the values in the format of array of objects like

"roadCuttingInfo": [{ "roadType": "BMPREMIXROAD","roadCuttingArea": 123},{"roadType": "BRICKPAVING","roadCuttingArea": 123}].

Summary Screen

After successfully updating Additional details, 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.

...

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

https://github.com/egovernments/frontend/blob/master/web/rainmaker/dev-packages/egov-wns-dev/src/ui-config/screens/specs/wns/acknowledgement.js

Acknowledgement screen and acknowledgement is Explained in W&S-Application,Estimation Notice,Sanction Letter

...

W&S application is created using /ws-services/wc/_create API, the returned data is formatted and dispatched to redux

https://github.com/egovernments/frontend/blob/master/web/rainmaker/dev-packages/egov-wns-dev/src/ui-utils/commons.js

While Creating Property

creationReason: "CREATE"

...