Compare commits
59 Commits
landingPag
...
editingWor
| Author | SHA1 | Date | |
|---|---|---|---|
| ee168bd637 | |||
| b233346795 | |||
| ca80abc389 | |||
| e3dfaf9f26 | |||
| 477ac28212 | |||
| 3ad687f797 | |||
| b84b9fa2fb | |||
| f2851ec56a | |||
| 03cbcce59f | |||
| f864e74247 | |||
| 6b22fc4694 | |||
| caa31136f1 | |||
| c97421df32 | |||
| 568c6d23a9 | |||
| 15a7ea5ef5 | |||
| 93099d316f | |||
| e9f80a9989 | |||
| 6ce90bd318 | |||
| 69e3a31d52 | |||
| 1ee650e020 | |||
| 61eb809204 | |||
| b98b4077b4 | |||
| a8148bbb93 | |||
| b0a19c6daa | |||
| 38d3466f16 | |||
| 68723e82fe | |||
| 6615e5471a | |||
| 49e114c18a | |||
| e9effb7fcc | |||
| a5a1656518 | |||
| 19d1f57240 | |||
| 99a020024e | |||
| abd8168dbf | |||
| 79059fb91b | |||
| 1b2484fbf2 | |||
| 168a6a352e | |||
| 8185a42331 | |||
| 64a6ddafb5 | |||
| 54ef088fe0 | |||
| dc45f02ad2 | |||
| b829f09330 | |||
| b03d152f11 | |||
| 0ec20a4c67 | |||
| 1605b1cea3 | |||
| d4fadf08bc | |||
| de84da4482 | |||
| 697d0fe769 | |||
| cb5d30b4e0 | |||
| 6c91cad46c | |||
| ccd9e10351 | |||
| 231e7fe2e6 | |||
| f820a22a4f | |||
| 0cdfd21fa2 | |||
| fee3db486f | |||
| 87181696e1 | |||
| 8b22c0db9c | |||
| 18ee0ad333 | |||
| 4928481f72 | |||
|
|
2d11218076 |
@@ -1 +1,2 @@
|
|||||||
Options -Indexes
|
Options -Indexes
|
||||||
|
Deny from all
|
||||||
|
|||||||
@@ -1,10 +1,29 @@
|
|||||||
|
# Stage 1 - the build process
|
||||||
|
FROM composer:1.7.1 as build-deps
|
||||||
|
ENV COMPOSER_ALLOW_SUPERUSER 1
|
||||||
|
|
||||||
|
WORKDIR /root
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
RUN composer install
|
||||||
|
RUN composer test
|
||||||
|
|
||||||
|
# Stage 2 - the production environment
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
# Updating
|
|
||||||
RUN apt-get -y update && apt-get -y upgrade
|
RUN apt-get -y update && apt-get -y upgrade
|
||||||
|
|
||||||
# Installing php, apache and supplementary software
|
RUN apt-get -y install apache2 \
|
||||||
RUN apt-get -y install apache2 php7.0 libapache2-mod-php7.0 php7.0-cli php7.0-common php7.0-mbstring php7.0-gd php7.0-intl php7.0-xml php7.0-mysql php7.0-mcrypt php7.0-zip curl git unzip composer
|
php7.0 \
|
||||||
|
libapache2-mod-php7.0 \
|
||||||
|
php7.0-cli \
|
||||||
|
php7.0-common \
|
||||||
|
php7.0-mbstring \
|
||||||
|
php7.0-gd \
|
||||||
|
php7.0-intl \
|
||||||
|
php7.0-xml \
|
||||||
|
php7.0-mysql \
|
||||||
|
php7.0-mcrypt
|
||||||
|
|
||||||
# Enable apache mods
|
# Enable apache mods
|
||||||
RUN a2enmod php7.0
|
RUN a2enmod php7.0
|
||||||
@@ -20,24 +39,14 @@ ENV APACHE_RUN_GROUP www-data
|
|||||||
ENV APACHE_LOG_DIR /var/log/apache2
|
ENV APACHE_LOG_DIR /var/log/apache2
|
||||||
ENV APACHE_LOCK_DIR /var/lock/apache2
|
ENV APACHE_LOCK_DIR /var/lock/apache2
|
||||||
|
|
||||||
# Expose apache
|
|
||||||
EXPOSE 80
|
|
||||||
|
|
||||||
# Copy this repo into place.
|
|
||||||
ADD . /var/www/site
|
|
||||||
WORKDIR /var/www/site
|
WORKDIR /var/www/site
|
||||||
|
COPY --from=build-deps /root .
|
||||||
|
|
||||||
# Testing permisions
|
RUN touch logs/app.log
|
||||||
RUN chmod 777 -R .
|
RUN chmod 777 logs/app.log
|
||||||
|
|
||||||
# Installing dependencies
|
# Update the default apache site
|
||||||
RUN composer install
|
ADD docker/apache-config.conf /etc/apache2/sites-enabled/000-default.conf
|
||||||
|
|
||||||
# Unit tests
|
# By default start up apache in the foreground
|
||||||
RUN composer test
|
|
||||||
|
|
||||||
# Update the default apache site with the config we created.
|
|
||||||
ADD apache-config.conf /etc/apache2/sites-enabled/000-default.conf
|
|
||||||
|
|
||||||
# By default start up apache in the foreground, override with /bin/bash for interative
|
|
||||||
CMD /usr/sbin/apache2ctl -D FOREGROUND
|
CMD /usr/sbin/apache2ctl -D FOREGROUND
|
||||||
|
|||||||
0
api-payroll/logs/app.log
Executable file
0
api-payroll/logs/app.log
Executable file
@@ -1,3 +1,5 @@
|
|||||||
|
allow from all
|
||||||
|
|
||||||
<IfModule mod_rewrite.c>
|
<IfModule mod_rewrite.c>
|
||||||
RewriteEngine On
|
RewriteEngine On
|
||||||
|
|
||||||
|
|||||||
7
api-payroll/public/css/bootstrap-datepicker.min.css
vendored
Normal file
7
api-payroll/public/css/bootstrap-datepicker.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -1,24 +1,13 @@
|
|||||||
body {
|
body {
|
||||||
background-color: #e3e3e3;
|
background-color: #e3e3e3;
|
||||||
/* Se agrego color blanco a letra en panel en general*/
|
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*Cambia el color del date picker a negro para permitir su visibilidad*/
|
|
||||||
.datepicker{
|
.datepicker{
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*El color con el que se muestra el peso del archivo en la carga masiva se imagenes*/
|
#newViewBody{
|
||||||
.size{
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar{
|
|
||||||
background: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cuerpo{
|
|
||||||
top:17%;
|
top:17%;
|
||||||
left:1%;
|
left:1%;
|
||||||
width:98%;
|
width:98%;
|
||||||
@@ -34,51 +23,47 @@ body {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#cuerpo .modal-body{
|
#newViewBody .modal-body{
|
||||||
color: #000;
|
color: #000;
|
||||||
border:none;
|
border:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cuerpo .panel-default{
|
#newViewBody .panel-default{
|
||||||
border: 3px solid #4A89A5;
|
border: 3px solid #4A89A5;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cuerpo .panel > .panel-heading {
|
#newViewBody .panel > .panel-heading {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: #4A89A5;
|
background-color: #4A89A5;
|
||||||
color: white;
|
color: white;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cuerpo .btn-default{
|
#newViewBody .btn-default{
|
||||||
border: 2px solid #62655F;
|
border: 2px solid #62655F;
|
||||||
background: #F9DFAF;
|
background: #F9DFAF;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cuerpo .btn-default:hover{
|
#newViewBody .btn-default:hover{
|
||||||
border: 2px solid #62655F;
|
border: 2px solid #62655F;
|
||||||
background: #F9DFAF;
|
background: #F9DFAF;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cuerpo .alert-success{
|
#newViewBody .alert-success{
|
||||||
background: #C6E97C;
|
background: #C6E97C;
|
||||||
}
|
}
|
||||||
|
|
||||||
#modal_header_error{
|
.modalHeaderError{
|
||||||
background-color: #d9534f;
|
background-color: #d9534f;
|
||||||
}
|
}
|
||||||
|
|
||||||
#modal_header_respuesa_servidor_error{
|
|
||||||
background-color: #d9534f;
|
|
||||||
}
|
|
||||||
|
|
||||||
#modal_header_respuesa_servidor_success{
|
.modalHeaderSuccess{
|
||||||
background-color: #5bc0de;
|
background-color: #5bc0de;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* botoner<65>a panel principal */
|
|
||||||
.metro{
|
.metro{
|
||||||
width:auto;
|
width:auto;
|
||||||
height:auto;
|
height:auto;
|
||||||
@@ -199,7 +184,7 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FORMATO PARA TEXTO CUSTOM */
|
|
||||||
.formato_texto_custom{
|
.formato_texto_custom{
|
||||||
width: 97%;
|
width: 97%;
|
||||||
float: left;
|
float: left;
|
||||||
@@ -18,7 +18,7 @@ body {
|
|||||||
padding: 20px;
|
padding: 20px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
border-top: 5px solid #bdb035;
|
border-top: 5px solid #5bc0de;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
.login-block h1 {
|
.login-block h1 {
|
||||||
@@ -58,15 +58,15 @@ body {
|
|||||||
background-size: 16px 80px;
|
background-size: 16px 80px;
|
||||||
}
|
}
|
||||||
.login-block input:active, .login-block input:focus {
|
.login-block input:active, .login-block input:focus {
|
||||||
border: 1px solid #bdb035;
|
border: 1px solid #5bc0de;
|
||||||
}
|
}
|
||||||
.login-block #loginButon {
|
.login-block #loginButon {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
background: #bdb035;
|
background: #009bad;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
border: 1px solid #6d661c;
|
border: 1px solid #000;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@@ -75,7 +75,7 @@ body {
|
|||||||
outline: none;
|
outline: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.login-block button:hover {
|
|
||||||
background: #c7b935;
|
#modalLoginErrorHeader{
|
||||||
border: 1px solid #6d661c;
|
background-color: #d9534f;
|
||||||
}
|
}
|
||||||
|
|||||||
111
api-payroll/public/html/editEmployee.php
Normal file
111
api-payroll/public/html/editEmployee.php
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
<script src="../js/getBaseUrl.js"></script>
|
||||||
|
<script src="../js/editEmployee.js"></script>
|
||||||
|
|
||||||
|
<form class="form-horizontal" id="editEmployee">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<h3 class="panel-title">Edit employee</h3>
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmploySearch">Employee</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="editEmploySearch" name="editEmploySearch" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeeFirstName">First name</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="editEmployeeFirstName" name="editEmployeeFirstName" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeeMiddleName">Middle name</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="editEmployeeMiddleName" name="editEmployeeMiddleName" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeeLastName">Last name</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="editEmployeeLastName" name="editEmployeeLastName" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeeBirthDate">Birth date</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="editEmployeeBirthDate" name="editEmployeeBirthDate" type="text" class="form-control input-md datepicker">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row" id="hidenEmployeeCode">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeeCode">Code</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="editEmployeeCode" name="editEmployeeCode" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeeEmail">Email</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="editEmployeeEmail" name="editEmployeeEmail" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeePhone">Phone</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="editEmployeePhone" name="editEmployeePhone" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeeType">Rol</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<select class="form-control input-md" name="editEmployeeType" id="editEmployeeType">
|
||||||
|
<option>Employee type</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="editEmployeeContractType">Contract type</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<select class="form-control input-md" name="editEmployeeContractType" id="editEmployeeContractType">
|
||||||
|
<option>Contract type</option>
|
||||||
|
<option value="INTERNO">interno</option>
|
||||||
|
<option value="EXTERNO">Externo</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row col-md-offset-6">
|
||||||
|
<div class="form-group">
|
||||||
|
<a href="#" class="btn btn-lg btn-success " onclick="updateEmployee();">Update</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
@@ -1,3 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
if(!isset($_SESSION['userName'])){
|
||||||
|
header("Location: ./login.php");
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
<!-- Latest compiled and minified CSS -->
|
<!-- Latest compiled and minified CSS -->
|
||||||
<link rel="stylesheet" href="../css/bootstrap.min.css">
|
<link rel="stylesheet" href="../css/bootstrap.min.css">
|
||||||
|
|
||||||
@@ -17,28 +26,28 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="collapse navbar-collapse navbar-menubuilder">
|
<div class="collapse navbar-collapse navbar-menubuilder">
|
||||||
<ul class="nav navbar-nav navbar-left">
|
<ul class="nav navbar-nav navbar-left" id="nevatation-options">
|
||||||
|
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><span class="glyphicon glyphicon-user"></span> Employees<span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><span class="glyphicon glyphicon-user"></span> Employees<span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="#" data-nav_accion="views/cliente.php" onclick="vista_crear_nuevo_salon_evento();"> New employee</a></li>
|
<li><a href="#" data-nav_accion="newEmployee.php"> New employee</a></li>
|
||||||
<li><a href="#" data-nav_accion="views/clientess.php" onclick="vista_crear_nuevo_coach();"> Modify employee</a></li>
|
<li><a href="#" data-nav_accion="editEmployee.php"> Modify employee</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="#" onclick="vista_calendario();"><span class="glyphicon glyphicon-tasks"></span> Management</a>
|
<a href="#" data-nav_accion="registerWorkDays.php" ><span class="glyphicon glyphicon-tasks"></span> Management</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="#" onclick="vista_calendario();"><span class="glyphicon glyphicon-wrench"></span> Change password</a>
|
<a href="#" onclick="loadView();"><span class="glyphicon glyphicon-wrench"></span> Change password</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="nav navbar-nav navbar-right">
|
<ul class="nav navbar-nav navbar-right">
|
||||||
<li>
|
<li>
|
||||||
<a href="../logout.php"><span class="fa fa-fw fa-power-off"></span> Cerrar Sesión</a>
|
<a href="#" onclick="logout();"><span class="fa fa-fw fa-power-off"></span> logout</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
@@ -46,26 +55,25 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-12" id="cuerpo"></div>
|
|
||||||
|
<div class="col-md-12" id="newViewBody"></div>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
=================================================================================
|
=================================================================================
|
||||||
Errores en query de AJAX
|
Modals for errors encountered by ajax
|
||||||
=================================================================================
|
=================================================================================
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Fallo en la conexion de internet -->
|
<div id="modalErrorInternetConnection" class="modal fade" role="dialog">
|
||||||
<div id="modal_error_internet" class="modal fade" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header" id="modal_header_error">
|
<div class="modal-header modalHeaderError">
|
||||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
<h4 class="modal-title"><center>Ha ocurrido un error</center></h4>
|
<h4 class="modal-title">An error has occurred</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p>Por favor revise su conexión a internet.</p>
|
<p>Please verify your internet connection and try again.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
||||||
@@ -75,18 +83,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- El recurso solicitado no existe -->
|
<div id="modalError404" class="modal fade" role="dialog">
|
||||||
<div id="modal_error_404" class="modal fade" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header" id="modal_header_error">
|
<div class="modal-header modalHeaderError">
|
||||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
<h4 class="modal-title"><center>Ha ocurrido un error</center></h4>
|
<h4 class="modal-title">An error has occurred</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p>El URL del formulario no pudo ser encontrado en el servidor.</p>
|
<p>Unable to find the requested url in the sever.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
||||||
@@ -96,18 +102,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Error interno del servidor donde no es posible detectar la causa especifica -->
|
<div id="modalError500" class="modal fade" role="dialog">
|
||||||
<div id="modal_error_500" class="modal fade" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header" id="modal_header_error">
|
<div class="modal-header modalHeaderError">
|
||||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
<h4 class="modal-title"><center>Ha ocurrido un error</center></h4>
|
<h4 class="modal-title">An error has occurred</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p>Error interno del servidor.</p>
|
<p>The server has encountered an internal error, please try again later.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
||||||
@@ -117,18 +121,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- El servidor respone con un string que no esta en formato JSON o contiene caracteres adicionales al JSON -->
|
<div id="modalErrorParsererror" class="modal fade" role="dialog">
|
||||||
<div id="modal_error_parsererror" class="modal fade" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header" id="modal_header_error">
|
<div class="modal-header modalHeaderError">
|
||||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
<h4 class="modal-title"><center>Ha ocurrido un error</center></h4>
|
<h4 class="modal-title">An error has occurred</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p>Fallo al procesar el JSON enviado por el servidor.</p>
|
<p>The response from the sever wasn't a proper JSON format</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
||||||
@@ -138,18 +140,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- El servidortardo demasiado en responder -->
|
<div id="modalErrorTimeout" class="modal fade" role="dialog">
|
||||||
<div id="modal_error_timeout" class="modal fade" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header" id="modal_header_error">
|
<div class="modal-header modalHeaderError">
|
||||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
<h4 class="modal-title"><center>Ha ocurrido un error</center></h4>
|
<h4 class="modal-title">An error has occurred</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p>La petición excedió el limite de tiempo.</p>
|
<p>The request timeout, please try again or verify your connection.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
||||||
@@ -159,18 +159,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Si el request AJAX falla por alguna razon no listada -->
|
<div id="modalErrorOther" class="modal fade" role="dialog">
|
||||||
<div id="modal_error_otro" class="modal fade" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header" id="modal_header_error">
|
<div class="modal-header modalHeaderError">
|
||||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
<h4 class="modal-title"><center>Ha ocurrido un error</center></h4>
|
<h4 class="modal-title">An error has occurred</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p>Ha ocurrido un error desconocido.</p>
|
<p>An unknown error occurred.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
||||||
@@ -182,22 +180,20 @@
|
|||||||
|
|
||||||
<!--
|
<!--
|
||||||
=================================================================================
|
=================================================================================
|
||||||
Respuesta del servidor
|
Generic response modals
|
||||||
=================================================================================
|
=================================================================================
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Si el request AJAX falla por alguna razon no listada -->
|
<div id="modalServerResponseError" class="modal fade" role="dialog">
|
||||||
<div id="modal_respuesa_servidor_error" class="modal fade" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header" id="modal_header_respuesa_servidor_error">
|
<div class="modal-header modalHeaderError">
|
||||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
<h4 class="modal-title"><center>Ha ocurrido un error</center></h4>
|
<h4 class="modal-title">An error has occurred</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p id="respuesa_servidor_error"></p>
|
<p id="modalResponseError"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
||||||
@@ -207,18 +203,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Si el request AJAX recibe un success en la variable pasasa por el servidor -->
|
<div id="modalServerResponseSuccess" class="modal fade" role="dialog">
|
||||||
<div id="modal_respuesa_servidor_success" class="modal fade" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
|
|
||||||
<!-- Modal content-->
|
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header" id="modal_header_respuesa_servidor_success">
|
<div class="modal-header modalHeaderSuccess" id="modalHeaderServerResponseSuccess">
|
||||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||||
<h4 class="modal-title"><center>El almacenado ha sido exitoso</center></h4>
|
<h4 class="modal-title">Success</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p id="respuesa_servidor_success"></p>
|
<p id="serverResponseSuccess"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
|
||||||
@@ -229,4 +223,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
<link href="../css/panel.css" rel="stylesheet">
|
<script src="../js/getBaseUrl.js"></script>
|
||||||
|
<script src="../js/landing.js"></script>
|
||||||
|
<script src="../js/bootstrap-datepicker.min.js"></script>
|
||||||
|
<script src="../js/typeahead.bundle.js"></script>
|
||||||
|
|
||||||
|
<link href="../css/bootstrap-datepicker.min.css" rel="stylesheet">
|
||||||
|
<link href="../css/landing.css" rel="stylesheet">
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
if(isset($_SESSION['userName'])){
|
||||||
|
header("Location: ./landing.php");
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
<!-- Latest compiled and minified CSS -->
|
<!-- Latest compiled and minified CSS -->
|
||||||
<link rel="stylesheet" href="../css/bootstrap.min.css">
|
<link rel="stylesheet" href="../css/bootstrap.min.css">
|
||||||
|
|
||||||
@@ -41,4 +50,5 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="../js/login.js"></script>
|
<script src="../js/login.js"></script>
|
||||||
|
<script src="../js/getBaseUrl.js"></script>
|
||||||
<link href="../css/login.css" rel="stylesheet">
|
<link href="../css/login.css" rel="stylesheet">
|
||||||
93
api-payroll/public/html/newEmployee.php
Normal file
93
api-payroll/public/html/newEmployee.php
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
<script src="../js/newEmployee.js"></script>
|
||||||
|
<script src="../js/getBaseUrl.js"></script>
|
||||||
|
|
||||||
|
<form class="form-horizontal" id="newEmployeeForm">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<h3 class="panel-title">New employee</h3>
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="newEmployeeFirstName">First name</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="newEmployeeFirstName" name="newEmployeeFirstName" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="newEmployeeMiddleName">Middle name</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="newEmployeeMiddleName" name="newEmployeeMiddleName" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="newEmployeeLastName">Last name</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="newEmployeeLastName" name="newEmployeeLastName" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="newEmployeeBirthDate">Birth date</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="newEmployeeBirthDate" name="newEmployeeBirthDate" type="text" class="form-control input-md datepicker">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="newEmployeeEmail">Email</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="newEmployeeEmail" name="newEmployeeEmail" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="newEmployeePhone">Phone</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="newEmployeePhone" name="newEmployeePhone" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="newEmployeeType">Rol</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<select class="form-control input-md" name="newEmployeeType" id="newEmployeeType">
|
||||||
|
<option>Employee type</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="NewEmpployyContractType">Contract type</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<select class="form-control input-md" name="NewEmpployyContractType" id="NewEmpployyContractType">
|
||||||
|
<option>Contract type</option>
|
||||||
|
<option value="INTERNO">interno</option>
|
||||||
|
<option value="EXTERNO">Externo</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row col-md-offset-6">
|
||||||
|
<div class="form-group">
|
||||||
|
<a href="#" class="btn btn-lg btn-success " onclick="saveNewEmployee();">Create</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
142
api-payroll/public/html/registerWorkDays.php
Normal file
142
api-payroll/public/html/registerWorkDays.php
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
<script src="../js/getBaseUrl.js"></script>
|
||||||
|
<script src="../js/registerWorkDays.js"></script>
|
||||||
|
|
||||||
|
<form class="form-horizontal" id="workDaysForm">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<h3 class="panel-title">Managing work days</h3>
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysSearchEmployee">Search employee</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="workDaysSearchEmployee" name="workDaysSearchEmployee" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysSearchByDate">Search by date</label>
|
||||||
|
<div class="col-md-2">
|
||||||
|
<input id="workDaysSearchByDate" name="workDaysSearchByDate" type="text" class="form-control input-md datepicker">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="registerWorkDaysEmployeeInfo" class="col-md-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeName">Name</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="workDaysEmployeeName" name="workDaysEmployeeName" type="text" class="form-control input-md" disabled>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeRol">Rol</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<select class="form-control input-md" name="workDaysEmployeeRol" id="workDaysEmployeeRol" disabled>
|
||||||
|
<option></option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeContractType">Contract type</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<select class="form-control input-md" name="workDaysEmployeeContractType" id="workDaysEmployeeContractType" disabled>
|
||||||
|
<option>Contract type</option>
|
||||||
|
<option value="INTERNO">interno</option>
|
||||||
|
<option value="EXTERNO">Externo</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeWorkedDay">Date</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="workDaysEmployeeWorkedDay" name="workDaysEmployeeWorkedDay" type="text" class="form-control input-md datepicker">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeDeliveries">Deliveries</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="workDaysEmployeeDeliveries" name="workDaysEmployeeDeliveries" type="number" value="0" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeePerformedRol">Performed rol</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<select class="form-control input-md" name="workDaysEmployeePerformedRol" id="workDaysEmployeePerformedRol" disabled>
|
||||||
|
<option>Employee type</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="registerWorkDaysEmployeeSalary" class="col-md-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeSalaryRaw">Raw</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="workDaysEmployeeSalaryRaw" name="workDaysEmployeeSalaryRaw" type="text" class="form-control input-md" disabled>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeSalaryTaxes">Taxes</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="workDaysEmployeeSalaryTaxes" name="workDaysEmployeeSalaryTaxes" type="text" class="form-control input-md" disabled>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeSalaryFinal">Final</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="workDaysEmployeeSalaryFinal" name="workDaysEmployeeSalaryFinal" type="text" class="form-control input-md" disabled>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="workDaysEmployeeSalaryVouchers">Vouchers</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="workDaysEmployeeSalaryVouchers" name="workDaysEmployeeSalaryVouchers" type="text" class="form-control input-md" disabled>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row" id="hidenEmployeeCodeForWorkDays">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label" for="hidenEmployeeCodeForWorkDaysCode">Code</label>
|
||||||
|
<div class="col-md-5">
|
||||||
|
<input id="hidenEmployeeCodeForWorkDaysCode" name="hidenEmployeeCodeForWorkDaysCode" type="text" class="form-control input-md">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row col-md-offset-6">
|
||||||
|
<div class="form-group">
|
||||||
|
<a href="#" class="btn btn-lg btn-success " onclick="processSaveActionWorkDay();">Save</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
8
api-payroll/public/js/bootstrap-datepicker.min.js
vendored
Normal file
8
api-payroll/public/js/bootstrap-datepicker.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
180
api-payroll/public/js/editEmployee.js
Normal file
180
api-payroll/public/js/editEmployee.js
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
/**
|
||||||
|
* Bootstrapping the starting actions for the module
|
||||||
|
*/
|
||||||
|
$(document).ready(function(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
loadEmployeeTypes();
|
||||||
|
|
||||||
|
$('.datepicker').datepicker({
|
||||||
|
format: "yyyy/mm/dd",
|
||||||
|
autoclose: true
|
||||||
|
});
|
||||||
|
|
||||||
|
// Not to be edited
|
||||||
|
$("#hidenEmployeeCode").hide();
|
||||||
|
|
||||||
|
// Setting up bloodhound typeahead
|
||||||
|
let employeesList = new Bloodhound({
|
||||||
|
datumTokenizer: Bloodhound.tokenizers.obj.whitespace("name"),
|
||||||
|
queryTokenizer: Bloodhound.tokenizers.whitespace,
|
||||||
|
remote: {
|
||||||
|
'cache': false,
|
||||||
|
url: baseUrl + '/api/employee/find',
|
||||||
|
|
||||||
|
replace: function(url, uriEncodedQuery) {
|
||||||
|
|
||||||
|
return url + '/' + uriEncodedQuery
|
||||||
|
|
||||||
|
},
|
||||||
|
wildcard: '%QUERY',
|
||||||
|
filter: function (data) {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
employeesList.initialize();
|
||||||
|
|
||||||
|
$("#editEmploySearch").typeahead({
|
||||||
|
hint: true,
|
||||||
|
highlight: true,
|
||||||
|
minLength: 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "result",
|
||||||
|
displayKey: "fullName",
|
||||||
|
source: employeesList.ttAdapter()
|
||||||
|
}).bind("typeahead:selected", function(obj, datum, name) {
|
||||||
|
$(this).data("id", datum.code);
|
||||||
|
loadEmployeeData(datum.code);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads the the employee types into their select option
|
||||||
|
*/
|
||||||
|
function loadEmployeeTypes(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/types',
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
$(data).each(function(i,v){
|
||||||
|
$('#editEmployeeType').append(
|
||||||
|
'<option value="' + v.id + '">'+ v.name + '</option>'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Searches the employee data by its employee code and loads it
|
||||||
|
* into the form to be edited and updated
|
||||||
|
*
|
||||||
|
* @param code string
|
||||||
|
*/
|
||||||
|
function loadEmployeeData(code){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/code/' + code,
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
$('#editEmployeeFirstName').val(data['firstName']);
|
||||||
|
$('#editEmployeeMiddleName').val(data['middleName']);
|
||||||
|
$('#editEmployeeLastName').val(data['lastName']);
|
||||||
|
$('#editEmployeeBirthDate').val(data['birthDate']);
|
||||||
|
$('#editEmployeeCode').val(data['code']);
|
||||||
|
$('#editEmployeeEmail').val(data['email']);
|
||||||
|
$('#editEmployeePhone').val(data['phone']);
|
||||||
|
$('#editEmployeeType').val(data['idEmployeeType']);
|
||||||
|
$('#editEmployeeContractType').val(data['contractType']);
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateEmployee(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
let parameters = {
|
||||||
|
"firstName":$('#editEmployeeFirstName').val(),
|
||||||
|
"middleName":$('#editEmployeeMiddleName').val(),
|
||||||
|
"lastName":$('#editEmployeeLastName').val(),
|
||||||
|
"birthDate":$('#editEmployeeBirthDate').val(),
|
||||||
|
"code":$('#editEmployeeCode').val(),
|
||||||
|
"email":$('#editEmployeeEmail').val(),
|
||||||
|
"phone":$('#editEmployeePhone').val(),
|
||||||
|
"idEmployeeType":$('#editEmployeeType').val(),
|
||||||
|
"contractType":$('#editEmployeeContractType').val()
|
||||||
|
};
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee',
|
||||||
|
type: 'PUT',
|
||||||
|
dataType: 'json',
|
||||||
|
data: parameters,
|
||||||
|
success:function(data){
|
||||||
|
$('#modalServerResponseSuccess').modal('show');
|
||||||
|
document.getElementById('serverResponseSuccess').innerHTML = 'The employee ' + data['fullName'] + ' has been updated.';
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
10
api-payroll/public/js/getBaseUrl.js
Normal file
10
api-payroll/public/js/getBaseUrl.js
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* Returns the entry point url for the system, this url will be used
|
||||||
|
* to access both the api and the static resources
|
||||||
|
*
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
function getbaseUrl(){
|
||||||
|
var url = window.location.href;
|
||||||
|
return url.substring(0, url.indexOf('/html/'));
|
||||||
|
}
|
||||||
77
api-payroll/public/js/landing.js
Normal file
77
api-payroll/public/js/landing.js
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
/**
|
||||||
|
* Destorys the session for the current user and redirects
|
||||||
|
* back to the login form
|
||||||
|
*/
|
||||||
|
function logout() {
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/session/logout',
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
window.location.replace(baseUrl + '/html/login.php');
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalError500').modal('show');
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modal_error_otro').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Entry point for loading elements from the navatation var, this functuion
|
||||||
|
* will filter the junk clicks that have landed in a dropdown menu and pass
|
||||||
|
* only the ones containing an action to the actual view loader
|
||||||
|
*/
|
||||||
|
$('#nevatation-options li a').click(function(){
|
||||||
|
|
||||||
|
let view = $(this).data('nav_accion');
|
||||||
|
|
||||||
|
if (view != "#" && view != undefined) {
|
||||||
|
loadView(view);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Will fetch the html of the desired view and load it into the landing page
|
||||||
|
*
|
||||||
|
* @param requestedView string
|
||||||
|
*/
|
||||||
|
function loadView(requestedView){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/html/' + requestedView,
|
||||||
|
type: 'get',
|
||||||
|
success:function(data){
|
||||||
|
$("#newViewBody").hide().html(data).show('slow');
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalError500').modal('show');
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modal_error_otro').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -1,25 +1,37 @@
|
|||||||
function getbaseUrl(uriPath){
|
/**
|
||||||
var url = window.location.href;
|
* Maps the enter key to the login action
|
||||||
return url.substring(0, url.indexOf(uriPath));
|
*/
|
||||||
}
|
$(document).keypress(function(e) {
|
||||||
|
if(e.which == 13) {
|
||||||
|
processLogin();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Takes the input from the username and password fields and send theem to the backend
|
||||||
|
* to be validated
|
||||||
|
*
|
||||||
|
* The response from the api will contain a status that will determine if the login was
|
||||||
|
* successful or not and a message that will contain feedback which can be used to
|
||||||
|
* display errors to the user
|
||||||
|
*/
|
||||||
function processLogin() {
|
function processLogin() {
|
||||||
var baseUrl = getbaseUrl('/html/');
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
var parametros = {
|
let parameters = {
|
||||||
"userName":$('#userName').val(),
|
"userName":$('#userName').val(),
|
||||||
"password":$('#password').val()
|
"password":$('#password').val()
|
||||||
};
|
};
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: baseUrl + '/index.php/api/session/login',
|
url: baseUrl + '/api/session/login',
|
||||||
type: 'POST',
|
type: 'POST',
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
data: parametros,
|
data: parameters,
|
||||||
success:function(data){
|
success:function(data){
|
||||||
console.log(JSON.stringify(data));
|
|
||||||
if(data["status"] == "success"){
|
if(data["status"] == "success"){
|
||||||
redirect(baseUrl + '/html/landing.php');
|
window.location.replace(baseUrl + '/html/landing.php');
|
||||||
|
|
||||||
}else if(data["status"] == "success" || (data["status"] === undefined)){
|
}else if(data["status"] == "success" || (data["status"] === undefined)){
|
||||||
$('#modalLoginError').modal('show');
|
$('#modalLoginError').modal('show');
|
||||||
document.getElementById('modalLoginErrorBody').innerHTML = "The server didn't respond in time, please try again or refresh this page.";
|
document.getElementById('modalLoginErrorBody').innerHTML = "The server didn't respond in time, please try again or refresh this page.";
|
||||||
@@ -32,8 +44,4 @@ function processLogin() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
|
||||||
function redirect(url){
|
|
||||||
window.location.replace(url);
|
|
||||||
}
|
}
|
||||||
94
api-payroll/public/js/newEmployee.js
Normal file
94
api-payroll/public/js/newEmployee.js
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
/**
|
||||||
|
* Bootstrapping the starting actions for the module
|
||||||
|
*/
|
||||||
|
$(document).ready(function(){
|
||||||
|
loadEmployeeTypes();
|
||||||
|
|
||||||
|
$('.datepicker').datepicker({
|
||||||
|
format: "yyyy/mm/dd",
|
||||||
|
autoclose: true
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads the the enmployee types into their select option
|
||||||
|
*/
|
||||||
|
function loadEmployeeTypes(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/types',
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
$(data).each(function(i,v){
|
||||||
|
$('#newEmployeeType').append(
|
||||||
|
'<option value="' + v.id + '">'+ v.name + '</option>'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function saveNewEmployee(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
let parameters = {
|
||||||
|
"firstName":$('#newEmployeeFirstName').val(),
|
||||||
|
"middleName":$('#newEmployeeMiddleName').val(),
|
||||||
|
"lastName":$('#newEmployeeLastName').val(),
|
||||||
|
"birthDate":$('#newEmployeeBirthDate').val(),
|
||||||
|
"email":$('#newEmployeeEmail').val(),
|
||||||
|
"phone":$('#newEmployeePhone').val(),
|
||||||
|
"idEmployeeType":$('#newEmployeeType').val(),
|
||||||
|
"contractType":$('#NewEmpployyContractType').val()
|
||||||
|
};
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee',
|
||||||
|
type: 'POST',
|
||||||
|
dataType: 'json',
|
||||||
|
data: parameters,
|
||||||
|
success:function(data){
|
||||||
|
$('#modalServerResponseSuccess').modal('show');
|
||||||
|
document.getElementById('serverResponseSuccess').innerHTML = 'The employee ' + data['fullName'] + ' has been created with the code ' + data['employeeCode'];
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
359
api-payroll/public/js/registerWorkDays.js
Normal file
359
api-payroll/public/js/registerWorkDays.js
Normal file
@@ -0,0 +1,359 @@
|
|||||||
|
/**
|
||||||
|
* Bootstrapping the starting actions for the module
|
||||||
|
*/
|
||||||
|
$(document).ready(function(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
loadEmployeeTypesForWorkDays();
|
||||||
|
|
||||||
|
$('.datepicker').datepicker({
|
||||||
|
format: "yyyy-mm-dd",
|
||||||
|
autoclose: true
|
||||||
|
});
|
||||||
|
|
||||||
|
// Not to be edited
|
||||||
|
$("#hidenEmployeeCodeForWorkDays").hide();
|
||||||
|
|
||||||
|
// Setting up bloodhound typeahead
|
||||||
|
let employeesList = new Bloodhound({
|
||||||
|
datumTokenizer: Bloodhound.tokenizers.obj.whitespace("name"),
|
||||||
|
queryTokenizer: Bloodhound.tokenizers.whitespace,
|
||||||
|
remote: {
|
||||||
|
'cache': false,
|
||||||
|
url: baseUrl + '/api/employee/find',
|
||||||
|
|
||||||
|
replace: function(url, uriEncodedQuery) {
|
||||||
|
|
||||||
|
return url + '/' + uriEncodedQuery
|
||||||
|
|
||||||
|
},
|
||||||
|
wildcard: '%QUERY',
|
||||||
|
filter: function (data) {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
employeesList.initialize();
|
||||||
|
|
||||||
|
$("#workDaysSearchEmployee").typeahead({
|
||||||
|
hint: true,
|
||||||
|
highlight: true,
|
||||||
|
minLength: 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "result",
|
||||||
|
displayKey: "fullName",
|
||||||
|
source: employeesList.ttAdapter()
|
||||||
|
}).bind("typeahead:selected", function(obj, datum, name) {
|
||||||
|
$(this).data("id", datum.code);
|
||||||
|
|
||||||
|
loadEmployeeDataForWorkDays(datum.code);
|
||||||
|
validateEmployeeCanDoOtherRoles(datum.code);
|
||||||
|
loadSalaryDetails(datum.code);
|
||||||
|
$('#hidenEmployeeCodeForWorkDaysCode').val(datum.code); // For future reference
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads the the employee types into their select option
|
||||||
|
*/
|
||||||
|
function loadEmployeeTypesForWorkDays(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/types',
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
$(data).each(function(i,v){
|
||||||
|
$('#workDaysEmployeeRol').append(
|
||||||
|
'<option value="' + v.id + '">'+ v.name + '</option>'
|
||||||
|
);
|
||||||
|
|
||||||
|
$('#workDaysEmployeePerformedRol').append(
|
||||||
|
'<option value="' + v.id + '">'+ v.name + '</option>'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Searches the employee data by its employee code and loads it
|
||||||
|
* into the form to be edited and saved
|
||||||
|
*
|
||||||
|
* @param code string
|
||||||
|
*/
|
||||||
|
function loadEmployeeDataForWorkDays(code){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/code/' + code,
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
let fullName = data['firstName'] + ' ' + data['middleName'] + ' ' + data['lastName'];
|
||||||
|
|
||||||
|
$('#workDaysEmployeeName').val(fullName);
|
||||||
|
$('#workDaysEmployeeRol').val(data['idEmployeeType']);
|
||||||
|
$('#workDaysEmployeePerformedRol').val(data['idEmployeeType']);
|
||||||
|
$('#workDaysEmployeeContractType').val(data['contractType']);
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Based on the employee code determines their type to decide if
|
||||||
|
* they should be able to cover for other roles or not
|
||||||
|
*
|
||||||
|
* @param code string
|
||||||
|
*/
|
||||||
|
function validateEmployeeCanDoOtherRoles(code){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/type/' + code,
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
if(data == 3){
|
||||||
|
$("#workDaysEmployeePerformedRol").prop('disabled', false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadSalaryDetails(code){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/salary/' + code,
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
$('#workDaysEmployeeSalaryRaw').val(data['raw']);
|
||||||
|
$('#workDaysEmployeeSalaryTaxes').val(data['taxes']);
|
||||||
|
$('#workDaysEmployeeSalaryFinal').val(data['real']);
|
||||||
|
$('#workDaysEmployeeSalaryVouchers').val(data['vouchers']);
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstraper for the save action
|
||||||
|
*
|
||||||
|
* If the search by date function has been used it's then assumed that the
|
||||||
|
* desired action is to update else the function will attempt to create a new
|
||||||
|
* record for the worked day
|
||||||
|
*/
|
||||||
|
function processSaveActionWorkDay(){
|
||||||
|
if($('#workDaysSearchByDate').val() === ''){
|
||||||
|
saveNewWorkDay();
|
||||||
|
}else {
|
||||||
|
updateNewWorkDay();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function saveNewWorkDay(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
let parameters = {
|
||||||
|
"code":$('#hidenEmployeeCodeForWorkDaysCode').val(),
|
||||||
|
"idEmployeeTypePerformed":$('#workDaysEmployeePerformedRol').val(),
|
||||||
|
"deliveries":$('#workDaysEmployeeDeliveries').val(),
|
||||||
|
"date":$('#workDaysEmployeeWorkedDay').val(),
|
||||||
|
};
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/workday',
|
||||||
|
type: 'POST',
|
||||||
|
dataType: 'json',
|
||||||
|
data: parameters,
|
||||||
|
success:function(data){
|
||||||
|
$('#modalServerResponseSuccess').modal('show');
|
||||||
|
document.getElementById('serverResponseSuccess').innerHTML = data['message'];
|
||||||
|
loadSalaryDetails($('#hidenEmployeeCodeForWorkDaysCode').val());
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateNewWorkDay(){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
|
||||||
|
let parameters = {
|
||||||
|
"code":$('#hidenEmployeeCodeForWorkDaysCode').val(),
|
||||||
|
"idEmployeeTypePerformed":$('#workDaysEmployeePerformedRol').val(),
|
||||||
|
"deliveries":$('#workDaysEmployeeDeliveries').val(),
|
||||||
|
"date":$('#workDaysEmployeeWorkedDay').val(),
|
||||||
|
};
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/workday',
|
||||||
|
type: 'PUT',
|
||||||
|
dataType: 'json',
|
||||||
|
data: parameters,
|
||||||
|
success:function(data){
|
||||||
|
$('#modalServerResponseSuccess').modal('show');
|
||||||
|
document.getElementById('serverResponseSuccess').innerHTML = data['message'];
|
||||||
|
loadSalaryDetails($('#hidenEmployeeCodeForWorkDaysCode').val());
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If the search by date field is changed from its default empty status it'll
|
||||||
|
* load the data of the given work day and enable the update mode
|
||||||
|
*/
|
||||||
|
$('#workDaysSearchByDate').on("change", function(data){
|
||||||
|
let baseUrl = getbaseUrl();
|
||||||
|
let date = $(this).val();
|
||||||
|
let code = $('#hidenEmployeeCodeForWorkDaysCode').val();
|
||||||
|
|
||||||
|
// The employee hasn't been picked
|
||||||
|
if (code === ''){
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = 'Please select an employee in the search form first.';
|
||||||
|
return false; // Exits the function
|
||||||
|
}
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: baseUrl + '/api/employee/salary/date/' + date + '/code/' + code,
|
||||||
|
type: 'GET',
|
||||||
|
dataType: 'json',
|
||||||
|
success:function(data){
|
||||||
|
$('#workDaysEmployeeRol').val(data['idEmployeeType']);
|
||||||
|
$('#workDaysEmployeeContractType').val(data['contractType']);
|
||||||
|
$('#workDaysEmployeeWorkedDay').val(date);
|
||||||
|
$('#workDaysEmployeeDeliveries').val(data['deliveries']);
|
||||||
|
$('#workDaysEmployeePerformedRol').val(data['idEmployeeTypePerformed']);
|
||||||
|
},
|
||||||
|
error:function(x,e) {
|
||||||
|
let responseText = $.parseJSON(x["responseText"]);
|
||||||
|
|
||||||
|
if (x.status==0) {
|
||||||
|
$('#modalErrorInternetConnection').modal('show');
|
||||||
|
} else if(x.status==404) {
|
||||||
|
$('#modalError404').modal('show');
|
||||||
|
} else if(x.status==500) {
|
||||||
|
$('#modalServerResponseError').modal('show');
|
||||||
|
document.getElementById('modalResponseError').innerHTML = responseText['message'];
|
||||||
|
} else if(e=='parsererror') {
|
||||||
|
$('#modalErrorParsererror').modal('show');
|
||||||
|
} else if(e=='timeout'){
|
||||||
|
$('#modalErrorTimeout').modal('show');
|
||||||
|
} else {
|
||||||
|
$('#modalErrorOther').modal('show');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
2451
api-payroll/public/js/typeahead.bundle.js
Normal file
2451
api-payroll/public/js/typeahead.bundle.js
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace App\Application;
|
namespace App\Application;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
use phpDocumentor\Reflection\Types\Integer;
|
use phpDocumentor\Reflection\Types\Integer;
|
||||||
|
|
||||||
class EmployeeApplication{
|
class EmployeeApplication{
|
||||||
@@ -15,15 +16,16 @@ class EmployeeApplication{
|
|||||||
$this->cryptographyService = $cryptographyService;
|
$this->cryptographyService = $cryptographyService;
|
||||||
$this->pdo = $mysql;
|
$this->pdo = $mysql;
|
||||||
$this->asserts = $asserts;
|
$this->asserts = $asserts;
|
||||||
|
|
||||||
$this->databaseSelectQueryErrorMessage = 'There was an error inserting the record.';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* A list of the types of employee used in the system
|
||||||
|
*
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function listEmployeeTypes(){
|
function listEmployeeTypes(){
|
||||||
$stmt = $this->pdo->prepare("SELECT
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
id, name
|
id, name
|
||||||
FROM
|
FROM
|
||||||
employeeType
|
employeeType
|
||||||
@@ -34,7 +36,7 @@ class EmployeeApplication{
|
|||||||
$results = $stmt->fetchAll();
|
$results = $stmt->fetchAll();
|
||||||
|
|
||||||
if(!$results){
|
if(!$results){
|
||||||
exit($this->databaseSelectQueryErrorMessage);
|
throw new Exception("The types of employees could not be found..");
|
||||||
}
|
}
|
||||||
$stmt = null;
|
$stmt = null;
|
||||||
|
|
||||||
@@ -54,16 +56,18 @@ class EmployeeApplication{
|
|||||||
* @param $email string
|
* @param $email string
|
||||||
* @param $phone string
|
* @param $phone string
|
||||||
* @return integer
|
* @return integer
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function saveNewPerson($firstName, $middleName, $lastName, $birthDate, $email, $phone){
|
function saveNewPerson($firstName, $middleName, $lastName, $birthDate, $email, $phone){
|
||||||
$this->asserts->isNotEmpty($firstName, "The first name can't be empty.");
|
$this->asserts->isNotEmpty($firstName, "The first name can't be empty.");
|
||||||
$this->asserts->isNotEmpty($middleName, "The middle name can't be empty.");
|
$this->asserts->isNotEmpty($middleName, "The middle name can't be empty.");
|
||||||
$this->asserts->isNotEmpty($birthDate, "The birth date can't be empty.");
|
$this->asserts->isNotEmpty($birthDate, "The birth date can't be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($birthDate, "The birth date can't be in the future.");
|
||||||
$this->asserts->isNotEmpty($email, "The email can't be empty.");
|
$this->asserts->isNotEmpty($email, "The email can't be empty.");
|
||||||
$this->asserts->isNotEmpty($phone, "The phone number can't be empty.");
|
$this->asserts->isNotEmpty($phone, "The phone number can't be empty.");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$stmt = $this->pdo->prepare("INSERT INTO persons (firstName, middleName, lastName, birthDate, email, phone)
|
$stmt = $this->pdo->prepare("INSERT INTO persons (firstName, middleName, lastName, birthDate, email, phone)
|
||||||
VALUES (:firstName, :middleName, :lastName, :birthDate, :email, :phone)");
|
VALUES (:firstName, :middleName, :lastName, :birthDate, :email, :phone)");
|
||||||
$this->pdo->beginTransaction();
|
$this->pdo->beginTransaction();
|
||||||
$stmt->execute(array(':firstName' => $firstName, ':middleName' => $middleName, ':lastName' => $lastName,
|
$stmt->execute(array(':firstName' => $firstName, ':middleName' => $middleName, ':lastName' => $lastName,
|
||||||
@@ -87,6 +91,7 @@ class EmployeeApplication{
|
|||||||
* @param $code string
|
* @param $code string
|
||||||
* @param $contractType string
|
* @param $contractType string
|
||||||
* @return mixed
|
* @return mixed
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function savePersonAsEmployee($idEmployeeType, $idPerson, $code, $contractType){
|
function savePersonAsEmployee($idEmployeeType, $idPerson, $code, $contractType){
|
||||||
$this->asserts->higherThanZero($idEmployeeType, "idEmployeeType must be higher than 0");
|
$this->asserts->higherThanZero($idEmployeeType, "idEmployeeType must be higher than 0");
|
||||||
@@ -94,7 +99,7 @@ class EmployeeApplication{
|
|||||||
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
||||||
$this->asserts->isNotEmpty($contractType, "The contract type can't be empty.");
|
$this->asserts->isNotEmpty($contractType, "The contract type can't be empty.");
|
||||||
try {
|
try {
|
||||||
$stmt = $this->pdo->prepare("INSERT INTO employees (idEmployeeType, idPerson, code, contractType)
|
$stmt = $this->pdo->prepare("INSERT INTO employees (idEmployeeType, idPerson, code, contractType)
|
||||||
VALUES (:idEmployeeType, :idPerson, :code, :contractType)");
|
VALUES (:idEmployeeType, :idPerson, :code, :contractType)");
|
||||||
$this->pdo->beginTransaction();
|
$this->pdo->beginTransaction();
|
||||||
$stmt->execute(array(':idEmployeeType' => $idEmployeeType, ':idPerson' => $idPerson, ':code' => $code,
|
$stmt->execute(array(':idEmployeeType' => $idEmployeeType, ':idPerson' => $idPerson, ':code' => $code,
|
||||||
@@ -115,6 +120,7 @@ class EmployeeApplication{
|
|||||||
/**
|
/**
|
||||||
* @param $requestData object
|
* @param $requestData object
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function saveNewEmployee($requestData){
|
function saveNewEmployee($requestData){
|
||||||
// Getting and validating the data
|
// Getting and validating the data
|
||||||
@@ -134,17 +140,23 @@ class EmployeeApplication{
|
|||||||
|
|
||||||
$birthDate = $requestData['birthDate'];
|
$birthDate = $requestData['birthDate'];
|
||||||
$this->asserts->isNotEmpty($birthDate, "The birth date can't be empty.");
|
$this->asserts->isNotEmpty($birthDate, "The birth date can't be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($birthDate, "The birth date can't be in the future.");
|
||||||
|
|
||||||
$email = $requestData['email'];
|
$email = $requestData['email'];
|
||||||
$this->asserts->isNotEmpty($email, "The email can't be empty.");
|
$this->asserts->isNotEmpty($email, "The email can't be empty.");
|
||||||
$this->asserts->betweenLength($email, 1, 100, "The middle name must have a length between 1 and 100 characters.");
|
$this->asserts->betweenLength($email, 1, 100, "The middle name must have a length between 1 and 100 characters.");
|
||||||
|
$this->asserts->isEmail($email, "The email isn't in a correct format");
|
||||||
|
|
||||||
$phone = $requestData['phone'];
|
$phone = $requestData['phone'];
|
||||||
$this->asserts->isNotEmpty($phone, "The phone number can't be empty.");
|
$this->asserts->isNotEmpty($phone, "The phone number can't be empty.");
|
||||||
$this->asserts->betweenLength($phone, 10, 10, "The phone number must be 10 digits without special characters.");
|
$this->asserts->betweenLength($phone, 10, 10, "The phone number must be 10 digits without special characters.");
|
||||||
|
|
||||||
$idEmployeeType = $requestData{'idEmployeeType'};
|
$idEmployeeType = $requestData{'idEmployeeType'};
|
||||||
|
$this->asserts->higherThanZero($idEmployeeType, 'idEmployeeType must be higher than zero.');
|
||||||
|
|
||||||
$contractType = $requestData{'contractType'};
|
$contractType = $requestData{'contractType'};
|
||||||
|
$this->asserts->isNotEmpty($contractType, "The contract type can't be empty.");
|
||||||
|
$this->asserts->existInArray($contractType, $this->settings['contractTypes'], 'The contract type is not a valid one.');
|
||||||
|
|
||||||
// Encrypting the sensitive data
|
// Encrypting the sensitive data
|
||||||
$securedFirstName = $this->cryptographyService->encryptString($firstName);
|
$securedFirstName = $this->cryptographyService->encryptString($firstName);
|
||||||
@@ -179,12 +191,13 @@ class EmployeeApplication{
|
|||||||
/**
|
/**
|
||||||
* @param $idEmployee
|
* @param $idEmployee
|
||||||
* @return Integer
|
* @return Integer
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function getIdPersonByIdEmployee($idEmployee){
|
function getIdPersonByIdEmployee($idEmployee){
|
||||||
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
|
||||||
$stmt = $this->pdo->prepare("SELECT
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
COALESCE((SELECT
|
COALESCE((SELECT
|
||||||
idPerson
|
idPerson
|
||||||
FROM
|
FROM
|
||||||
employees
|
employees
|
||||||
@@ -195,7 +208,7 @@ class EmployeeApplication{
|
|||||||
$stmt->execute(array(':idEmployee' => $idEmployee));
|
$stmt->execute(array(':idEmployee' => $idEmployee));
|
||||||
$results = $stmt->fetchAll();
|
$results = $stmt->fetchAll();
|
||||||
if(!$results){
|
if(!$results){
|
||||||
exit($this->databaseSelectQueryErrorMessage);
|
throw new Exception("An error occurred while trying to find the person associated with the employee..");
|
||||||
}
|
}
|
||||||
$stmt = null;
|
$stmt = null;
|
||||||
|
|
||||||
@@ -205,11 +218,12 @@ class EmployeeApplication{
|
|||||||
/**
|
/**
|
||||||
* @param $code string
|
* @param $code string
|
||||||
* @return integer
|
* @return integer
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function getIdEmployeeTypeByCode($code){
|
function getIdEmployeeTypeByCode($code){
|
||||||
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
||||||
|
|
||||||
$stmt = $this->pdo->prepare("SELECT COALESCE((SELECT
|
$stmt = $this->pdo->prepare("SELECT COALESCE((SELECT
|
||||||
et.id
|
et.id
|
||||||
FROM
|
FROM
|
||||||
employees e
|
employees e
|
||||||
@@ -221,7 +235,35 @@ class EmployeeApplication{
|
|||||||
$stmt->execute(array(':code' => $code));
|
$stmt->execute(array(':code' => $code));
|
||||||
$results = $stmt->fetchAll();
|
$results = $stmt->fetchAll();
|
||||||
if(!$results){
|
if(!$results){
|
||||||
exit($this->databaseSelectQueryErrorMessage);
|
throw new Exception("The employee could not be found.");
|
||||||
|
}
|
||||||
|
$stmt = null;
|
||||||
|
|
||||||
|
return $results[0]['id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $code string
|
||||||
|
* @return integer
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function getIdEmployeeByCode($code){
|
||||||
|
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
||||||
|
|
||||||
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
|
COALESCE((SELECT
|
||||||
|
id
|
||||||
|
FROM
|
||||||
|
employees
|
||||||
|
WHERE
|
||||||
|
code = :code),
|
||||||
|
0) AS id;
|
||||||
|
");
|
||||||
|
|
||||||
|
$stmt->execute(array(':code' => $code));
|
||||||
|
$results = $stmt->fetchAll();
|
||||||
|
if(!$results){
|
||||||
|
throw new Exception("The employee could not be found.");
|
||||||
}
|
}
|
||||||
$stmt = null;
|
$stmt = null;
|
||||||
|
|
||||||
@@ -233,18 +275,22 @@ class EmployeeApplication{
|
|||||||
*
|
*
|
||||||
* @param $idEmployee
|
* @param $idEmployee
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function getEmployeeDataById($idEmployee){
|
function getEmployeeDataById($idEmployee){
|
||||||
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
|
||||||
$stmt = $this->pdo->prepare("SELECT
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
|
e.id AS idEmployee,
|
||||||
p.id AS idPerson,
|
p.id AS idPerson,
|
||||||
p.firstName,
|
p.firstName,
|
||||||
p.middleName,
|
p.middleName,
|
||||||
IFNULL(p.lastName, '') AS lastName,
|
IFNULL(p.lastName, '') AS lastName,
|
||||||
|
p.birthDate,
|
||||||
p.email,
|
p.email,
|
||||||
p.phone,
|
p.phone,
|
||||||
e.code,
|
e.code,
|
||||||
|
e.idEmployeeType,
|
||||||
e.contractType
|
e.contractType
|
||||||
FROM
|
FROM
|
||||||
employees e
|
employees e
|
||||||
@@ -256,7 +302,7 @@ class EmployeeApplication{
|
|||||||
$stmt->execute(array(':idEmployee' => $idEmployee));
|
$stmt->execute(array(':idEmployee' => $idEmployee));
|
||||||
$results = $stmt->fetchAll();
|
$results = $stmt->fetchAll();
|
||||||
if(!$results){
|
if(!$results){
|
||||||
exit($this->databaseSelectQueryErrorMessage);
|
throw new Exception("The employee could not be found.");
|
||||||
}
|
}
|
||||||
$stmt = null;
|
$stmt = null;
|
||||||
|
|
||||||
@@ -269,6 +315,7 @@ class EmployeeApplication{
|
|||||||
*
|
*
|
||||||
* @param $idEmployee
|
* @param $idEmployee
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function proxyGetEmployeeDataById($idEmployee){
|
function proxyGetEmployeeDataById($idEmployee){
|
||||||
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
@@ -276,6 +323,7 @@ class EmployeeApplication{
|
|||||||
$employeeData = $this->getEmployeeDataById($idEmployee);
|
$employeeData = $this->getEmployeeDataById($idEmployee);
|
||||||
|
|
||||||
$response = array(
|
$response = array(
|
||||||
|
"idEmployee" => (int)$employeeData['idEmployee'],
|
||||||
"idPerson" => (int)$employeeData['idPerson'],
|
"idPerson" => (int)$employeeData['idPerson'],
|
||||||
"firstName" => $this->cryptographyService->decryptString($employeeData['firstName']),
|
"firstName" => $this->cryptographyService->decryptString($employeeData['firstName']),
|
||||||
"middleName" => $this->cryptographyService->decryptString($employeeData['middleName']),
|
"middleName" => $this->cryptographyService->decryptString($employeeData['middleName']),
|
||||||
@@ -284,9 +332,11 @@ class EmployeeApplication{
|
|||||||
? $this->cryptographyService->decryptString($employeeData['lastName'])
|
? $this->cryptographyService->decryptString($employeeData['lastName'])
|
||||||
: '',
|
: '',
|
||||||
|
|
||||||
|
"birthDate" => $employeeData['birthDate'],
|
||||||
"email" => $this->cryptographyService->decryptString($employeeData['email']),
|
"email" => $this->cryptographyService->decryptString($employeeData['email']),
|
||||||
"phone" => $employeeData['phone'],
|
"phone" => $employeeData['phone'],
|
||||||
"code" => $employeeData['code'],
|
"code" => $employeeData['code'],
|
||||||
|
"idEmployeeType" => $employeeData['idEmployeeType'],
|
||||||
"contractType" => $employeeData['contractType']
|
"contractType" => $employeeData['contractType']
|
||||||
|
|
||||||
);
|
);
|
||||||
@@ -297,11 +347,12 @@ class EmployeeApplication{
|
|||||||
/**
|
/**
|
||||||
* @param $code string
|
* @param $code string
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function getEmployeeDataByCode($code){
|
function getEmployeeDataByCode($code){
|
||||||
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
||||||
|
|
||||||
$idEmployee = $this->getIdEmployeeTypeByCode($code);
|
$idEmployee = $this->getIdEmployeeByCode($code);
|
||||||
|
|
||||||
return $this->proxyGetEmployeeDataById($idEmployee);
|
return $this->proxyGetEmployeeDataById($idEmployee);
|
||||||
}
|
}
|
||||||
@@ -320,12 +371,13 @@ class EmployeeApplication{
|
|||||||
$this->asserts->isNotEmpty($firstName, "The first name can't be empty.");
|
$this->asserts->isNotEmpty($firstName, "The first name can't be empty.");
|
||||||
$this->asserts->isNotEmpty($middleName, "The middle name can't be empty.");
|
$this->asserts->isNotEmpty($middleName, "The middle name can't be empty.");
|
||||||
$this->asserts->isNotEmpty($birthDate, "The birth date can't be empty.");
|
$this->asserts->isNotEmpty($birthDate, "The birth date can't be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($birthDate, "The birth date can't be in the future.");
|
||||||
$this->asserts->isNotEmpty($email, "The email can't be empty.");
|
$this->asserts->isNotEmpty($email, "The email can't be empty.");
|
||||||
$this->asserts->isNotEmpty($phone, "The phone number can't be empty.");
|
$this->asserts->isNotEmpty($phone, "The phone number can't be empty.");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$stmt = $this->pdo->prepare("UPDATE persons
|
$stmt = $this->pdo->prepare("UPDATE persons
|
||||||
SET
|
SET
|
||||||
firstName = :firstName,
|
firstName = :firstName,
|
||||||
middleName = :middleName,
|
middleName = :middleName,
|
||||||
lastName = :lastName,
|
lastName = :lastName,
|
||||||
@@ -358,8 +410,8 @@ class EmployeeApplication{
|
|||||||
$this->asserts->isNotEmpty($contractType, "The contract type can't be empty.");
|
$this->asserts->isNotEmpty($contractType, "The contract type can't be empty.");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$stmt = $this->pdo->prepare("UPDATE employees
|
$stmt = $this->pdo->prepare("UPDATE employees
|
||||||
SET
|
SET
|
||||||
idEmployeeType = :idEmployeeType,
|
idEmployeeType = :idEmployeeType,
|
||||||
code = :code,
|
code = :code,
|
||||||
contractType = :contractType
|
contractType = :contractType
|
||||||
@@ -379,18 +431,16 @@ class EmployeeApplication{
|
|||||||
/**
|
/**
|
||||||
* @param $requestData object
|
* @param $requestData object
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function updateEmployeeData($requestData){
|
function updateEmployeeData($requestData){
|
||||||
// Getting and validating the data
|
// Getting and validating the data
|
||||||
$idEmployee = $requestData['idEmployee'];
|
|
||||||
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
|
||||||
|
|
||||||
$idPerson = $this->getIdPersonByIdEmployee($idEmployee);
|
|
||||||
$this->asserts->higherThanZero($idPerson, "idPerson must be higher than 0");
|
|
||||||
|
|
||||||
$code = $requestData['code'];
|
$code = $requestData['code'];
|
||||||
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
||||||
|
|
||||||
|
$idEmployee = $this->getIdEmployeeByCode($code);
|
||||||
|
$idPerson = $this->getIdPersonByIdEmployee($idEmployee);
|
||||||
|
|
||||||
$firstName = $requestData['firstName'];
|
$firstName = $requestData['firstName'];
|
||||||
$this->asserts->isNotEmpty($firstName, "The first name can't be empty.");
|
$this->asserts->isNotEmpty($firstName, "The first name can't be empty.");
|
||||||
$this->asserts->isString($firstName, "The first name must be a string.");
|
$this->asserts->isString($firstName, "The first name must be a string.");
|
||||||
@@ -405,10 +455,12 @@ class EmployeeApplication{
|
|||||||
|
|
||||||
$birthDate = $requestData['birthDate'];
|
$birthDate = $requestData['birthDate'];
|
||||||
$this->asserts->isNotEmpty($birthDate, "The birth date can't be empty.");
|
$this->asserts->isNotEmpty($birthDate, "The birth date can't be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($birthDate, "The birth date can't be in the future.");
|
||||||
|
|
||||||
$email = $requestData['email'];
|
$email = $requestData['email'];
|
||||||
$this->asserts->isNotEmpty($email, "The email can't be empty.");
|
$this->asserts->isNotEmpty($email, "The email can't be empty.");
|
||||||
$this->asserts->betweenLength($email, 1, 100, "The middle name must have a length between 1 and 100 characters.");
|
$this->asserts->betweenLength($email, 1, 100, "The middle name must have a length between 1 and 100 characters.");
|
||||||
|
$this->asserts->isEmail($email, "The email isn't in a correct format");
|
||||||
|
|
||||||
$phone = $requestData['phone'];
|
$phone = $requestData['phone'];
|
||||||
$this->asserts->isNotEmpty($phone, "The phone number can't be empty.");
|
$this->asserts->isNotEmpty($phone, "The phone number can't be empty.");
|
||||||
@@ -419,6 +471,7 @@ class EmployeeApplication{
|
|||||||
|
|
||||||
$contractType = $requestData{'contractType'};
|
$contractType = $requestData{'contractType'};
|
||||||
$this->asserts->isNotEmpty($contractType, "The contract type can't be empty.");
|
$this->asserts->isNotEmpty($contractType, "The contract type can't be empty.");
|
||||||
|
$this->asserts->existInArray($contractType, $this->settings['contractTypes'], 'The contract type is not a valid one.');
|
||||||
|
|
||||||
// Encrypting the sensitive data
|
// Encrypting the sensitive data
|
||||||
$securedFirstName = $this->cryptographyService->encryptString($firstName);
|
$securedFirstName = $this->cryptographyService->encryptString($firstName);
|
||||||
@@ -455,8 +508,8 @@ class EmployeeApplication{
|
|||||||
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$stmt = $this->pdo->prepare("UPDATE employees
|
$stmt = $this->pdo->prepare("UPDATE employees
|
||||||
SET
|
SET
|
||||||
status = 'INACTIVE'
|
status = 'INACTIVE'
|
||||||
WHERE
|
WHERE
|
||||||
id = :idEmployee");
|
id = :idEmployee");
|
||||||
@@ -477,9 +530,10 @@ class EmployeeApplication{
|
|||||||
* currently active in the system
|
* currently active in the system
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function getIdEmployeeFromAllActiveEmployees(){
|
function getIdEmployeeFromAllActiveEmployees(){
|
||||||
$stmt = $this->pdo->prepare("SELECT
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
id
|
id
|
||||||
FROM
|
FROM
|
||||||
employees
|
employees
|
||||||
@@ -490,7 +544,7 @@ class EmployeeApplication{
|
|||||||
$results = $stmt->fetchAll();
|
$results = $stmt->fetchAll();
|
||||||
|
|
||||||
if(!$results){
|
if(!$results){
|
||||||
exit($this->databaseSelectQueryErrorMessage);
|
throw new Exception("The employee could not be found.");
|
||||||
}
|
}
|
||||||
$stmt = null;
|
$stmt = null;
|
||||||
|
|
||||||
@@ -498,7 +552,11 @@ class EmployeeApplication{
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Uses an already existing method to create and array containing the details of
|
||||||
|
* all currently active employees
|
||||||
|
*
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function listAllActiveEmployees(){
|
function listAllActiveEmployees(){
|
||||||
$ids = $this->getIdEmployeeFromAllActiveEmployees();
|
$ids = $this->getIdEmployeeFromAllActiveEmployees();
|
||||||
@@ -506,10 +564,604 @@ class EmployeeApplication{
|
|||||||
$result = array();
|
$result = array();
|
||||||
|
|
||||||
foreach($ids as $row){
|
foreach($ids as $row){
|
||||||
$result[] = $this->proxyGetEmployeeDataById($row['id']);
|
$currentEmployee = $this->proxyGetEmployeeDataById($row['id']);
|
||||||
|
|
||||||
|
$result[] = array(
|
||||||
|
'fullName' => $currentEmployee['firstName']." ".
|
||||||
|
$currentEmployee['middleName']." ".
|
||||||
|
$currentEmployee['lastName'],
|
||||||
|
'code' => $currentEmployee['code']
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Takes an array of all active employees and filters them by a string, returning
|
||||||
|
* all sub arrays that contain such string
|
||||||
|
*
|
||||||
|
* @param $partialName string
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function findEmployeeByFullName($partialName){
|
||||||
|
$fullList = $this->listAllActiveEmployees();
|
||||||
|
|
||||||
|
$pattern = '/'.$partialName.'/';
|
||||||
|
|
||||||
|
$matches = array_filter($fullList, function($a) use($pattern) {
|
||||||
|
return preg_grep($pattern, $a);
|
||||||
|
});
|
||||||
|
|
||||||
|
return $matches;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $idEmployee integer
|
||||||
|
* @param $date date
|
||||||
|
* @return integer
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function findIdPaymentPerDayByEmployeeAndDate($idEmployee, $date){
|
||||||
|
$this->asserts->isNotEmpty($idEmployee, "The code can't be empty.");
|
||||||
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
|
||||||
|
$this->asserts->isNotEmpty($date, "The code can't be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($date, "The date can't be in the future.");
|
||||||
|
|
||||||
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
|
COALESCE((SELECT
|
||||||
|
id
|
||||||
|
FROM
|
||||||
|
paymentsPerEmployeePerDay
|
||||||
|
WHERE
|
||||||
|
date = :date AND idEmployee = :idEmployee),
|
||||||
|
0) AS id;
|
||||||
|
");
|
||||||
|
|
||||||
|
$stmt->execute(array(':date' => $date, ':idEmployee' => $idEmployee));
|
||||||
|
$results = $stmt->fetchAll();
|
||||||
|
if(!$results){
|
||||||
|
throw new Exception("The registry of the worked day could not be found.");
|
||||||
|
}
|
||||||
|
$stmt = null;
|
||||||
|
|
||||||
|
return $results[0]['id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper to determine if the date has already been saved as a worked day for
|
||||||
|
* an employee, so long as it's currently active in the database
|
||||||
|
*
|
||||||
|
* @param $idEmployee integer
|
||||||
|
* @param $date date
|
||||||
|
* @return integer
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function checkDateNotUsedWorkDayPerEmployee($idEmployee, $date){
|
||||||
|
$this->asserts->isNotEmpty($idEmployee, "The code can't be empty.");
|
||||||
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
|
||||||
|
$this->asserts->isNotEmpty($date, "The code can't be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($date, "The date can't be in the future.");
|
||||||
|
|
||||||
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
|
COALESCE((SELECT
|
||||||
|
COUNT(*)
|
||||||
|
FROM
|
||||||
|
paymentsPerEmployeePerDay
|
||||||
|
WHERE
|
||||||
|
date = :date AND idEmployee = :idEmployee
|
||||||
|
AND status = 'ACTIVE'),
|
||||||
|
0) AS timesDateFound");
|
||||||
|
|
||||||
|
$stmt->execute(array(':date' => $date, ':idEmployee' => $idEmployee));
|
||||||
|
$results = $stmt->fetchAll();
|
||||||
|
if(!$results){
|
||||||
|
throw new Exception('Unable to find the date of the worked days.');
|
||||||
|
}
|
||||||
|
$stmt = null;
|
||||||
|
|
||||||
|
return $results[0]['timesDateFound'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Saves the new worked day for the employee
|
||||||
|
*
|
||||||
|
* @param $idEmployee integer
|
||||||
|
* @param $date date
|
||||||
|
* @param $baseAmount double
|
||||||
|
* @param $bonusTime double
|
||||||
|
* @param $deliveries double
|
||||||
|
* @return integer
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function saveWorkedDay($idEmployee, $date, $baseAmount, $bonusTime, $deliveries){
|
||||||
|
$this->asserts->isNotEmpty($idEmployee, "The idEmployee can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($date, "The date can't be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($date, "The date can't be in the future.");
|
||||||
|
$this->asserts->isNotEmpty($baseAmount, "The base payment per day can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($bonusTime, "The bonus per worked hours can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($deliveries, "The payment for deliveries can't be empty.");
|
||||||
|
|
||||||
|
try {
|
||||||
|
$stmt = $this->pdo->prepare("INSERT INTO paymentsPerEmployeePerDay
|
||||||
|
(idEmployee, date, baseAmount, bonusTime, deliveries)
|
||||||
|
VALUES (:idEmployee, :date, :baseAmount, :bonusTime, :deliveries)");
|
||||||
|
$this->pdo->beginTransaction();
|
||||||
|
$stmt->execute(array(':idEmployee' => $idEmployee, ':date' => $date, ':baseAmount' => $baseAmount,
|
||||||
|
':bonusTime' => $bonusTime, ':deliveries' => $deliveries));
|
||||||
|
$id = $this->pdo->lastInsertId();
|
||||||
|
$this->pdo->commit();
|
||||||
|
|
||||||
|
return $id;
|
||||||
|
|
||||||
|
$stmt = null;
|
||||||
|
} catch( PDOExecption $e ) {
|
||||||
|
$this->pdo->rollback();
|
||||||
|
throw new Exception('There was an error while trying to save the worked day.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Changes the status in the detail table for the registry of worked days so
|
||||||
|
* that it behaves as if deleted
|
||||||
|
* @param $idEmployee
|
||||||
|
* @param $date
|
||||||
|
*/
|
||||||
|
function dissablePaymentPerDayDetailsByEmployeeAndDate($idEmployee, $date){
|
||||||
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
$this->asserts->isNotEmpty($date, "The worked date cannot be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($date, "The date can't be in the future.");
|
||||||
|
|
||||||
|
try {
|
||||||
|
$stmt = $this->pdo->prepare("UPDATE paymentsPerEmployeePerDayDetail a
|
||||||
|
INNER JOIN
|
||||||
|
paymentsPerEmployeePerDay b ON b.id = a.idPaymentPerEmployeePerDay
|
||||||
|
SET
|
||||||
|
a.status = 'INACTIVE'
|
||||||
|
WHERE
|
||||||
|
b.date = :date AND b.idEmployee = :idEmployee");
|
||||||
|
$this->pdo->beginTransaction();
|
||||||
|
$stmt->execute(array(':date' => $date, ':idEmployee' => $idEmployee));
|
||||||
|
$this->pdo->commit();
|
||||||
|
|
||||||
|
$stmt = null;
|
||||||
|
} catch( PDOExecption $e ) {
|
||||||
|
$this->pdo->rollback();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $id integer - references paymentsPerEmployeePerDay
|
||||||
|
* @param $baseAmount double
|
||||||
|
* @param $bonusTime double
|
||||||
|
* @param $deliveries double
|
||||||
|
*/
|
||||||
|
function updateWorkedDayPayments($id, $baseAmount, $bonusTime, $deliveries){
|
||||||
|
$this->asserts->higherThanZero($id, "id payment must be higher than 0");
|
||||||
|
$this->asserts->higherThanZero($baseAmount, "baseAmount must be higher than 0");
|
||||||
|
$this->asserts->higherThanZero($bonusTime, "bonusTime must be higher than 0");
|
||||||
|
$this->asserts->higherThanZero($deliveries, "deliveries must be higher than 0");
|
||||||
|
|
||||||
|
try {
|
||||||
|
$stmt = $this->pdo->prepare("UPDATE paymentsPerEmployeePerDay
|
||||||
|
SET
|
||||||
|
baseAmount = :baseAmount,
|
||||||
|
bonusTime = :bonusTime,
|
||||||
|
deliveries = :deliveries
|
||||||
|
WHERE
|
||||||
|
id = :id");
|
||||||
|
$this->pdo->beginTransaction();
|
||||||
|
$stmt->execute(array(':baseAmount' => $baseAmount, ':bonusTime' => $bonusTime, ':deliveries' => $deliveries,
|
||||||
|
':id' => $id));
|
||||||
|
$this->pdo->commit();
|
||||||
|
|
||||||
|
$stmt = null;
|
||||||
|
} catch( PDOExecption $e ) {
|
||||||
|
$this->pdo->rollback();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Takes the data from the front end for the work day, this coulld be
|
||||||
|
* for an update or a creation of a new registry
|
||||||
|
*
|
||||||
|
* The function will take the request body, validate it and pass the
|
||||||
|
* processed data back to the wrapper method
|
||||||
|
*
|
||||||
|
* @param $requestData object
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function validateDataForStorageWorkDay($requestData){
|
||||||
|
$code = $requestData['code'];
|
||||||
|
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
||||||
|
|
||||||
|
$idEmployee = $this->getIdEmployeeByCode($code);
|
||||||
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
|
||||||
|
$idEmployeeType = $this->getIdEmployeeTypeByCode($code);
|
||||||
|
$this->asserts->higherThanZero($idEmployeeType, "idEmployeeType must be higher than 0");
|
||||||
|
|
||||||
|
$idEmployeeTypePerformed = $requestData['idEmployeeTypePerformed'];
|
||||||
|
$this->asserts->isNotEmpty($idEmployeeTypePerformed, "The performed rol must be provided.");
|
||||||
|
$this->asserts->higherThanZero($idEmployeeTypePerformed, "idEmployeeTypePerformed must be higher than 0");
|
||||||
|
|
||||||
|
$deliveries = $requestData['deliveries'];
|
||||||
|
$this->asserts->isNotEmpty($deliveries, "The number of deliveries cannot be empty or 0.");
|
||||||
|
|
||||||
|
$date = $requestData['date'];
|
||||||
|
$this->asserts->isNotEmpty($date, "The worked date cannot be empty.");
|
||||||
|
$this->asserts->dateIsNotInTheFuture($date, "The date can't be in the future.");
|
||||||
|
|
||||||
|
// The emplpoyee can't take that rol
|
||||||
|
if($idEmployeeType != 3 and $idEmployeeType != $idEmployeeTypePerformed){
|
||||||
|
throw new Exception("The performed rol can't be done by this type of employee.");
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we're working on a different month
|
||||||
|
$this->asserts->datesHaveSameMonth($date, date('Y-m-d'), "Work days can only be registered within the same month.");
|
||||||
|
|
||||||
|
$baseAmountPaid = $this->settings['hoursPerWorkDay'] * $this->settings['paymentPerHour'];
|
||||||
|
|
||||||
|
// Getting setting data based on employee type that was performed
|
||||||
|
switch ($idEmployeeTypePerformed) {
|
||||||
|
case 1:
|
||||||
|
$perHourBonus = $this->settings['perHourBonusDriver'];
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
$perHourBonus = $this->settings['perHourBonusLoader'];
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
$perHourBonus = $this->settings['perHourBonusAux'];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
$bonusTime = $perHourBonus * $this->settings['hoursPerWorkDay'];
|
||||||
|
$bonusDeliveries = $deliveries * $this->settings['bonusPerDelivery'];
|
||||||
|
|
||||||
|
$contractType = $this->getContractTypeByEmployee($idEmployee);
|
||||||
|
|
||||||
|
$result = array(
|
||||||
|
'idEmployee' => (int)$idEmployee,
|
||||||
|
'date' => $date,
|
||||||
|
'baseAmountPaid' => $baseAmountPaid,
|
||||||
|
'bonusTime' => $bonusTime,
|
||||||
|
'bonusDeliveries' => $bonusDeliveries,
|
||||||
|
'contractType' => $contractType,
|
||||||
|
'idEmployeeType' => (int)$idEmployeeType,
|
||||||
|
'idEmployeeTypePerformed' => (int)$idEmployeeTypePerformed,
|
||||||
|
'hoursPerWorkDay' => $this->settings['hoursPerWorkDay'],
|
||||||
|
'paymentPerHour' => $this->settings['paymentPerHour'],
|
||||||
|
'perHourBonus' => $perHourBonus,
|
||||||
|
'deliveries' => $deliveries,
|
||||||
|
'bonusPerDelivery' => $this->settings['bonusPerDelivery']
|
||||||
|
);
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wrapper function to store a new day that has been worked by an employee
|
||||||
|
*
|
||||||
|
* @param $requestData object
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function newWorkedDay($requestData){
|
||||||
|
$data = $this->validateDataForStorageWorkDay($requestData);
|
||||||
|
|
||||||
|
if($this->checkDateNotUsedWorkDayPerEmployee($data['idEmployee'], $data['date']) > 0){
|
||||||
|
throw new Exception("This date has already been saved as a worked day.");
|
||||||
|
}
|
||||||
|
|
||||||
|
$idPaymentPerEmployeePerDay = $this->saveWorkedDay($data['idEmployee'], $data['date'],
|
||||||
|
$data['baseAmountPaid'], $data['bonusTime'], $data['bonusDeliveries']);
|
||||||
|
|
||||||
|
$this->storeWorkDayDetails($idPaymentPerEmployeePerDay, $data['idEmployeeType'],
|
||||||
|
$data['idEmployeeTypePerformed'], $data['contractType'], $data['hoursPerWorkDay'],
|
||||||
|
$data['paymentPerHour'], $data['perHourBonus'], $data['deliveries'], $data['bonusPerDelivery']);
|
||||||
|
|
||||||
|
return array('status' => 'success', 'message' => 'The worked day has been saved.', 'data' => $requestData);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wrapper method to update a worked day for an employee
|
||||||
|
*
|
||||||
|
* @param $requestData object
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function updateWorkDay($requestData){
|
||||||
|
$data = $this->validateDataForStorageWorkDay($requestData);
|
||||||
|
|
||||||
|
$this->dissablePaymentPerDayDetailsByEmployeeAndDate($data['idEmployee'], $data['date']);
|
||||||
|
|
||||||
|
$idPaymentPerEmployeePerDay = $this->findIdPaymentPerDayByEmployeeAndDate($data['idEmployee'], $data['date']);
|
||||||
|
|
||||||
|
$this->updateWorkedDayPayments($idPaymentPerEmployeePerDay, $data['baseAmountPaid'], $data['bonusTime'], $data['bonusDeliveries']);
|
||||||
|
|
||||||
|
$this->storeWorkDayDetails($idPaymentPerEmployeePerDay, $data['idEmployeeType'],
|
||||||
|
$data['idEmployeeTypePerformed'], $data['contractType'], $data['hoursPerWorkDay'],
|
||||||
|
$data['paymentPerHour'], $data['perHourBonus'], $data['deliveries'], $data['bonusPerDelivery']);
|
||||||
|
|
||||||
|
return array('status' => 'success', 'message' => 'The worked day has been updated.', 'data' => $requestData);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of days the employee has worked for a given year and month only
|
||||||
|
* taking into accout the active ones
|
||||||
|
*
|
||||||
|
* @param $idEmployee integer
|
||||||
|
* @param $year integer
|
||||||
|
* @param $month integer
|
||||||
|
* @return integer
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function findNumberWorkedOfDaysByEmployeeAndDate($idEmployee, $year, $month){
|
||||||
|
$this->asserts->isNotEmpty($idEmployee, "The code can't be empty.");
|
||||||
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
$this->asserts->higherThanZero($year, "year must be higher than 0");
|
||||||
|
$this->asserts->higherThanZero($month, "month must be higher than 0");
|
||||||
|
|
||||||
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
|
COALESCE((SELECT
|
||||||
|
COUNT(*)
|
||||||
|
FROM
|
||||||
|
paymentsPerEmployeePerDay
|
||||||
|
WHERE
|
||||||
|
idEmployee = :idEmployee
|
||||||
|
AND YEAR(date) = :year
|
||||||
|
AND MONTH(date) = :month
|
||||||
|
AND status = 'ACTIVE'),
|
||||||
|
0) AS workedDays");
|
||||||
|
|
||||||
|
$stmt->execute(array(':idEmployee' => $idEmployee, ':year' => $year, ':month' => $month));
|
||||||
|
$results = $stmt->fetchAll();
|
||||||
|
if(!$results){
|
||||||
|
throw new Exception('Unable to determine the amount of worked days.');
|
||||||
|
}
|
||||||
|
$stmt = null;
|
||||||
|
|
||||||
|
return $results[0]['workedDays'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A list of the data contained from all the days the employee has worked
|
||||||
|
* for the given month and year
|
||||||
|
*
|
||||||
|
* @param $idEmployee integer
|
||||||
|
* @param $year integer
|
||||||
|
* @param $month integer
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function getDataWorkedDaysByEmployee($idEmployee, $year, $month){
|
||||||
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
|
baseAmount, bonusTime, deliveries
|
||||||
|
FROM
|
||||||
|
paymentsPerEmployeePerDay
|
||||||
|
WHERE
|
||||||
|
idEmployee = :idEmployee AND
|
||||||
|
YEAR(date) = :year
|
||||||
|
AND MONTH(date) = :month
|
||||||
|
AND status = 'ACTIVE'");
|
||||||
|
$stmt->execute(array(':idEmployee' => $idEmployee, ':year' => $year, ':month' => $month));
|
||||||
|
|
||||||
|
$results = $stmt->fetchAll();
|
||||||
|
|
||||||
|
if(!$results){
|
||||||
|
throw new Exception("No data of the worked days could be found.");
|
||||||
|
}
|
||||||
|
$stmt = null;
|
||||||
|
|
||||||
|
return $results;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $idEmployee integer
|
||||||
|
* @return string
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function getContractTypeByEmployee($idEmployee){
|
||||||
|
$this->asserts->isNotEmpty($idEmployee, "The code can't be empty.");
|
||||||
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
|
||||||
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
|
contractType
|
||||||
|
FROM
|
||||||
|
employees
|
||||||
|
WHERE
|
||||||
|
id = :idEmployee");
|
||||||
|
|
||||||
|
$stmt->execute(array(':idEmployee' => $idEmployee));
|
||||||
|
$results = $stmt->fetchAll();
|
||||||
|
if(!$results){
|
||||||
|
throw new Exception("The employee wasn't found.");
|
||||||
|
}
|
||||||
|
$stmt = null;
|
||||||
|
|
||||||
|
return $results[0]['contractType'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a backup of the information used to calculate the amount that the employee
|
||||||
|
* will be paid for the submitted day
|
||||||
|
*
|
||||||
|
* @param $idPaymentPerEmployeePerDay integer
|
||||||
|
* @param $idEmployeeType integer
|
||||||
|
* @param $idEmployeeTypePerformed integer
|
||||||
|
* @param $contractType string
|
||||||
|
* @param $hoursWorked double
|
||||||
|
* @param $paymentPerHour double
|
||||||
|
* @param $bonusPerHour double
|
||||||
|
* @param $deliveries integer
|
||||||
|
* @param $paymentPerDelivery double
|
||||||
|
* @return integer
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function storeWorkDayDetails($idPaymentPerEmployeePerDay, $idEmployeeType, $idEmployeeTypePerformed, $contractType, $hoursWorked,
|
||||||
|
$paymentPerHour, $bonusPerHour, $deliveries, $paymentPerDelivery){
|
||||||
|
$this->asserts->isNotEmpty($idPaymentPerEmployeePerDay, "The idPaymentPerEmployeePerDay can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($idEmployeeType, "The idEmployeeType can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($idEmployeeTypePerformed, "The idEmployeeTypePerformed can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($contractType, "The contractType can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($hoursWorked, "The hoursWorked can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($paymentPerHour, "The paymentPerHour can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($bonusPerHour, "The bonusPerHour can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($deliveries, "The deliveries can't be empty.");
|
||||||
|
$this->asserts->isNotEmpty($paymentPerDelivery, "The paymentPerDelivery can't be empty.");
|
||||||
|
|
||||||
|
try {
|
||||||
|
$stmt = $this->pdo->prepare("INSERT INTO paymentsPerEmployeePerDayDetail
|
||||||
|
(idPaymentPerEmployeePerDay, idEmployeeType, idEmployeeTypePerformed,
|
||||||
|
contractType, hoursWorked, paymentPerHour, bonusPerHour, deliveries, paymentPerDelivery)
|
||||||
|
VALUES
|
||||||
|
(:idPaymentPerEmployeePerDay, :idEmployeeType, :idEmployeeTypePerformed,
|
||||||
|
:contractType, :hoursWorked, :paymentPerHour, :bonusPerHour, :deliveries, :paymentPerDelivery)");
|
||||||
|
$this->pdo->beginTransaction();
|
||||||
|
$stmt->execute(array(':idPaymentPerEmployeePerDay' => $idPaymentPerEmployeePerDay,
|
||||||
|
':idEmployeeType' => $idEmployeeType,
|
||||||
|
':idEmployeeTypePerformed' => $idEmployeeTypePerformed,
|
||||||
|
':contractType' => $contractType,
|
||||||
|
':hoursWorked' => $hoursWorked,
|
||||||
|
':paymentPerHour' => $paymentPerHour,
|
||||||
|
':bonusPerHour' => $bonusPerHour,
|
||||||
|
':deliveries' => $deliveries,
|
||||||
|
':paymentPerDelivery' => $paymentPerDelivery)
|
||||||
|
);
|
||||||
|
$id = $this->pdo->lastInsertId();
|
||||||
|
$this->pdo->commit();
|
||||||
|
|
||||||
|
return $id;
|
||||||
|
|
||||||
|
$stmt = null;
|
||||||
|
} catch( PDOExecption $e ) {
|
||||||
|
$this->pdo->rollback();
|
||||||
|
throw new Exception("An error occured while saving the work day details.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $date date
|
||||||
|
* @param $code string
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function getDataWorkDayByDateAndCode($date, $code){
|
||||||
|
$idEmployee = $this->getIdEmployeeByCode($code);
|
||||||
|
$this->asserts->dateIsNotInTheFuture($date, "The date can't be in the future.");
|
||||||
|
|
||||||
|
$stmt = $this->pdo->prepare("SELECT
|
||||||
|
b.idPaymentPerEmployeePerDay,
|
||||||
|
b.idEmployeeType,
|
||||||
|
b.idEmployeeTypePerformed,
|
||||||
|
b.contractType,
|
||||||
|
b.hoursWorked,
|
||||||
|
b.paymentPerHour,
|
||||||
|
b.bonusPerHour,
|
||||||
|
b.deliveries,
|
||||||
|
b.paymentPerDelivery
|
||||||
|
FROM
|
||||||
|
paymentsPerEmployeePerDay a
|
||||||
|
INNER JOIN
|
||||||
|
paymentsPerEmployeePerDayDetail b ON b.idPaymentPerEmployeePerDay = a.id
|
||||||
|
WHERE
|
||||||
|
a.idEmployee = :idEmployee
|
||||||
|
AND a.date = :date
|
||||||
|
AND a.status = 'ACTIVE'
|
||||||
|
AND b.status = 'ACTIVE'
|
||||||
|
ORDER BY b.id DESC
|
||||||
|
LIMIT 1");
|
||||||
|
$stmt->execute(array(':idEmployee' => $idEmployee, ':date' => $date));
|
||||||
|
|
||||||
|
$results = $stmt->fetchAll();
|
||||||
|
|
||||||
|
if(!$results){
|
||||||
|
throw new Exception("No data of the work day was found.");
|
||||||
|
}
|
||||||
|
$stmt = null;
|
||||||
|
|
||||||
|
foreach($results as $row){
|
||||||
|
$data = array(
|
||||||
|
'idPaymentPerEmployeePerDay' => (int)$row['idPaymentPerEmployeePerDay'],
|
||||||
|
'idEmployeeType' => (int)$row['idEmployeeType'],
|
||||||
|
'idEmployeeTypePerformed' => (int)$row['idEmployeeTypePerformed'],
|
||||||
|
'contractType' => $row['contractType'],
|
||||||
|
'hoursWorked' => (int)$row['hoursWorked'],
|
||||||
|
'paymentPerHour' => (int)$row['paymentPerHour'],
|
||||||
|
'bonusPerHour' => (int)$row['bonusPerHour'],
|
||||||
|
'deliveries' => (int)$row['deliveries'],
|
||||||
|
'paymentPerDelivery' => (int)$row['paymentPerDelivery']
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets all the worked days for an employee and determines how much they're
|
||||||
|
* getting paid
|
||||||
|
*
|
||||||
|
* Will only work for the current month
|
||||||
|
*
|
||||||
|
* @param $code string
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function calculateSalaryByCode($code){
|
||||||
|
$this->asserts->isNotEmpty($code, "The code can't be empty.");
|
||||||
|
|
||||||
|
$idEmployee = $this->getIdEmployeeByCode($code);
|
||||||
|
$this->asserts->higherThanZero($idEmployee, "idEmployee must be higher than 0");
|
||||||
|
|
||||||
|
$salary = array(
|
||||||
|
'raw' => 0,
|
||||||
|
'taxes' => 0,
|
||||||
|
'real' => 0,
|
||||||
|
'vouchers' => 0
|
||||||
|
);
|
||||||
|
|
||||||
|
// No worked days found
|
||||||
|
if($this->findNumberWorkedOfDaysByEmployeeAndDate($idEmployee, date('Y'), date('m')) <= 0){
|
||||||
|
return $salary;
|
||||||
|
}
|
||||||
|
|
||||||
|
$dataWorkedDays = $this->getDataWorkedDaysByEmployee($idEmployee, date('Y'), date('m'));
|
||||||
|
|
||||||
|
$monthlyPayment = 0;
|
||||||
|
foreach($dataWorkedDays as $row){
|
||||||
|
$monthlyPayment = $monthlyPayment + $row['baseAmount'] + $row['bonusTime'] + $row['deliveries'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$salary['raw'] = $monthlyPayment;
|
||||||
|
|
||||||
|
if($monthlyPayment >= $this->settings['amountForExtraTaxes']){
|
||||||
|
$this->settings['taxesAddUp']
|
||||||
|
? $taxes = $monthlyPayment * ($this->settings['baseIsr'] + $this->settings['extraIsr'])
|
||||||
|
: $taxes = ($monthlyPayment * $this->settings['baseIsr']) + (($monthlyPayment * $this->settings['baseIsr']) * $this->settings['extraIsr']);
|
||||||
|
}else{
|
||||||
|
$taxes = $monthlyPayment * $this->settings['baseIsr'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$salary['taxes'] = $taxes;
|
||||||
|
$salary['real'] = $monthlyPayment - $taxes;
|
||||||
|
|
||||||
|
$contractType = $this->getContractTypeByEmployee($idEmployee);
|
||||||
|
|
||||||
|
if($contractType == 'INTERNO'){
|
||||||
|
$vouchers = $monthlyPayment * $this->settings['percentOfPaymentForVouchers'];
|
||||||
|
}elseif ($contractType == 'EXTERNO'){
|
||||||
|
$this->settings['vouchersForAllContractTypes']
|
||||||
|
? $vouchers = $monthlyPayment * $this->settings['percentOfPaymentForVouchers']
|
||||||
|
: $vouchers = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
$salary['vouchers'] = $vouchers;
|
||||||
|
|
||||||
|
return $salary;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -12,8 +12,6 @@ class SessionApplication{
|
|||||||
$this->cryptographyService = $cryptographyService;
|
$this->cryptographyService = $cryptographyService;
|
||||||
$this->pdo = $mysql;
|
$this->pdo = $mysql;
|
||||||
$this->asserts = $asserts;
|
$this->asserts = $asserts;
|
||||||
|
|
||||||
$this->databaseSelectQueryErrorMessage = 'There was an error inserting the record.';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -117,12 +115,12 @@ class SessionApplication{
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return array
|
||||||
*/
|
*/
|
||||||
function destroySession(){
|
function destroySession(){
|
||||||
session_destroy();
|
session_destroy();
|
||||||
|
|
||||||
return "Sucessfully logged out.";
|
return array('status' => 'success', 'message' => 'Successfully logged out.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
@@ -41,10 +41,12 @@ $app->get('/api/employee/types', function (Request $request, Response $response,
|
|||||||
->write(json_encode($this->employeeApplication->listEmployeeTypes()));
|
->write(json_encode($this->employeeApplication->listEmployeeTypes()));
|
||||||
});
|
});
|
||||||
|
|
||||||
$app->get('/api/employee/all', function (Request $request, Response $response, array $args) {
|
$app->get('/api/employee/find/{partialName}', function (Request $request, Response $response, array $args) {
|
||||||
|
$partialName = $args['partialName'];
|
||||||
|
|
||||||
return $response->withStatus(200)
|
return $response->withStatus(200)
|
||||||
->withHeader('Content-Type', 'application/json')
|
->withHeader('Content-Type', 'application/json')
|
||||||
->write(json_encode($this->employeeApplication->listAllActiveEmployees()));
|
->write(json_encode($this->employeeApplication->findEmployeeByFullName($partialName)));
|
||||||
});
|
});
|
||||||
|
|
||||||
$app->post('/api/employee', function ($request, $response) {
|
$app->post('/api/employee', function ($request, $response) {
|
||||||
@@ -93,4 +95,37 @@ $app->get('/api/employee/code/{code}', function (Request $request, Response $res
|
|||||||
return $response->withStatus(200)
|
return $response->withStatus(200)
|
||||||
->withHeader('Content-Type', 'application/json')
|
->withHeader('Content-Type', 'application/json')
|
||||||
->write(json_encode($this->employeeApplication->getEmployeeDataByCode($code)));
|
->write(json_encode($this->employeeApplication->getEmployeeDataByCode($code)));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$app->post('/api/employee/workday', function ($request, $response) {
|
||||||
|
$requestData = $request->getParsedBody();
|
||||||
|
|
||||||
|
return $response->withStatus(200)
|
||||||
|
->withHeader('Content-Type', 'application/json')
|
||||||
|
->write(json_encode($this->employeeApplication->newWorkedDay($requestData)));
|
||||||
|
});
|
||||||
|
|
||||||
|
$app->put('/api/employee/workday', function ($request, $response) {
|
||||||
|
$requestData = $request->getParsedBody();
|
||||||
|
|
||||||
|
return $response->withStatus(200)
|
||||||
|
->withHeader('Content-Type', 'application/json')
|
||||||
|
->write(json_encode($this->employeeApplication->updateWorkDay($requestData)));
|
||||||
|
});
|
||||||
|
|
||||||
|
$app->get('/api/employee/salary/{code}', function (Request $request, Response $response, array $args) {
|
||||||
|
$code = $args['code'];
|
||||||
|
|
||||||
|
return $response->withStatus(200)
|
||||||
|
->withHeader('Content-Type', 'application/json')
|
||||||
|
->write(json_encode($this->employeeApplication->calculateSalaryByCode($code)));
|
||||||
|
});
|
||||||
|
|
||||||
|
$app->get('/api/employee/salary/date/{date}/code/{code}', function (Request $request, Response $response, array $args) {
|
||||||
|
$date = $args['date'];
|
||||||
|
$code = $args['code'];
|
||||||
|
|
||||||
|
return $response->withStatus(200)
|
||||||
|
->withHeader('Content-Type', 'application/json')
|
||||||
|
->write(json_encode($this->employeeApplication->getDataWorkDayByDateAndCode($date, $code)));
|
||||||
|
});
|
||||||
|
|||||||
@@ -56,5 +56,55 @@ class Asserts{
|
|||||||
throw new Exception($errorMessage);
|
throw new Exception($errorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares a string against a regex to determine if it's an email
|
||||||
|
*
|
||||||
|
* @param $string string
|
||||||
|
* @param $errorMessage string
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function isEmail($string, $errorMessage){
|
||||||
|
if(!filter_var($string, FILTER_VALIDATE_EMAIL)){
|
||||||
|
throw new Exception($errorMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $string string
|
||||||
|
* @param $array array
|
||||||
|
* @param $errorMessage string
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function existInArray($string, $array, $errorMessage){
|
||||||
|
if(!in_array($string, $array)){
|
||||||
|
throw new Exception($errorMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares two dates to dertermine if they have the same month
|
||||||
|
*
|
||||||
|
* @param $firstDate date
|
||||||
|
* @param $secondDate date
|
||||||
|
* @param $errorMessage string
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function datesHaveSameMonth($firstDate, $secondDate, $errorMessage){
|
||||||
|
if (date("m",strtotime($firstDate)) != date("m",strtotime($secondDate))){
|
||||||
|
throw new Exception($errorMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $date
|
||||||
|
* @param $errorMessage
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
function dateIsNotInTheFuture($date, $errorMessage){
|
||||||
|
if ($date > date('Y-m-d')){
|
||||||
|
throw new Exception($errorMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -45,6 +45,19 @@ return [
|
|||||||
// Employee settings
|
// Employee settings
|
||||||
'employee' => [
|
'employee' => [
|
||||||
'codeLength' => '3',
|
'codeLength' => '3',
|
||||||
|
'contractTypes' => array('INTERNO', 'EXTERNO'),
|
||||||
|
'hoursPerWorkDay' => 8,
|
||||||
|
'paymentPerHour' => 30,
|
||||||
|
'bonusPerDelivery' => 5,
|
||||||
|
'perHourBonusDriver' => 10,
|
||||||
|
'perHourBonusLoader' => 5,
|
||||||
|
'perHourBonusAux' => 0,
|
||||||
|
'baseIsr' => .09,
|
||||||
|
'extraIsr' => .03,
|
||||||
|
'taxesAddUp' => true, // If true this will be total/(9 + 3) else they're subtracted separately
|
||||||
|
'amountForExtraTaxes' => 16000,
|
||||||
|
'vouchersForAllContractTypes' => false, // Outsourced personal won't get vouchers
|
||||||
|
'percentOfPaymentForVouchers' => .04,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ CREATE TABLE IF NOT EXISTS `persons` (
|
|||||||
`lastName` varbinary(500) comment 'The last name of the person',
|
`lastName` varbinary(500) comment 'The last name of the person',
|
||||||
`birthDate` DATE NOT NULL DEFAULT '1900-01-01' comment 'Date of birth of the person',
|
`birthDate` DATE NOT NULL DEFAULT '1900-01-01' comment 'Date of birth of the person',
|
||||||
`email` varbinary(500) NOT NULL comment 'The email adress of the person',
|
`email` varbinary(500) NOT NULL comment 'The email adress of the person',
|
||||||
`phone` INT(10) UNSIGNED NOT NULL comment 'The phone number of the person should be the mobile one but leaves room for home ones',
|
`phone` BIGINT(10) UNSIGNED NOT NULL comment 'The phone number of the person should be the mobile one but leaves room for home ones',
|
||||||
`status` ENUM('ACTIVE', 'INACTIVE') NOT NULL DEFAULT 'ACTIVE',
|
`status` ENUM('ACTIVE', 'INACTIVE') NOT NULL DEFAULT 'ACTIVE',
|
||||||
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment 'The date on which the registry was created',
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment 'The date on which the registry was created',
|
||||||
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP comment 'The date of the last time the row was modified',
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP comment 'The date of the last time the row was modified',
|
||||||
@@ -71,5 +71,44 @@ CREATE TABLE IF NOT EXISTS `employees` (
|
|||||||
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment 'The date on which the registry was created',
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment 'The date on which the registry was created',
|
||||||
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP comment 'The date of the last time the row was modified',
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP comment 'The date of the last time the row was modified',
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
|
INDEX `idx_contractType` (`contractType`),
|
||||||
UNIQUE (`code`)
|
UNIQUE (`code`)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS paymentsPerEmployeePerDay;
|
||||||
|
CREATE TABLE IF NOT EXISTS `paymentsPerEmployeePerDay` (
|
||||||
|
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
|
`idEmployee` INT UNSIGNED NOT NULL comment 'The employee to who this payment will be made',
|
||||||
|
`date` DATE NOT NULL DEFAULT '1900-01-01' comment 'Date of the worked day',
|
||||||
|
`baseAmount` DOUBLE(10,2) NOT NULL DEFAULT 0.0 comment 'Amount paid for the hours worked',
|
||||||
|
`bonusTime` DOUBLE(10,2) NOT NULL DEFAULT 0.0 comment 'Bonus paid for the hours worked',
|
||||||
|
`deliveries` DOUBLE(10,2) NOT NULL DEFAULT 0.0 comment 'Bonus for the number of deliveries',
|
||||||
|
`status` ENUM('ACTIVE', 'INACTIVE') NOT NULL DEFAULT 'ACTIVE',
|
||||||
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment 'The date on which the registry was created',
|
||||||
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP comment 'The date of the last time the row was modified',
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
FOREIGN KEY (idEmployee) REFERENCES employees(id),
|
||||||
|
UNIQUE (`idEmployee`, `date`, `status`)
|
||||||
|
);
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS paymentsPerEmployeePerDayDetail;
|
||||||
|
CREATE TABLE IF NOT EXISTS `paymentsPerEmployeePerDayDetail` (
|
||||||
|
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
|
`idPaymentPerEmployeePerDay` INT UNSIGNED NOT NULL comment 'References the payment for the work day',
|
||||||
|
`idEmployeeType` INT UNSIGNED NOT NULL comment 'The type of employee',
|
||||||
|
`idEmployeeTypePerformed` INT UNSIGNED NOT NULL comment 'The employee working for the day as',
|
||||||
|
`contractType` ENUM('INTERNO', 'EXTERNO') NOT NULL comment 'The type of contract',
|
||||||
|
`hoursWorked` DOUBLE(10,2) NOT NULL DEFAULT 0.0 comment 'Hours worked for the day',
|
||||||
|
`paymentPerHour` DOUBLE(10,2) NOT NULL DEFAULT 0.0 comment 'Payment per hour worked',
|
||||||
|
`bonusPerHour` DOUBLE(10,2) NOT NULL DEFAULT 0.0 comment 'Bonus payment per hour worked',
|
||||||
|
`deliveries` INT UNSIGNED NOT NULL DEFAULT 0 comment 'Total amount of deliveries for the day',
|
||||||
|
`paymentPerDelivery` DOUBLE(10,2) NOT NULL DEFAULT 0.0 comment 'Payment for each delivery done',
|
||||||
|
`status` ENUM('ACTIVE', 'INACTIVE') NOT NULL DEFAULT 'ACTIVE',
|
||||||
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment 'The date on which the registry was created',
|
||||||
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP comment 'The date of the last time the row was modified',
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
FOREIGN KEY (idPaymentPerEmployeePerDay) REFERENCES paymentsPerEmployeePerDay(id),
|
||||||
|
FOREIGN KEY (idEmployeeType) REFERENCES employeeType(id),
|
||||||
|
FOREIGN KEY (idEmployeeTypePerformed) REFERENCES employeeType(id),
|
||||||
|
FOREIGN KEY (contractType) REFERENCES employees(contractType)
|
||||||
|
);
|
||||||
@@ -6,7 +6,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "8085:80"
|
- "8085:80"
|
||||||
volumes:
|
volumes:
|
||||||
- api-payroll:/var/www/site
|
- ./volumes/apache-logs:/var/log/apache2
|
||||||
depends_on:
|
depends_on:
|
||||||
- mysql
|
- mysql
|
||||||
mysql:
|
mysql:
|
||||||
@@ -18,11 +18,11 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "3307:3307"
|
- "3307:3307"
|
||||||
volumes:
|
volumes:
|
||||||
- my-datavolume:/var/lib/mysql
|
- ./volumes/mysql-data:/var/lib/mysql
|
||||||
environment:
|
environment:
|
||||||
MYSQL_ROOT_PASSWORD: '12345678'
|
MYSQL_ROOT_PASSWORD: '12345678'
|
||||||
MYSQL_USER: 'sloth'
|
MYSQL_USER: 'sloth'
|
||||||
MYSQL_PASS: '12345678'
|
MYSQL_PASS: '12345678'
|
||||||
volumes:
|
volumes:
|
||||||
api-payroll:
|
mysql-data:
|
||||||
my-datavolume:
|
apache-logs:
|
||||||
|
|||||||
2
volumes/.gitignore
vendored
Normal file
2
volumes/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
mysql-data/
|
||||||
|
apache-logs/
|
||||||
1
volumes/README.md
Normal file
1
volumes/README.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Do not delete this directory, it'll contain the volumes created by the containers
|
||||||
Reference in New Issue
Block a user