From b717f89fa8dd35e86d3c131d5ef6c53d41dbdea6 Mon Sep 17 00:00:00 2001 From: tkinaba Date: Thu, 19 Feb 2026 15:48:15 -0300 Subject: [PATCH] =?UTF-8?q?fix(flash):=20par=C3=A2metro=20de=20data=20da?= =?UTF-8?q?=20venda=20deve=20ser=20uma=20string?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/flash/flash.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flash/flash.module.ts b/src/flash/flash.module.ts index 4ccb99f..491ffcb 100644 --- a/src/flash/flash.module.ts +++ b/src/flash/flash.module.ts @@ -95,7 +95,7 @@ inner join mboard.tb_empresa_segmento tes and tes.codcanal = tvf.codcanal where 1=1 and tvf.vlrvendaacumulada > 0 - and tvf.dtavda = ${args.data_venda} + and tvf.dtavda = TO_DATE(${args.data_venda}, 'YYYY-MM-DD') group by rollup(canalapp, nomeempresaapp) order by grouping(canalapp) desc, grouping(nomeempresaapp) desc` };