fix(format) perbaikan format and clean console log

pull/27/head
Aswin Ashar Abdullah 2024-07-12 17:50:21 +07:00
parent daf325b1a0
commit 5c0886316c
2 changed files with 1 additions and 4 deletions

View File

@ -29,8 +29,6 @@ export class SeedDefaultFormula implements Seeder {
.into(SalesPriceFormulaModel)
.values([sales_formula, profit_formula])
.execute();
} catch (error) {
console.log(error, 'er');
}
} catch (error) {}
}
}

View File

@ -34,7 +34,6 @@ export class SeasonPeriodDataController {
@Post('/update-price')
async updatePrice(@Body() body: UpdateSeasonPriceDto): Promise<BatchResult> {
console.log('here');
return await this.orchestrator.updatePrice(body);
}