ЕСОЗ - публічна документація

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Purpose

This service is made to count an amount of declaration doctor has already made. The amount will increase (decrease) with each declaration signed (terminated) on prm and recalculated and updated every night with real amount of doctor's declarations on ops.

Overview

  1. Limit is set with employee_request create/update
  2. add validation on declaration approve. Return error if doctor's counter >= limit
  3. Doctor should change declaration_limit via personal cabinet (TBD)

Specification

Data structure 

Employee request

Limit of declarations that could be signed by doctor is added to create employee request

Save declaration_limit to parties

ParameterSource
declaration_limitprm.parties.declaration_limit

Employees

Declaration limit and declaration count are added to get employees list and get employee details

Declaration request

Add overlimit to declaration request. Set overlimit on create declaration request

Report DB

Add declaration_count and declaration_limit to reports.parties

ParameterSource
declaration_countreports.parties.declaration_count
declaration_limitreports.parties.declaration_limit

Sign declaration request

  1. get employee_id from request
  2. get party for employee
  3. add +1 to declaration_count for party

Terminate declaration

  1. get employee_id from request
  2. get party for employee
  3. add -1 to declaration_count for party

Approve declaration request

Check doctor's limit

Count declarations for employees

Ones a day start the process.

Calculate amount of declarations and update prm.parties.declaration_count for each employee

  • No labels