Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • b4576926aac6666cf7630f2be8511416b52b7f4c
  • main default protected
2 results

production_targets.controller.js

Blame
  • production_targets.controller.js 4.79 KiB
    "use strict";
    var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
        var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
        if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
        else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
        return c > 3 && r && Object.defineProperty(target, key, r), r;
    };
    var __metadata = (this && this.__metadata) || function (k, v) {
        if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
    };
    var __param = (this && this.__param) || function (paramIndex, decorator) {
        return function (target, key) { decorator(target, key, paramIndex); }
    };
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.ProductionTargetsController = void 0;
    const common_1 = require("@nestjs/common");
    const production_targets_service_1 = require("./production_targets.service");
    const create_production_target_dto_1 = require("./dto/create-production_target.dto");
    const create_production_target_dto_2 = require("./dto/create-production_target.dto");
    const update_production_target_dto_1 = require("./dto/update-production_target.dto");
    let ProductionTargetsController = class ProductionTargetsController {
        constructor(productionTargetsService) {
            this.productionTargetsService = productionTargetsService;
        }
        create(createProductionTargetDto) {
            return this.productionTargetsService.create(createProductionTargetDto);
        }
        async createMany(createManyDto) {
            return this.productionTargetsService.createMany(createManyDto);
        }
        async getByDate(date) {
            if (!date) {
                throw new common_1.BadRequestException('Date parameter is required');
            }
            return this.productionTargetsService.findByDate(date);
        }
        findAll() {
            return this.productionTargetsService.findAll();
        }
        findOne(id) {
            return this.productionTargetsService.findOne(+id);
        }
        update(id, updateProductionTargetDto) {
            return this.productionTargetsService.update(+id, updateProductionTargetDto);
        }
        remove(id) {
            return this.productionTargetsService.remove(+id);
        }
    };
    exports.ProductionTargetsController = ProductionTargetsController;
    __decorate([
        (0, common_1.Post)(),
        __param(0, (0, common_1.Body)()),
        __metadata("design:type", Function),
        __metadata("design:paramtypes", [create_production_target_dto_1.CreateProductionTargetDto]),
        __metadata("design:returntype", void 0)
    ], ProductionTargetsController.prototype, "create", null);
    __decorate([
        (0, common_1.Post)('bulk'),
        __param(0, (0, common_1.Body)()),
        __metadata("design:type", Function),
        __metadata("design:paramtypes", [create_production_target_dto_2.CreateManyProductionTargetsDto]),
        __metadata("design:returntype", Promise)
    ], ProductionTargetsController.prototype, "createMany", null);
    __decorate([
        (0, common_1.Get)('by-date'),
        __param(0, (0, common_1.Query)('date')),
        __metadata("design:type", Function),
        __metadata("design:paramtypes", [String]),
        __metadata("design:returntype", Promise)
    ], ProductionTargetsController.prototype, "getByDate", null);
    __decorate([
        (0, common_1.Get)(),
        __metadata("design:type", Function),
        __metadata("design:paramtypes", []),
        __metadata("design:returntype", void 0)
    ], ProductionTargetsController.prototype, "findAll", null);
    __decorate([
        (0, common_1.Get)(':id'),
        __param(0, (0, common_1.Param)('id')),
        __metadata("design:type", Function),
        __metadata("design:paramtypes", [String]),
        __metadata("design:returntype", void 0)
    ], ProductionTargetsController.prototype, "findOne", null);
    __decorate([
        (0, common_1.Patch)(':id'),
        __param(0, (0, common_1.Param)('id')),
        __param(1, (0, common_1.Body)()),
        __metadata("design:type", Function),
        __metadata("design:paramtypes", [String, update_production_target_dto_1.UpdateProductionTargetDto]),
        __metadata("design:returntype", void 0)
    ], ProductionTargetsController.prototype, "update", null);
    __decorate([
        (0, common_1.Delete)(':id'),
        __param(0, (0, common_1.Param)('id')),
        __metadata("design:type", Function),
        __metadata("design:paramtypes", [String]),
        __metadata("design:returntype", void 0)
    ], ProductionTargetsController.prototype, "remove", null);
    exports.ProductionTargetsController = ProductionTargetsController = __decorate([
        (0, common_1.Controller)('production-targets'),
        __metadata("design:paramtypes", [production_targets_service_1.ProductionTargetsService])
    ], ProductionTargetsController);
    //# sourceMappingURL=production_targets.controller.js.map