Sanitation
PlatformDomainsAcademyDesign SystemFeedback
v1.2.1
v1.2.1
  • Introduction to DIGIT Sanitation
    • Who can use DIGIT Sanitation?
      • Field Research
  • Platform
    • Release Notes
      • MDMS Configuration & Service Build Updates
      • Test cases
      • FSM Release Notes v1.2.1
    • Specification
    • Architecture
    • Services
    • Setup
      • On AWS
  • Products
    • Faecal Sludge Management (FSM)
      • FSM Core Service Configuration
        • FSM Service Configuration
        • FSM Implementation Configuration
        • FSM Calculator
        • FSM Vendor Registry
        • FSM Vehicle Registry
        • FSM Workflow Configuration Changes
        • FSM Localisation Changes
        • Legacy/Re-Indexing the FSM Data
        • FSM UI Docs
          • FSM Citizen UI
          • FSM Employee UI
          • FSM DSO UI
          • FSM FSTPO UI
        • FSM-DSS Technical Documentation
      • FSM User Manual
        • FSM Citizen User Manual
        • FSM Employee User Manual
        • DSO User Manual
        • Septage Treatment Plant Operator User Manual
    • Training
  • COMMUNITY
    • Roadmap
    • Source code
    • Issues
Powered by GitBook

All content on this page by eGov Foundation is licensed under a Creative Commons Attribution 4.0 International License.

On this page
  • 1. Application Timeline:
  • 2. Photo viewed by employee/DSO
  • 3. Payment mode while completing request

Was this helpful?

Export as PDF
  1. Products
  2. Faecal Sludge Management (FSM)
  3. FSM Core Service Configuration
  4. FSM UI Docs

FSM Employee UI

Last updated 2 years ago

Was this helpful?

There are three main updates in FSM v1.2.1 for employee UI:

  1. Application timeline

  2. Photo viewed by employee/DSO

  3. Payment mode while completing request

1. Application Timeline:

An employee can see the application status in application timeline with provider details.

Technical Implementation Details:

The path for the code:

frontend/micro-ui/web/micro-ui-internals/packages/modules/fsm/src/pages/employee/ApplicationDetails/index.js

The code snippet to render application timeline:

The code snippet for extracting the provider info for each status:

2. Photo viewed by employee/DSO

An employee/DSO can view the photo uploaded by the employee/DSO in complete request action.

Technical Implementation Details:

The path for the code:

frontend/micro-ui/web/micro-ui-internals/packages/modules/fsm/src/pages/employee/ApplicationDetails/index.js

The code snippets to render the field:

ViewImages.js are the common component used to fetch and render the Image file id. The path is shown below:

frontend/micro-ui/web/micro-ui-internals/packages/modules/fsm/src/components/ViewImages.js

3. Payment mode while completing request

An employee has to select the payment mode while completing the request.

Technical Implementation Details:

File path:

frontend/micro-ui/web/micro-ui-internals/packages/modules/fsm/src/pages/employee/ApplicationDetails/config/CompleteApplication.js

The code snippet to render the field.

MDMS file fetch for payment mode:

{
    "tenantId": "pg",
    "moduleName": "FSM",
    "ReceivedPaymentType": [
        {
            "name": "Payed in Cash",
            "code": "PAYED_IN_CASH",
            "active": true
        },
        {
            "name": "Payed in Counter",
            "code": "PAYED_IN_COUNTER",
            "active": true
        },
        {
            "name": "Netbanking",
            "code": "NETBANKING",
            "active": true
        }
    ]
}

egov-mdms-data/ReceivedPaymentType.json at UAT · egovernments/egov-mdms-data