Skip to content

Commit

Permalink
feat: add link
Browse files Browse the repository at this point in the history
  • Loading branch information
wwei-github committed Apr 11, 2024
1 parent b89b5fb commit 351d997
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/logos/logos.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,11 +325,11 @@ export class LogosService {

async findLogoToExcel() {
const data = await this.prismaService.logos.findMany({
where: {
id: {
gt: 948,
},
},
// where: {
// id: {
// gt: 948,
// },
// },
orderBy: {
id: 'asc',
},
Expand All @@ -350,11 +350,11 @@ export class LogosService {
'status',
]);
data
.filter((i) => i.fileName.length < 20)
// .filter((i) => i.fileName.length < 20)
.forEach((b) => {
worksheet.addRow([
b.logoName.logoName,
b.logoName.logoType,
b.logoName?.logoName,
b.logoName?.logoType,
b.fileName,
b.file,
b.authorAddress,
Expand Down

0 comments on commit 351d997

Please sign in to comment.