clean(comments): removed debugg comments
This commit is contained in:
parent
f9a247d9f1
commit
762677b7b1
|
|
@ -22,7 +22,6 @@ export class CsvExportController {
|
||||||
@Param('period_no') period_no: number,
|
@Param('period_no') period_no: number,
|
||||||
@Res() response: Response,
|
@Res() response: Response,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
console.log({ targo, solucom });
|
|
||||||
const rows = await this.csvService.collectTransaction(
|
const rows = await this.csvService.collectTransaction(
|
||||||
year,
|
year,
|
||||||
period_no,
|
period_no,
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@ export class CsvExportService {
|
||||||
filters: Filters,
|
filters: Filters,
|
||||||
// approved: boolean = true
|
// approved: boolean = true
|
||||||
): Promise<CsvRow[]> {
|
): Promise<CsvRow[]> {
|
||||||
console.log('data received: ', filters)
|
|
||||||
//fetch period
|
//fetch period
|
||||||
const period = await this.prisma.payPeriods.findFirst({
|
const period = await this.prisma.payPeriods.findFirst({
|
||||||
where: { pay_year: year, pay_period_no: period_no },
|
where: { pay_year: year, pay_period_no: period_no },
|
||||||
|
|
@ -276,7 +275,6 @@ export class CsvExportService {
|
||||||
const code_no = 271585;
|
const code_no = 271585;
|
||||||
out.push(code_no);
|
out.push(code_no);
|
||||||
}
|
}
|
||||||
console.log('company codes = ', out);
|
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user