Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 19x 1x 2x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {
Controller,
Get,
Post,
Body,
Param,
Patch,
Delete,
UseGuards,
ParseIntPipe,
ValidationPipe,
Query,
Res,
BadRequestException,
} from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';
import { RolesGuard } from '../auth/roles.guard';
import { Roles } from '../auth/roles.decorator';
import { BarangService } from './barang.service';
import { CreateBarangDto } from './dto/create-barang.dto';
import { UpdateBarangDto } from './dto/update-barang.dto';
import { AddStokDto } from './dto/add-stok.dto';
import { JwtAuthGuard } from '../auth/jwt-auth.guard';
import { Response } from 'express';
@Controller('barang')
@UseGuards(AuthGuard('jwt'), RolesGuard)
export class BarangController {
constructor(private readonly barangService: BarangService) {}
@Roles('admin')
@Post()
create(
@Body(
new ValidationPipe({
whitelist: true,
forbidNonWhitelisted: true,
transform: true,
}),
)
dto: CreateBarangDto,
) {
return this.barangService.create(dto);
}
@Roles('admin')
@Get()
findAll(
@Query('q') q?: string,
@Query('status_aktif') status_aktif?: string,
@Query('stok_kritis') stok_kritis?: string,
) {
return this.barangService.findAll({
q,
status_aktif:
status_aktif === undefined ? undefined : status_aktif === 'true',
stok_kritis: stok_kritis === 'true',
});
}
@Roles('admin')
@Get('stok-kritis')
async getStokKritis() {
return this.barangService.getStokKritis();
}
@Roles('admin')
@Get(':id')
findOne(@Param('id', ParseIntPipe) id: number) {
return this.barangService.findOne(id);
}
@Roles('admin')
@Patch(':id')
update(@Param('id', ParseIntPipe) id: number, @Body() dto: UpdateBarangDto) {
return this.barangService.update(id, dto);
}
@Roles('admin')
@Delete(':id')
softDelete(@Param('id', ParseIntPipe) id: number) {
return this.barangService.softDelete(id);
}
@Roles('admin')
@Patch(':id/add-stok')
addStok(@Param('id', ParseIntPipe) id: number, @Body() dto: AddStokDto) {
return this.barangService.addStok(id, dto);
}
@UseGuards(JwtAuthGuard)
@Get('dashboard/notifikasi-stok-kritis')
async getNotifikasiStokKritis() {
return this.barangService.getBarangKritis();
}
@Get('laporan-penggunaan/pdf')
@UseGuards(JwtAuthGuard)
async generateLaporanPenggunaanPDF(
@Query('start') start: string,
@Query('end') end: string,
@Res() res: Response,
) {
Iif (
!/^\d{4}-\d{2}-\d{2}$/.test(start) ||
!/^\d{4}-\d{2}-\d{2}$/.test(end)
) {
throw new BadRequestException('Format tanggal harus YYYY-MM-DD');
}
Iif (new Date(start) > new Date(end)) {
throw new BadRequestException('Tanggal mulai harus <= tanggal akhir');
}
const pdfBuffer = await this.barangService.generateLaporanPenggunaanPDF(
start,
end,
);
res.set({
'Content-Type': 'application/pdf',
'Content-Disposition': `attachment; filename="laporan_penggunaan_${start}_${end}.pdf"`,
});
res.end(pdfBuffer);
}
// Hapus permanen (opsional, untuk admin superuser)
// @Roles('admin')
// @Delete(':id/permanent')
// remove(@Param('id', ParseIntPipe) id: number) {
// return this.barangService.remove(id);
// }
}
|