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) .into(SalesPriceFormulaModel)
.values([sales_formula, profit_formula]) .values([sales_formula, profit_formula])
.execute(); .execute();
} catch (error) { } catch (error) {}
console.log(error, 'er');
}
} }
} }

View File

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