- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
72 lines
3.5 KiB
JavaScript
72 lines
3.5 KiB
JavaScript
"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);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.CreateSupplierReviewDto = void 0;
|
|
const swagger_1 = require("@nestjs/swagger");
|
|
const class_validator_1 = require("class-validator");
|
|
class CreateSupplierReviewDto {
|
|
}
|
|
exports.CreateSupplierReviewDto = CreateSupplierReviewDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'ID del proveedor' }),
|
|
(0, class_validator_1.IsUUID)(),
|
|
__metadata("design:type", String)
|
|
], CreateSupplierReviewDto.prototype, "supplierId", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'ID de la orden (opcional)', required: false }),
|
|
(0, class_validator_1.IsUUID)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], CreateSupplierReviewDto.prototype, "orderId", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ example: 5, description: 'Rating general (1-5)' }),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_validator_1.Min)(1),
|
|
(0, class_validator_1.Max)(5),
|
|
__metadata("design:type", Number)
|
|
], CreateSupplierReviewDto.prototype, "rating", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'Titulo de la resena', required: false }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], CreateSupplierReviewDto.prototype, "title", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'Comentario', required: false }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], CreateSupplierReviewDto.prototype, "comment", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'Rating de calidad (1-5)', required: false }),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_validator_1.Min)(1),
|
|
(0, class_validator_1.Max)(5),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Number)
|
|
], CreateSupplierReviewDto.prototype, "ratingQuality", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'Rating de entrega (1-5)', required: false }),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_validator_1.Min)(1),
|
|
(0, class_validator_1.Max)(5),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Number)
|
|
], CreateSupplierReviewDto.prototype, "ratingDelivery", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'Rating de precio (1-5)', required: false }),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_validator_1.Min)(1),
|
|
(0, class_validator_1.Max)(5),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Number)
|
|
], CreateSupplierReviewDto.prototype, "ratingPrice", void 0);
|
|
//# sourceMappingURL=create-supplier-review.dto.js.map
|