????
Current Path : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/dist/xtdt/service/ |
Current File : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/dist/xtdt/service/doanh-nghiep.service.js |
"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.DoanhNghiepService = void 0; const common_1 = require("@nestjs/common"); const crud_typeorm_1 = require("@rewiko/crud-typeorm"); const typeorm_1 = require("@nestjs/typeorm"); const typeorm_2 = require("typeorm"); const entity_1 = require("../entity"); let DoanhNghiepService = class DoanhNghiepService extends crud_typeorm_1.TypeOrmCrudService { constructor(entity) { super(entity.getRepository(entity_1.DoanhNghiep)); this.entity = entity; } async getOne(req) { const doanhNghiep = Object.assign(Object.assign({}, (await this.getOneOrFail(req, false))), { dauTu: [] }); doanhNghiep.dauTu = await this.entity.createQueryBuilder(entity_1.QuyHoachSDD, "quyHoach") .select("quyHoach.OBJECTID", "OBJECTID") .addSelect(["KyHieuO", "MucDichSDD"]) .addSelect("quyHoach.DienTich", "DienTich") .addSelect("CASE WHEN diem.OBJECTID IS NOT NULL THEN diem.TenDiem ELSE khu.TenKhu END", "Content") .innerJoin(entity_1.DNThueDat, "thue", "thue.QuyHoachID = quyHoach.QuyHoachID") .innerJoin(entity_1.DNThongTinThue, "tt", 'tt.ObjectID = thue.ThongTinThueID') .leftJoin(entity_1.DiemDauTu, "diem", "diem.DiemDauTuID = quyHoach.DiemDauTuID") .leftJoin(entity_1.RanhGioiKhu, 'khu', 'khu.MaKhu = quyHoach.MaKhu') .where("tt.DoanhNghiepID = :dnId", { dnId: doanhNghiep.objectId }) .getRawMany(); return doanhNghiep; } getThongKeDNTrongKCN() { return this.entity.query("EXEC spThongKeDN_TrongKCN"); } getThongKeDNTrongCCN() { return this.entity.query("EXEC spThongKeDN_TrongCCN"); } getThongKeDNTrongNgoai() { return this.entity.query("EXEC spThongKeDN_NgoaiKCNCCN"); } }; DoanhNghiepService = __decorate([ (0, common_1.Injectable)(), __param(0, (0, typeorm_1.InjectEntityManager)()), __metadata("design:paramtypes", [typeorm_2.EntityManager]) ], DoanhNghiepService); exports.DoanhNghiepService = DoanhNghiepService;