refactor: remove console logs, update SaleInvoicePayload interface, and enhance GoodCategoriesService response mapping

This commit is contained in:
2026-02-17 20:16:36 +03:30
parent 55b96d4f79
commit c7cd7cd855
7 changed files with 32 additions and 23 deletions
-2
View File
@@ -52,7 +52,6 @@ export class GoodsService {
},
},
}
console.log(dataToCreate)
const good = await this.prisma.good.create({
data: dataToCreate,
@@ -62,7 +61,6 @@ export class GoodsService {
deleted_at: true,
},
})
console.log(good)
return ResponseMapper.create(good)
}