Hacer modificaciones en aplicación php de reservas
Budget: €8 – €30 EUR
El proyecto es una App de reserva de citas desarrollado con php puro, y manejando Ajax.
Los cambios deben reflejarse en la interfaz de usuario.
Necesito cambiar el orden de 2 de las secciones.
La página de reservas tiene una serie de pasos o SECCIONES:
CATEGORÍAS: categorías del los servicios( peluquería, Spa, Masaje, etc.)
SERVICIOS: corte de pelo, manicura, masaje tailandés, etc.
COMPLEMENTOS: trabajos extra que son complementarios a los servicios (ahora esta sección es un <div> vacío)
PERSONAL: Juan el Peluquero, Manolo, Amparo Manicuras, etc.
Todas las secciones están ocultas, y se van mostrando, según se selecciona la sección anterior.
El usuario entra a realizar una reserva, primero se encuentra con una sección de CATEGORÍAS (rzvy_categories_html_content)
Cuando selecciona esta sección, se muestra la siguiente, SERVICIOS
Cuando selecciona esta sección, se muestra la siguiente, PERSONAL
Cuando selecciona esta sección, se muestra la siguiente, el calendario,
etc., etc.....
REQUERIMIENTO:
Las secciones debe mostrarse en el siguiente orden:
1º - CATEGORÍAS,
2º PERSONAL,
3º - SERVICIOS
4º - CALENDARIO
Debemos tener en cuenta los condicionales (if else), ya que alguna de estas secciones, pueden ocultarse desde el panel del administrador.
Esto se ve reflejado en el código.
Estas secciones provienen del archivo Ajax que aparece a continuación:
#. ~/includes/lib/rzvy_front_ajax.php
El archivo JS que maneja el código Ajax se muestra a continuación:
#. ~/includes/front/js/rzvy-front-jquery.js
Al cargar la página, el archivo JS realiza una llamada Ajax y carga la sección de servicio.
y <div> vacío para complementos
Al hacer clic en el servicio, si existen complementos, la nueva llamada Ajax carga los complementos en un div vacío cargado para agregarlos en la llamada anterior
Luego, agregue una solicitud para cargar un div vacío para el personal y así sucesivamente.
No solo tienes que cambiar el orden de apariencia, también tienes que modificar la funcionalidad.
Actualmente estamos cargando Categorías ---> Servicios ---> Complementos ---> Personal (si no hay complementos, entonces personal) ---> Calendario (si no hay personal, entonces calendario directo)
ES NECESARIO CAMBIARLO A:
Categorías ---> Personal ---> Servicios (vinculados con el personal) ---> Calendario, etc. según sus requisitos.
Bien, al estar condicionado, no encuentro la forma de cambiar el ordèn
Hay 4 archivos implicados y 2 archivos JavaScript.
Sé cuál son los archivos, pero no sé cuál son las condicionales que lo manejan
Creo que para alguien con conocimiento, sabrá perfectamente hacerlo rápidamente, mi presupuesto es muy reducido y solo cuento con 8$. Entiendo que es escaso, pero otro desarrollador me a engañado y perdi mi dinero en el proyecto.
Gracias
ES NECESARIO E IMPRESCINDIBLE, EXPLICAR DETALLADAMENTE LOS CAMBIOS REALIZADOS EN EL CÓDIGO
#. ~/onepage.php
#. ~/includes/lib/rzvy_front_ajax.php
#. ~/clases/class_slots.php
#. ~/includes/front/js/rzvy-front-jquery.js
#. ~/includes/frontal/css/rzvy-front-style.css
////////////////////////////////
The project is an appointment booking app developed with pure php, and handling Ajax.
The changes must be reflected in the user interface.
I need to change the order of 2 of the sections.
The booking page has a series of steps or SECTIONS:
CATEGORIES: categories of the services (hairdresser, Spa, Massage, etc.)
SERVICES: haircut, manicure, Thai massage, etc.
ADDITIONS: extra jobs that are complementary to the services (now this section is an empty <div>)
STAFF: Juan the Hairdresser, Manolo, Amparo Manicuras, etc.
All the sections are hidden, and are shown as the previous section is selected.
The user enters to make a reservation, first he finds a section of CATEGORIES (rzvy_categories_html_content)
When he selects this section, the following is displayed, SERVICES
When he selects this section, the following is displayed, PERSONAL
When he selects this section, the following is displayed, the calendar,
etc., etc.....
REQUIREMENT:
The sections must be displayed in the following order:
1st - CATEGORIES,
2nd PERSONAL,
3rd - SERVICES
4th - CALENDAR
We must take into account the conditionals (if else), since some of these sections can be hidden from the administrator panel.
This is reflected in the code.
These sections come from the Ajax file that appears below:
#. ~/includes/lib/rzvy_front_ajax.php
The JS file that handles the Ajax code is shown below:
#. ~/includes/front/js/rzvy-front-jquery.js
On page load, the JS file makes an Ajax call and loads the service section.
and empty <div> for plugins
On service click, if plugins exist, the new Ajax call loads the plugins into an empty div loaded to add them in the previous call
Then add a request to load an empty div for staff and so on.
You don't just have to change the order of appearance, you also have to modify the functionality.
Currently we are loading Categories ---> Services ---> Plugins ---> Staff (if no plugins then staff) ---> Calendar (if no staff then direct calendar)
NEED TO CHANGE IT TO:
Categories ---> Staff ---> Services (linked with staff) ---> Calendar etc as per your requirements.
Well, since it is conditional, I can't find a way to change the order
There are 4 files involved and 2 JavaScript files.
I know which files are involved, but I don't know which are the conditionals that manage it
I think that for someone with knowledge, they will know perfectly how to do it quickly, my budget is very small and I only have $8. I understand that it is scarce, but another developer has deceived me and I lost my money in the project.
Thanks
IT IS NECESSARY AND ESSENTIAL TO EXPLAIN IN DETAIL THE CHANGES MADE IN THE CODE
Los cambios deben reflejarse en la interfaz de usuario.
Necesito cambiar el orden de 2 de las secciones.
La página de reservas tiene una serie de pasos o SECCIONES:
CATEGORÍAS: categorías del los servicios( peluquería, Spa, Masaje, etc.)
SERVICIOS: corte de pelo, manicura, masaje tailandés, etc.
COMPLEMENTOS: trabajos extra que son complementarios a los servicios (ahora esta sección es un <div> vacío)
PERSONAL: Juan el Peluquero, Manolo, Amparo Manicuras, etc.
Todas las secciones están ocultas, y se van mostrando, según se selecciona la sección anterior.
El usuario entra a realizar una reserva, primero se encuentra con una sección de CATEGORÍAS (rzvy_categories_html_content)
Cuando selecciona esta sección, se muestra la siguiente, SERVICIOS
Cuando selecciona esta sección, se muestra la siguiente, PERSONAL
Cuando selecciona esta sección, se muestra la siguiente, el calendario,
etc., etc.....
REQUERIMIENTO:
Las secciones debe mostrarse en el siguiente orden:
1º - CATEGORÍAS,
2º PERSONAL,
3º - SERVICIOS
4º - CALENDARIO
Debemos tener en cuenta los condicionales (if else), ya que alguna de estas secciones, pueden ocultarse desde el panel del administrador.
Esto se ve reflejado en el código.
Estas secciones provienen del archivo Ajax que aparece a continuación:
#. ~/includes/lib/rzvy_front_ajax.php
El archivo JS que maneja el código Ajax se muestra a continuación:
#. ~/includes/front/js/rzvy-front-jquery.js
Al cargar la página, el archivo JS realiza una llamada Ajax y carga la sección de servicio.
y <div> vacío para complementos
Al hacer clic en el servicio, si existen complementos, la nueva llamada Ajax carga los complementos en un div vacío cargado para agregarlos en la llamada anterior
Luego, agregue una solicitud para cargar un div vacío para el personal y así sucesivamente.
No solo tienes que cambiar el orden de apariencia, también tienes que modificar la funcionalidad.
Actualmente estamos cargando Categorías ---> Servicios ---> Complementos ---> Personal (si no hay complementos, entonces personal) ---> Calendario (si no hay personal, entonces calendario directo)
ES NECESARIO CAMBIARLO A:
Categorías ---> Personal ---> Servicios (vinculados con el personal) ---> Calendario, etc. según sus requisitos.
Bien, al estar condicionado, no encuentro la forma de cambiar el ordèn
Hay 4 archivos implicados y 2 archivos JavaScript.
Sé cuál son los archivos, pero no sé cuál son las condicionales que lo manejan
Creo que para alguien con conocimiento, sabrá perfectamente hacerlo rápidamente, mi presupuesto es muy reducido y solo cuento con 8$. Entiendo que es escaso, pero otro desarrollador me a engañado y perdi mi dinero en el proyecto.
Gracias
ES NECESARIO E IMPRESCINDIBLE, EXPLICAR DETALLADAMENTE LOS CAMBIOS REALIZADOS EN EL CÓDIGO
#. ~/onepage.php
#. ~/includes/lib/rzvy_front_ajax.php
#. ~/clases/class_slots.php
#. ~/includes/front/js/rzvy-front-jquery.js
#. ~/includes/frontal/css/rzvy-front-style.css
////////////////////////////////
The project is an appointment booking app developed with pure php, and handling Ajax.
The changes must be reflected in the user interface.
I need to change the order of 2 of the sections.
The booking page has a series of steps or SECTIONS:
CATEGORIES: categories of the services (hairdresser, Spa, Massage, etc.)
SERVICES: haircut, manicure, Thai massage, etc.
ADDITIONS: extra jobs that are complementary to the services (now this section is an empty <div>)
STAFF: Juan the Hairdresser, Manolo, Amparo Manicuras, etc.
All the sections are hidden, and are shown as the previous section is selected.
The user enters to make a reservation, first he finds a section of CATEGORIES (rzvy_categories_html_content)
When he selects this section, the following is displayed, SERVICES
When he selects this section, the following is displayed, PERSONAL
When he selects this section, the following is displayed, the calendar,
etc., etc.....
REQUIREMENT:
The sections must be displayed in the following order:
1st - CATEGORIES,
2nd PERSONAL,
3rd - SERVICES
4th - CALENDAR
We must take into account the conditionals (if else), since some of these sections can be hidden from the administrator panel.
This is reflected in the code.
These sections come from the Ajax file that appears below:
#. ~/includes/lib/rzvy_front_ajax.php
The JS file that handles the Ajax code is shown below:
#. ~/includes/front/js/rzvy-front-jquery.js
On page load, the JS file makes an Ajax call and loads the service section.
and empty <div> for plugins
On service click, if plugins exist, the new Ajax call loads the plugins into an empty div loaded to add them in the previous call
Then add a request to load an empty div for staff and so on.
You don't just have to change the order of appearance, you also have to modify the functionality.
Currently we are loading Categories ---> Services ---> Plugins ---> Staff (if no plugins then staff) ---> Calendar (if no staff then direct calendar)
NEED TO CHANGE IT TO:
Categories ---> Staff ---> Services (linked with staff) ---> Calendar etc as per your requirements.
Well, since it is conditional, I can't find a way to change the order
There are 4 files involved and 2 JavaScript files.
I know which files are involved, but I don't know which are the conditionals that manage it
I think that for someone with knowledge, they will know perfectly how to do it quickly, my budget is very small and I only have $8. I understand that it is scarce, but another developer has deceived me and I lost my money in the project.
Thanks
IT IS NECESSARY AND ESSENTIAL TO EXPLAIN IN DETAIL THE CHANGES MADE IN THE CODE