4873-zone.delivery-day #1248
|
@ -11,10 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
-
|
||||
|
||||
### Changed
|
||||
-
|
||||
- (General -> Inicio) Ahora permite recuperar la contraseña tanto con el correo de recuperación como el usuario
|
||||
|
||||
### Fixed
|
||||
-
|
||||
- (Monitor de tickets) Cuando ordenas por columna, ya no se queda deshabilitado el botón de 'Actualizar'
|
||||
- (Zone -> Días de entrega) Al hacer click en un día, muestra correctamente las zonas
|
||||
|
||||
## [2304.01] - 2023-02-09
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ module.exports = Self => {
|
|||
Object.assign(myOptions, options);
|
||||
|
||||
query = `
|
||||
vicent marked this conversation as resolved
Outdated
|
||||
SELECT *
|
||||
SELECT *
|
||||
vicent marked this conversation as resolved
Outdated
juan
commented
No nesario si se pasa directamente date a la función No nesario si se pasa directamente date a la función
|
||||
FROM (
|
||||
SELECT
|
||||
DISTINCT z.id,
|
||||
|
@ -40,18 +40,21 @@ module.exports = Self => {
|
|||
IFNULL(ze.hour, z.hour) as hour,
|
||||
IFNULL(ze.price, z.price) as price
|
||||
FROM vn.zone z
|
||||
JOIN agencyMode am ON am.id = z.agencyModeFk
|
||||
LEFT JOIN zoneEvent ze ON ze.zoneFk = z.id
|
||||
WHERE
|
||||
(
|
||||
dated = ?
|
||||
OR ? BETWEEN started AND ended
|
||||
OR INSTR(weekDays, SUBSTRING(DAYNAME(?), 1, 3) ) > 0
|
||||
)
|
||||
JOIN vn.agencyMode am ON am.id = z.agencyModeFk
|
||||
LEFT JOIN vn.zoneEvent ze ON ze.zoneFk = z.id
|
||||
WHERE ((
|
||||
ze.type = 'day'
|
||||
AND ze.dated = ?
|
||||
) OR (
|
||||
ze.type != 'day'
|
||||
vicent marked this conversation as resolved
Outdated
juan
commented
S'ha de tindre en compte tambe la columna S'ha de tindre en compte tambe la columna `type` de `zoneEvent`, mira el WHERE del procediment `vn.zone_getOptionsForLanding`
vicent
commented
Pero aixo ja ho fa:
pq depen del camps q tinga rellenats es un type o altre. Pero aixo ja ho fa:
```
WHERE
(
ze.dated = ?
OR ? BETWEEN ze.started AND ze.ended
OR ze.weekDays & (1 << WEEKDAY(?))
)
```
pq depen del camps q tinga rellenats es un type o altre.
vicent
commented
Vale res, he vist q pot tindre started, ended y weekDays rellenat. Pensava q eren exclusius. Vale res, he vist q pot tindre started, ended y weekDays rellenat. Pensava q eren exclusius.
|
||||
AND ze.weekDays & (1 << WEEKDAY(?))
|
||||
AND (ze.started IS NULL OR ? >= ze.started)
|
||||
AND (ze.ended IS NULL OR ? <= ze.ended)
|
||||
vicent marked this conversation as resolved
Outdated
juan
commented
Pasar la fecha directamnte y comparar así: Además hay que tener en cuenta el tipo de evento Todas las columnas de la consulta debería llevar el alias de la tabla. Pasar la fecha directamnte y comparar así: `ze.weekDays & (1 << WEEKDAY(?))`
Además hay que tener en cuenta el tipo de evento `type`.
Todas las columnas de la consulta debería llevar el alias de la tabla.
|
||||
))
|
||||
vicent marked this conversation as resolved
Outdated
juan
commented
N'hi ha una tabulació de mes en tota la consulta, punt i coma no fa falta al final si nomes es una consulta. N'hi ha una tabulació de mes en tota la consulta, punt i coma no fa falta al final si nomes es una consulta.
|
||||
AND z.id IN (?)
|
||||
ORDER BY type='day' DESC, type='range' DESC, type='indefinitely' DESC) z
|
||||
GROUP BY z.id`;
|
||||
|
||||
return Self.rawSql(query, [date, date, date, zoneIds], myOptions);
|
||||
return Self.rawSql(query, [date, date, date, date, zoneIds], myOptions);
|
||||
vicent marked this conversation as resolved
Outdated
juan
commented
Pasar Pasar `date` en lugar de `dayName`
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Esto es necesario? Si se define el argumento como tipo Date debería llegar una fecha