UNPKG

phx-node

Version:

PHX NODE

85 lines 4.14 kB
"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 __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var PHXSchoolMonthSystemService_1; Object.defineProperty(exports, "__esModule", { value: true }); exports.PHXSchoolMonthSystemService = void 0; const common_1 = require("@nestjs/common"); const query_1 = require("../../query/school-month/query"); const grpc_client_system_service_1 = require("../grpc-client/grpc-client-system.service"); let PHXSchoolMonthSystemService = PHXSchoolMonthSystemService_1 = class PHXSchoolMonthSystemService { constructor(grpcClientSystemService) { this.grpcClientSystemService = grpcClientSystemService; this.logger = new common_1.Logger(PHXSchoolMonthSystemService_1.name); } getListCurrentSchoolMonth(hostname) { return __awaiter(this, void 0, void 0, function* () { try { const res = yield this.grpcClientSystemService.query({ query: query_1.CURRENT_SCHOOL_MONTH_QUERY, hostname, }); return res ? res.school_month : []; } catch (error) { this.logger.error(error); return []; } }); } getCurrentSchoolMonthBySchoolId(hostname, schoolId) { return __awaiter(this, void 0, void 0, function* () { try { const res = yield this.grpcClientSystemService.query({ query: query_1.CURRENT_SCHOOL_MONTH_BY_SCHOOL_ID_QUERY, variables: { school_id: schoolId }, hostname, }); return res ? res.school_month : []; } catch (error) { this.logger.error(error); return []; } }); } getSchoolMonthItemByDate(hostname, date, schoolId) { return __awaiter(this, void 0, void 0, function* () { try { const res = yield this.grpcClientSystemService.query({ query: query_1.SCHOOL_MONTH_BY_DATE_QUERY, variables: { date, schoolId }, hostname, }); if (res) { return res.school_month; } } catch (error) { this.logger.error(error); } }); } }; exports.PHXSchoolMonthSystemService = PHXSchoolMonthSystemService; exports.PHXSchoolMonthSystemService = PHXSchoolMonthSystemService = PHXSchoolMonthSystemService_1 = __decorate([ (0, common_1.Injectable)(), __metadata("design:paramtypes", [grpc_client_system_service_1.PHXGrpcClientSystemService]) ], PHXSchoolMonthSystemService); //# sourceMappingURL=school-month-system.service.js.map