letsql=`select workinglog.workLog, workinglog.id as id,workinglog.projectId as projectId, project.name as projectName, workinglog.time, workinglog.dateKey, `;
letsql=`select workinglog.workLog, workinglog.id as id,workinglog.projectId as projectId, project.name as projectName, workinglog.time, workinglog.dateKey, `;
sql+=`workinglog.isOutside from workinglog INNER JOIN project on project.id = workinglog.projectId where userId = ${userId} and dateKey > "${startTime}" and dateKey < "${endTime}" `
sql+=`workinglog.isOutside from workinglog INNER JOIN project on project.id = workinglog.projectId where userId = ${userId} and dateKey > "${startTime}" and dateKey < "${endTime}" `
...
@@ -56,8 +68,6 @@ export async function findThisWeekWorkingLog(userId:number, startTime:string, en
...
@@ -56,8 +68,6 @@ export async function findThisWeekWorkingLog(userId:number, startTime:string, en