8144-devToTest_2448 #3216

Merged
alexm merged 256 commits from 8144-devToTest_2448 into test 2024-11-19 07:36:04 +00:00
1 changed files with 6 additions and 2 deletions
Showing only changes of commit 9ac54f463a - Show all commits

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,