This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/report.txt

22 lines
1.5 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.
├── Database
│   ├── DBconnect.py - коннектор к СУБД
│   ├── __init__.py
│   ├── sql_provider.py - SQL-провайдер для формирования запроса к СУБД
│   └── work.py - файл для выполнения запросов к СУБД
└── Report
   ├── __init__.py
   ├── report_model.py - реализация модели работы с отчётами
   ├── reports.json - файл с информацией о вариантах отчётов
   ├── sql
   │   ├── sellers_report.sql - sql-запрос для просмотра отчёта о поставках поставщиков
   │ └── workpiece_report.sql - sql-запрос для просмотра отчёта о поставках заготовок
   ├── static
   │   ├── css - стили страниц
   │   │   └── report.css
   │   └── js
   │   └── check.js - проверка периода формирования отчёта
   └── templates
   ├── OK.html - шаблон для вывода информации об успешном добавлении отчета в БД
├── report_basic.html - шаблон для ввода параметров просмотра/создания отчёта
└── report_menu.html - шаблон для выбора просмотра/создания отчёта