fix(format) perbaikan format and clean console log
parent
daf325b1a0
commit
5c0886316c
|
@ -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');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue