fix: refs #7457 add with on select to reduce

This commit is contained in:
Pablo Natek 2024-11-14 15:48:11 +01:00
parent 0c20aea45f
commit 9ac54f463a
1 changed files with 6 additions and 2 deletions

View File

@ -23,7 +23,6 @@ module.exports = Self => {
arg: 'from',
type: 'date',
description: 'The from date',
required: true
}, {
arg: 'to',
type: 'date',
@ -153,7 +152,12 @@ module.exports = Self => {
CREATE OR REPLACE TEMPORARY TABLE tmp.filter
(INDEX (id))
ENGINE = MEMORY
SELECT o.id,
WITH wOrderTicket AS(
SELECT orderFk,
ticketFk
FROM orderTicket
GROUP BY orderFk
)SELECT o.id,
o.total,
o.date_send landed,
o.date_make created,