├── LICENSE.txt ├── README.md ├── index.html └── screenshots ├── .gitignore ├── 100.png └── 200.png /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Semenov Roman 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Приложение bitrix24 для подсчета затрат по времени работ сотрудника 3 | 4 | Автоматически создавайте отчеты по затратам времени (отмеченного в задачах) и проделанной работе сотрудника и расчитывайте стоимость работ. 5 | 6 | ## Установка 7 | 8 | - Запаковать файл index.html в zip 9 | - Загрузить архив на свой портал (Приложения - Добавить приложение...) 10 | - Выставить "Права доступа" 11 | + Задачи (task) 12 | + Задачи (расширенные права) (tasks_extended) 13 | + Рабочие группы (sonet_group) 14 | + Пользователи (user) 15 | 16 | - **Приложение протестировано в последней версии Google Chrome, в других работа не гарантируется** 17 | 18 | ## Скриншоты 19 | 20 | ![100.png](screenshots/100.png?raw=true "Вид с логами") 21 | 22 | ![200.png](screenshots/200.png?raw=true "Вид без логов") 23 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 |
18 | 19 |
20 | 25 |
26 | 27 |
28 | 33 |
34 | 35 |
36 | 40 |
41 | 42 |
43 | 53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | 61 |
62 | 63 |
64 | 65 | 66 | 67 | 70 | 73 | 76 | 79 | 82 | 83 | 84 | 85 |
68 | Дата создания 69 | 71 | Название / Комментарий 72 | 74 | Время, мин. 75 | 77 | Время, ч. 78 | 80 | Цена, руб. 81 |
86 | 87 |
88 | 89 | 135 | 136 | 431 | 432 | 433 | -------------------------------------------------------------------------------- /screenshots/.gitignore: -------------------------------------------------------------------------------- 1 | !*.png -------------------------------------------------------------------------------- /screenshots/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xukku/bitrix24-timesheet/a14bfd428834a0fcbf2ee6c40b9edaf4524d4ec3/screenshots/100.png -------------------------------------------------------------------------------- /screenshots/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xukku/bitrix24-timesheet/a14bfd428834a0fcbf2ee6c40b9edaf4524d4ec3/screenshots/200.png --------------------------------------------------------------------------------