ng-pli-commons 1.0.135 → 1.0.137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/backoffice.commons.component.mjs +41 -0
- package/esm2022/lib/components/common.lists.component.mjs +177 -0
- package/esm2022/lib/components/configuration-token/configuration-token-subject.service.mjs +23 -0
- package/esm2022/lib/components/configuration-token/configuration-token.component.mjs +665 -0
- package/esm2022/lib/components/configuration-token/guarantee-token/guarantee-token.component.mjs +103 -0
- package/esm2022/lib/components/configuration-token/snapshot-token/snapshot-token.component.mjs +108 -0
- package/esm2022/lib/components/configuration.commons.component.mjs +41 -0
- package/esm2022/lib/components/dashboard.commons.component.mjs +85 -0
- package/esm2022/lib/components/dynamic-filter/dynamic-filter.component.mjs +131 -0
- package/esm2022/lib/components/excel-to-json/excel-to-json.component.mjs +54 -0
- package/esm2022/lib/components/frontoffice.commons.component.mjs +89 -0
- package/esm2022/lib/components/pdf-analyzer/pdf-analyzer.component.mjs +162 -0
- package/esm2022/lib/components/pdf-config/pdf-config.component.mjs +170 -0
- package/esm2022/lib/components/pdf-generator/pdf-generator.component.mjs +207 -0
- package/esm2022/lib/components/pdf-merge-visualizer/pdf-merge-visualizer.component.mjs +307 -0
- package/esm2022/lib/components/pdf-visualizer/pdf-visualizer.component.mjs +387 -0
- package/esm2022/lib/components/progress-bar/progress-bar.component.mjs +92 -0
- package/esm2022/lib/components/segmentation-tokens/segmentation-tokens.component.mjs +199 -0
- package/esm2022/lib/components/select-ppp/select-ppp.component.mjs +200 -0
- package/esm2022/lib/components/show-hide-columns/show-hide-columns-table.component.mjs +116 -0
- package/esm2022/lib/components/token/token.component.mjs +1047 -0
- package/esm2022/lib/components/tokens-calculator/tokens-calculator.component.mjs +128 -0
- package/esm2022/lib/directives/currency-colfuturo-formatter.directive.mjs +48 -0
- package/esm2022/lib/directives/currency-decimal-colfuturo-formatter.directive.mjs +35 -0
- package/esm2022/lib/ng-pli-commons.module.mjs +385 -0
- package/esm2022/lib/ng-pli-commons.service.mjs +14 -0
- package/esm2022/lib/pipes/currency-colfuturo.pipe.mjs +36 -0
- package/esm2022/lib/pipes/currency-decimal-colfuturo.pipe.mjs +39 -0
- package/esm2022/lib/pipes/currency-print-colfuturo.pipe.mjs +34 -0
- package/esm2022/lib/pipes/thousands.pipe.mjs +61 -0
- package/esm2022/lib/services/application-fill-percentage.service.mjs +30 -0
- package/esm2022/lib/services/application-pdf-form.service.mjs +27 -0
- package/esm2022/lib/services/application-tag.service.mjs +56 -0
- package/esm2022/lib/services/application.service.mjs +253 -0
- package/esm2022/lib/services/assign-task.service.mjs +30 -0
- package/esm2022/lib/services/authentication.service.mjs +133 -0
- package/esm2022/lib/services/blocked-beneficiary.service.mjs +42 -0
- package/esm2022/lib/services/budget-application.service.mjs +265 -0
- package/esm2022/lib/services/budget-setup.service.mjs +26 -0
- package/esm2022/lib/services/budget-simulation.service.mjs +65 -0
- package/esm2022/lib/services/budget.service.mjs +205 -0
- package/esm2022/lib/services/closure-wallet.service.mjs +39 -0
- package/esm2022/lib/services/cnf-correspondence-document-manager.service.mjs +39 -0
- package/esm2022/lib/services/codebtors.service.mjs +28 -0
- package/esm2022/lib/services/committee-assistant.service.mjs +55 -0
- package/esm2022/lib/services/committee-money.service.mjs +44 -0
- package/esm2022/lib/services/committee-pdf.service.mjs +27 -0
- package/esm2022/lib/services/committee-snapshot.service.mjs +60 -0
- package/esm2022/lib/services/common-info.service.mjs +51 -0
- package/esm2022/lib/services/common.service.mjs +285 -0
- package/esm2022/lib/services/configuration-document.service.mjs +297 -0
- package/esm2022/lib/services/configuration-minisite.service.mjs +26 -0
- package/esm2022/lib/services/configuration.service.mjs +53 -0
- package/esm2022/lib/services/correspondence-document-category.service.mjs +31 -0
- package/esm2022/lib/services/correspondence-manager.service.mjs +74 -0
- package/esm2022/lib/services/credit-score.service.mjs +48 -0
- package/esm2022/lib/services/credit-study.service.mjs +292 -0
- package/esm2022/lib/services/cube.service.mjs +27 -0
- package/esm2022/lib/services/data-form-history.service.mjs +25 -0
- package/esm2022/lib/services/data-form.service.mjs +176 -0
- package/esm2022/lib/services/data-letter-segmentation.service.mjs +64 -0
- package/esm2022/lib/services/document-analysis-auto.service.mjs +27 -0
- package/esm2022/lib/services/document-history.service.mjs +43 -0
- package/esm2022/lib/services/document-management.service.mjs +57 -0
- package/esm2022/lib/services/document-process.service.mjs +27 -0
- package/esm2022/lib/services/document-validation-attempt.service.mjs +32 -0
- package/esm2022/lib/services/document.service.mjs +144 -0
- package/esm2022/lib/services/documentary.type.service.mjs +69 -0
- package/esm2022/lib/services/email.service.mjs +30 -0
- package/esm2022/lib/services/evaluation.service.mjs +181 -0
- package/esm2022/lib/services/export-excel.service.mjs +32 -0
- package/esm2022/lib/services/file.service.mjs +153 -0
- package/esm2022/lib/services/form.service.mjs +112 -0
- package/esm2022/lib/services/gic-client-disbursement-metadata.service.mjs +31 -0
- package/esm2022/lib/services/gic-client.service.mjs +49 -0
- package/esm2022/lib/services/gic-cnf-bankvision-transaction.service.mjs +31 -0
- package/esm2022/lib/services/gic-cnf-closing-date.service.mjs +34 -0
- package/esm2022/lib/services/gic-cnf-maintenance.service.mjs +30 -0
- package/esm2022/lib/services/gic-collection.service.mjs +53 -0
- package/esm2022/lib/services/gic-disbursement.service.mjs +39 -0
- package/esm2022/lib/services/gic-extract.service.mjs +41 -0
- package/esm2022/lib/services/gic-log.service.mjs +41 -0
- package/esm2022/lib/services/gic-payment-application.service.mjs +35 -0
- package/esm2022/lib/services/gic-payment-plan-cube.service.mjs +27 -0
- package/esm2022/lib/services/gic-payment-plan.service.mjs +32 -0
- package/esm2022/lib/services/gic-trm.service.mjs +27 -0
- package/esm2022/lib/services/global.show.task.service.mjs +37 -0
- package/esm2022/lib/services/guarantee-document.service.mjs +52 -0
- package/esm2022/lib/services/guarantee-enrollment.service.mjs +37 -0
- package/esm2022/lib/services/guarantee.service.mjs +128 -0
- package/esm2022/lib/services/guarantees-summary-service.mjs +26 -0
- package/esm2022/lib/services/hash.service.mjs +36 -0
- package/esm2022/lib/services/import-data.service.mjs +27 -0
- package/esm2022/lib/services/import-excel-gic.service.mjs +53 -0
- package/esm2022/lib/services/initial-configuration-gic-parameters.service.mjs +51 -0
- package/esm2022/lib/services/initial-record.service.mjs +51 -0
- package/esm2022/lib/services/integration-ado.service.mjs +54 -0
- package/esm2022/lib/services/interaction-application-user.service.mjs +81 -0
- package/esm2022/lib/services/interest-adjustment.service.mjs +34 -0
- package/esm2022/lib/services/keys-assignation.service.mjs +127 -0
- package/esm2022/lib/services/legalization.service.mjs +150 -0
- package/esm2022/lib/services/letter-campaing.service.mjs +49 -0
- package/esm2022/lib/services/letter-task-mapping.service.mjs +40 -0
- package/esm2022/lib/services/log.service.mjs +41 -0
- package/esm2022/lib/services/maintenance.service.mjs +86 -0
- package/esm2022/lib/services/master-category.service.mjs +66 -0
- package/esm2022/lib/services/master-program.service.mjs +78 -0
- package/esm2022/lib/services/master-university.service.mjs +79 -0
- package/esm2022/lib/services/migration-plis.service.mjs +27 -0
- package/esm2022/lib/services/migration-survey-queue.service.mjs +24 -0
- package/esm2022/lib/services/openkm-document.service.mjs +27 -0
- package/esm2022/lib/services/page.service.mjs +38 -0
- package/esm2022/lib/services/partner-system.service.mjs +30 -0
- package/esm2022/lib/services/partner.service.mjs +34 -0
- package/esm2022/lib/services/pdf-analyzer.service.mjs +33 -0
- package/esm2022/lib/services/people-master.service.mjs +42 -0
- package/esm2022/lib/services/permission.service.mjs +29 -0
- package/esm2022/lib/services/pli-cnf-acuity-fields.service.mjs +34 -0
- package/esm2022/lib/services/pli-cnf-app-card-filter.service.mjs +40 -0
- package/esm2022/lib/services/pli-cnf-appointment-type.service.mjs +41 -0
- package/esm2022/lib/services/pli-cnf-budget-program-type.service.mjs +54 -0
- package/esm2022/lib/services/pli-cnf-budget.service.mjs +31 -0
- package/esm2022/lib/services/pli-cnf-cloning.service.mjs +27 -0
- package/esm2022/lib/services/pli-cnf-committee-pdf-config-table-config.service.mjs +47 -0
- package/esm2022/lib/services/pli-cnf-committee-pdf-gen-status.service.mjs +30 -0
- package/esm2022/lib/services/pli-cnf-committee-valpro-columns.service.mjs +42 -0
- package/esm2022/lib/services/pli-cnf-committee-visualization-mode.service.mjs +42 -0
- package/esm2022/lib/services/pli-cnf-committee.service.mjs +66 -0
- package/esm2022/lib/services/pli-cnf-config-minisite.service.mjs +90 -0
- package/esm2022/lib/services/pli-cnf-configuration-credit-study.service.mjs +41 -0
- package/esm2022/lib/services/pli-cnf-document-management.service.mjs +40 -0
- package/esm2022/lib/services/pli-cnf-dynamic-keys-assign.service.mjs +52 -0
- package/esm2022/lib/services/pli-cnf-evaluation-task-mailing.service.mjs +31 -0
- package/esm2022/lib/services/pli-cnf-evaluation-task-template.service.mjs +39 -0
- package/esm2022/lib/services/pli-cnf-evaluation-task.service.mjs +112 -0
- package/esm2022/lib/services/pli-cnf-evaluation-template.service.mjs +95 -0
- package/esm2022/lib/services/pli-cnf-form-edit.service.mjs +68 -0
- package/esm2022/lib/services/pli-cnf-form-multiaplicacion.service.mjs +46 -0
- package/esm2022/lib/services/pli-cnf-guarantee-documents-template.service.mjs +40 -0
- package/esm2022/lib/services/pli-cnf-guarantee-token.service.mjs +42 -0
- package/esm2022/lib/services/pli-cnf-header.service.mjs +39 -0
- package/esm2022/lib/services/pli-cnf-indicator.service.mjs +39 -0
- package/esm2022/lib/services/pli-cnf-information-system.service.mjs +24 -0
- package/esm2022/lib/services/pli-cnf-interaction.service.mjs +78 -0
- package/esm2022/lib/services/pli-cnf-letter-template-type.service.mjs +29 -0
- package/esm2022/lib/services/pli-cnf-letter-template.service.mjs +48 -0
- package/esm2022/lib/services/pli-cnf-look-and-feel.service.mjs +28 -0
- package/esm2022/lib/services/pli-cnf-mail.service.mjs +30 -0
- package/esm2022/lib/services/pli-cnf-menu-form.service.mjs +34 -0
- package/esm2022/lib/services/pli-cnf-migration-plis-field-budget.service.mjs +34 -0
- package/esm2022/lib/services/pli-cnf-migration-plis-field.service.mjs +47 -0
- package/esm2022/lib/services/pli-cnf-migration-status-plis.service.mjs +44 -0
- package/esm2022/lib/services/pli-cnf-page-section-form.service.mjs +66 -0
- package/esm2022/lib/services/pli-cnf-page-sub-process.service.mjs +25 -0
- package/esm2022/lib/services/pli-cnf-pdfs.service.mjs +31 -0
- package/esm2022/lib/services/pli-cnf-profile-form.service.mjs +40 -0
- package/esm2022/lib/services/pli-cnf-profile-user.service.mjs +49 -0
- package/esm2022/lib/services/pli-cnf-project-summary.service.mjs +39 -0
- package/esm2022/lib/services/pli-cnf-scenario.service.mjs +47 -0
- package/esm2022/lib/services/pli-cnf-segmentation.service.mjs +72 -0
- package/esm2022/lib/services/pli-cnf-snapshot-token.service.mjs +42 -0
- package/esm2022/lib/services/pli-cnf-status-flow-interaction.service.mjs +74 -0
- package/esm2022/lib/services/pli-cnf-status-flow.service.mjs +56 -0
- package/esm2022/lib/services/pli-cnf-support-document-category.service.mjs +47 -0
- package/esm2022/lib/services/pli-cnf-support-document.service.mjs +56 -0
- package/esm2022/lib/services/pli-cnf-survey-document.service.mjs +37 -0
- package/esm2022/lib/services/pli-cnf-survey-pdf.service.mjs +34 -0
- package/esm2022/lib/services/pli-cnf-survey.service.mjs +46 -0
- package/esm2022/lib/services/pli-cnf-task-group.service.mjs +33 -0
- package/esm2022/lib/services/pli-cnf-text-category.service.mjs +38 -0
- package/esm2022/lib/services/pli-cnf-text-option.service.mjs +39 -0
- package/esm2022/lib/services/pli-cnf-text.service.mjs +62 -0
- package/esm2022/lib/services/pli-cnf-type-text.service.mjs +45 -0
- package/esm2022/lib/services/pli-cnf-university-article.service.mjs +39 -0
- package/esm2022/lib/services/pli-cnf-user-calendar.service.mjs +36 -0
- package/esm2022/lib/services/pli-cnf-user-workspace.service.mjs +35 -0
- package/esm2022/lib/services/pli-cnf-valpro-keys.service.mjs +35 -0
- package/esm2022/lib/services/pli-cnf-workspace-segmentation.service.mjs +31 -0
- package/esm2022/lib/services/pli-message-type.service.mjs +40 -0
- package/esm2022/lib/services/pli-multiple-value-filter.service.mjs +39 -0
- package/esm2022/lib/services/pli-promocion-username.service.mjs +57 -0
- package/esm2022/lib/services/pli-seg-action-user.service.mjs +37 -0
- package/esm2022/lib/services/pli-segmentation.service.mjs +130 -0
- package/esm2022/lib/services/pli-tag-assignment.service.mjs +36 -0
- package/esm2022/lib/services/pli-tag.service.mjs +55 -0
- package/esm2022/lib/services/pli-user.service.mjs +51 -0
- package/esm2022/lib/services/plis-beneficiario.service.mjs +29 -0
- package/esm2022/lib/services/plis-estatus-change.service.mjs +30 -0
- package/esm2022/lib/services/post-selection.service.mjs +25 -0
- package/esm2022/lib/services/ppp.service.mjs +360 -0
- package/esm2022/lib/services/profile.service.mjs +60 -0
- package/esm2022/lib/services/progress-bar.service.mjs +40 -0
- package/esm2022/lib/services/promotion-score.service.mjs +44 -0
- package/esm2022/lib/services/registry-identifier.service.mjs +49 -0
- package/esm2022/lib/services/return-refund.service.mjs +53 -0
- package/esm2022/lib/services/segmentation-tokens.service.mjs +43 -0
- package/esm2022/lib/services/segmentation-user-service.service.mjs +94 -0
- package/esm2022/lib/services/segmentation.service.mjs +31 -0
- package/esm2022/lib/services/send-application.service.mjs +541 -0
- package/esm2022/lib/services/sesion-form.service.mjs +31 -0
- package/esm2022/lib/services/sesion.service.mjs +48 -0
- package/esm2022/lib/services/spinner.service.mjs +16 -0
- package/esm2022/lib/services/sponsorship-letter.service.mjs +68 -0
- package/esm2022/lib/services/status.service.mjs +104 -0
- package/esm2022/lib/services/summary-budget.service.mjs +24 -0
- package/esm2022/lib/services/survey-metadata.service.mjs +28 -0
- package/esm2022/lib/services/survey-queue.service.mjs +24 -0
- package/esm2022/lib/services/survey.service.mjs +52 -0
- package/esm2022/lib/services/tag-management.service.mjs +58 -0
- package/esm2022/lib/services/tasa.cambio.service.mjs +35 -0
- package/esm2022/lib/services/token-transformation.service.mjs +62 -0
- package/esm2022/lib/services/token.service.mjs +1477 -0
- package/esm2022/lib/services/university.service.mjs +50 -0
- package/esm2022/lib/services/upload-documents.service.mjs +60 -0
- package/esm2022/lib/services/user.service.mjs +28 -0
- package/esm2022/lib/services/visualization-committee.service.mjs +91 -0
- package/esm2022/lib/utils/custom-validator.mjs +95 -0
- package/esm2022/lib/utils/form-util.mjs +35 -0
- package/esm2022/lib/utils/formio-util.mjs +582 -0
- package/esm2022/lib/utils/version-commons.mjs +10 -0
- package/esm2022/ng-pli-commons.mjs +5 -0
- package/esm2022/public-api.mjs +226 -0
- package/esm2022/version.mjs +29 -0
- package/fesm2022/ng-pli-commons.mjs +657 -657
- package/fesm2022/ng-pli-commons.mjs.map +1 -1
- package/package.json +3 -1
|
@@ -49,10 +49,10 @@ import html2canvas from 'html2canvas';
|
|
|
49
49
|
|
|
50
50
|
class NgPliCommonsService {
|
|
51
51
|
constructor() { }
|
|
52
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
53
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
52
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NgPliCommonsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
53
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NgPliCommonsService, providedIn: 'root' }); }
|
|
54
54
|
}
|
|
55
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
55
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NgPliCommonsService, decorators: [{
|
|
56
56
|
type: Injectable,
|
|
57
57
|
args: [{
|
|
58
58
|
providedIn: 'root'
|
|
@@ -111,10 +111,10 @@ class TasaCambioService {
|
|
|
111
111
|
.set('monDestino', monDestino)
|
|
112
112
|
});
|
|
113
113
|
}
|
|
114
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
115
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TasaCambioService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
115
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TasaCambioService, providedIn: 'root' }); }
|
|
116
116
|
}
|
|
117
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TasaCambioService, decorators: [{
|
|
118
118
|
type: Injectable,
|
|
119
119
|
args: [{
|
|
120
120
|
providedIn: 'root'
|
|
@@ -389,10 +389,10 @@ class CommonService {
|
|
|
389
389
|
params
|
|
390
390
|
});
|
|
391
391
|
}
|
|
392
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
393
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
392
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommonService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: TasaCambioService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
393
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommonService, providedIn: 'root' }); }
|
|
394
394
|
}
|
|
395
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommonService, decorators: [{
|
|
396
396
|
type: Injectable,
|
|
397
397
|
args: [{
|
|
398
398
|
providedIn: 'root'
|
|
@@ -559,10 +559,10 @@ class CommonListsComponent {
|
|
|
559
559
|
get utcBogota() {
|
|
560
560
|
return DateUtil.UTC_AMERICA_BOGOTA;
|
|
561
561
|
}
|
|
562
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
563
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
562
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommonListsComponent, deps: [{ token: CommonService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
563
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: CommonListsComponent, selector: "app-administration", ngImport: i0, template: '', isInline: true }); }
|
|
564
564
|
}
|
|
565
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
565
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommonListsComponent, decorators: [{
|
|
566
566
|
type: Component,
|
|
567
567
|
args: [{
|
|
568
568
|
selector: 'app-administration',
|
|
@@ -1248,10 +1248,10 @@ class FormService {
|
|
|
1248
1248
|
.set('patCodigo', patCodigo.toString())
|
|
1249
1249
|
});
|
|
1250
1250
|
}
|
|
1251
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1252
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FormService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1252
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FormService, providedIn: 'root' }); }
|
|
1253
1253
|
}
|
|
1254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FormService, decorators: [{
|
|
1255
1255
|
type: Injectable,
|
|
1256
1256
|
args: [{
|
|
1257
1257
|
providedIn: 'root'
|
|
@@ -2714,10 +2714,10 @@ class TokenService {
|
|
|
2714
2714
|
.set('newPPP', newPPP.toString())
|
|
2715
2715
|
});
|
|
2716
2716
|
}
|
|
2717
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2718
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2717
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokenService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: FormService }, { token: i3.CurrencyPipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2718
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokenService, providedIn: 'root' }); }
|
|
2719
2719
|
}
|
|
2720
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2720
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokenService, decorators: [{
|
|
2721
2721
|
type: Injectable,
|
|
2722
2722
|
args: [{
|
|
2723
2723
|
providedIn: 'root'
|
|
@@ -3071,10 +3071,10 @@ class PppService {
|
|
|
3071
3071
|
};
|
|
3072
3072
|
return this.httpClient.post(this.environment.host.backend.plis + 'config/promocion/deleteBudgetByProm', object, this.headerJson);
|
|
3073
3073
|
}
|
|
3074
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3075
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3074
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PppService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3075
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PppService, providedIn: 'root' }); }
|
|
3076
3076
|
}
|
|
3077
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3077
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PppService, decorators: [{
|
|
3078
3078
|
type: Injectable,
|
|
3079
3079
|
args: [{
|
|
3080
3080
|
providedIn: 'root'
|
|
@@ -3103,10 +3103,10 @@ class HashService {
|
|
|
3103
3103
|
.set('idPatrocinadorPLIC', idPatrocinadorPLIC);
|
|
3104
3104
|
return this.httpClient.get(`${this.environment.host.backend.configuration}hash`, { params });
|
|
3105
3105
|
}
|
|
3106
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3107
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3106
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HashService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3107
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HashService, providedIn: 'root' }); }
|
|
3108
3108
|
}
|
|
3109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HashService, decorators: [{
|
|
3110
3110
|
type: Injectable,
|
|
3111
3111
|
args: [{
|
|
3112
3112
|
providedIn: 'root'
|
|
@@ -3229,10 +3229,10 @@ class AuthenticationService {
|
|
|
3229
3229
|
catch (error) { }
|
|
3230
3230
|
return logoutUrl;
|
|
3231
3231
|
}
|
|
3232
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3233
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AuthenticationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: HashService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3233
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AuthenticationService, providedIn: 'root' }); }
|
|
3234
3234
|
}
|
|
3235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AuthenticationService, decorators: [{
|
|
3236
3236
|
type: Injectable,
|
|
3237
3237
|
args: [{
|
|
3238
3238
|
providedIn: 'root'
|
|
@@ -3424,10 +3424,10 @@ class BudgetService {
|
|
|
3424
3424
|
_getListPresupuestoGlobalCategory(cpreCodigo) {
|
|
3425
3425
|
return this.httpClient.get(this.environment.host.backend.plis + 'config/presupuesto/getAllPresupuestoRubro', { params: new HttpParams().set('cpreCodigo', cpreCodigo.toString()) });
|
|
3426
3426
|
}
|
|
3427
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3428
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3427
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }, { token: i2.ToastrService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3428
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
|
3429
3429
|
}
|
|
3430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetService, decorators: [{
|
|
3431
3431
|
type: Injectable,
|
|
3432
3432
|
args: [{
|
|
3433
3433
|
providedIn: 'root'
|
|
@@ -3462,10 +3462,10 @@ class PliCnfSnapshotTokenServices {
|
|
|
3462
3462
|
delete(id) {
|
|
3463
3463
|
return this.httpClient.delete(`${this.environment.host.backend.configuration}snapshot-token/delete?id=${id}`);
|
|
3464
3464
|
}
|
|
3465
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3466
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSnapshotTokenServices, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3466
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSnapshotTokenServices, providedIn: 'root' }); }
|
|
3467
3467
|
}
|
|
3468
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSnapshotTokenServices, decorators: [{
|
|
3469
3469
|
type: Injectable,
|
|
3470
3470
|
args: [{
|
|
3471
3471
|
providedIn: 'root'
|
|
@@ -3753,10 +3753,10 @@ class ConfigurationDocumentService {
|
|
|
3753
3753
|
params: new HttpParams().set('promCodigo', promCodigo.toString())
|
|
3754
3754
|
});
|
|
3755
3755
|
}
|
|
3756
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3757
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3756
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationDocumentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3757
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationDocumentService, providedIn: 'root' }); }
|
|
3758
3758
|
}
|
|
3759
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3759
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationDocumentService, decorators: [{
|
|
3760
3760
|
type: Injectable,
|
|
3761
3761
|
args: [{
|
|
3762
3762
|
providedIn: 'root'
|
|
@@ -3860,10 +3860,10 @@ class PliCnfEvaluationTaskService {
|
|
|
3860
3860
|
saveAll(pliCnfEvaluationTask) {
|
|
3861
3861
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfEvaluationTask/saveAll', pliCnfEvaluationTask);
|
|
3862
3862
|
}
|
|
3863
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3864
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3863
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3864
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskService, providedIn: 'root' }); }
|
|
3865
3865
|
}
|
|
3866
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3866
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskService, decorators: [{
|
|
3867
3867
|
type: Injectable,
|
|
3868
3868
|
args: [{
|
|
3869
3869
|
providedIn: 'root'
|
|
@@ -3898,10 +3898,10 @@ class PliCnfGuaranteeTokenService {
|
|
|
3898
3898
|
params: new HttpParams().set('id', id.toString())
|
|
3899
3899
|
});
|
|
3900
3900
|
}
|
|
3901
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3902
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3901
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfGuaranteeTokenService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3902
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfGuaranteeTokenService, providedIn: 'root' }); }
|
|
3903
3903
|
}
|
|
3904
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3904
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfGuaranteeTokenService, decorators: [{
|
|
3905
3905
|
type: Injectable,
|
|
3906
3906
|
args: [{
|
|
3907
3907
|
providedIn: 'root'
|
|
@@ -3921,10 +3921,10 @@ class ConfigurationTokenSubjectService {
|
|
|
3921
3921
|
setSubjectConfigurationTokens(tokens) {
|
|
3922
3922
|
return this.subjectConfigurationToken.next(tokens);
|
|
3923
3923
|
}
|
|
3924
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3925
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3924
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationTokenSubjectService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3925
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationTokenSubjectService, providedIn: 'root' }); }
|
|
3926
3926
|
}
|
|
3927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationTokenSubjectService, decorators: [{
|
|
3928
3928
|
type: Injectable,
|
|
3929
3929
|
args: [{
|
|
3930
3930
|
providedIn: 'root',
|
|
@@ -4014,10 +4014,10 @@ class SnapshotTokenComponent extends CommonListsComponent {
|
|
|
4014
4014
|
}
|
|
4015
4015
|
return true;
|
|
4016
4016
|
}
|
|
4017
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4018
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: SnapshotTokenComponent, isStandalone: false, selector: "pli-snapshot-token", inputs: { promCodigo: "promCodigo" }, usesInheritance: true, ngImport: i0, template: "<h4 class=\"no-margin-top\">\r\n Tokens Snapshot\r\n</h4>\r\n<p-table [value]=\"tokens\" [responsive]=\"true\">\r\n <ng-template pTemplate=\"header\">\r\n <tr class=\"text-align-center\">\r\n <th class=\"text-align-center\" width=\"40%\">Nombre</th>\r\n <th class=\"text-align-center\">Formula</th>\r\n <th class=\"text-align-center\">Tipo</th>\r\n <th class=\"text-align-center\">Creado</th>\r\n <th class=\"text-align-center\">Modificado</th>\r\n <th class=\"text-align-center\">Acciones</th>\r\n </tr>\r\n </ng-template>\r\n <ng-template pTemplate=\"body\" let-token>\r\n <tr>\r\n <td>\r\n <button\r\n type=\"button\"\r\n (click)=\"copyMessage(labelSnapshot(token))\"\r\n style=\"margin-right: 8px;\"\r\n title=\"{{ labelSnapshot(token) }}\"\r\n >\r\n <span class=\"fa fa-clipboard\"></span>\r\n </button>\r\n {{ token.name }}\r\n </td>\r\n <td class=\"cut-line\">{{ token.formula }}</td>\r\n <td class=\"cut-line\">{{ token.type.name }}</td>\r\n <td>{{ token.createdAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n <td>{{ token.modifiedAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n <td>\r\n <div class=\"btn-group\" role=\"group\">\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-default\"\r\n (click)=\"initForm(token)\"\r\n pliAuthorityDirective\r\n [externalAllowed]=\"false\"\r\n >\r\n Editar\r\n </button>\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-default dropdown-toggle\"\r\n data-toggle=\"dropdown\"\r\n aria-haspopup=\"true\"\r\n aria-expanded=\"false\"\r\n >\r\n <span class=\"caret\"></span>\r\n </button>\r\n <ul class=\"dropdown-menu\">\r\n <li>\r\n <a\r\n href=\"Javascript:;\"\r\n (click)=\"delete(token)\"\r\n pliAuthorityDirective\r\n [authorities]=\"[p('ROLE_TOKENS_ELIMINAR')]\"\r\n [externalAllowed]=\"false\"\r\n >Eliminar</a\r\n >\r\n </li>\r\n </ul>\r\n </div>\r\n </td>\r\n </tr>\r\n </ng-template>\r\n</p-table>\r\n<div class=\"text-align-right\" style=\"padding: .75rem 1.25rem;\">\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-primary\"\r\n (click)=\"initForm(null)\"\r\n >\r\n Agregar nuevo\r\n </button>\r\n</div>\r\n\r\n<p-dialog\r\n header=\"Snapshot Token\"\r\n [(visible)]=\"showModal\"\r\n [modal]=\"true\"\r\n (onHide)=\"onCloseModal()\"\r\n [contentStyle]=\"{\r\n\t\twidth: '400px',\r\n\t\t'overflow-y': 'auto',\r\n\t\t'min-height': '500px',\r\n\t\t'max-height': '500px',\r\n\t\t'text-align': 'left'\r\n\t}\"\r\n height=\"500px\"\r\n width=\"400px\"\r\n dismissableMask=\"true\"\r\n>\r\n <form [formGroup]=\"frmToken\" (ngSubmit)=\"save()\" *ngIf=\"tokenSelected\">\r\n <div class=\"row\">\r\n <div class=\"col-md-12\">\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"name\" class=\"form-control-label\">Nombre</label>\r\n <input\r\n type=\"input\"\r\n class=\"form-control\"\r\n name=\"name\"\r\n id=\"name\"\r\n placeholder=\"Nombre\"\r\n formControlName=\"controlName\"\r\n [(ngModel)]=\"tokenSelected.name\"/>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlName, 'required')\">Nombre es requerido</small>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"type\" class=\"form-control-label\">Tipo</label>\r\n <select\r\n name=\"type\"\r\n id=\"type\"\r\n class=\"form-control\"\r\n formControlName=\"controlType\"\r\n [(ngModel)]=\"tokenSelected.type.id\">\r\n <option value=\"\">-- Seleccione opci\u00F3n</option>\r\n <option *ngFor=\"let type of types\" [value]=\"type.id\">{{ type.name }}</option>\r\n </select>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlType, 'required')\">Tipo de token requerido</small>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label class=\"form-control-label\">Llave:</label> \r\n <span style=\"font-weight: bold;\"> {{resolveKeyCalculatedToken()}}</span>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"formula\" class=\"form-control-label\"\r\n >Formula</label\r\n >\r\n <textarea\r\n cols=\"150\"\r\n rows=\"4\"\r\n class=\"form-control\"\r\n name=\"formula\"\r\n id=\"formula\"\r\n formControlName=\"controlFormula\"\r\n [(ngModel)]=\"tokenSelected.formula\"\r\n ></textarea>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlFormula, 'required')\"\r\n >F\u00F3rmula es requerida</small\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card-footer text-align-right\">\r\n <button type=\"button\" (click)=\"onCloseModal()\" class=\"btn btn-link\">\r\n Cancelar\r\n </button>\r\n <button\r\n type=\"submit\"\r\n class=\"btn btn-success\"\r\n >\r\n Guardar\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </form>\r\n</p-dialog>\r\n\r\n\r\n", dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i6.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i7.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "size", "showGridlines", "stripedRows", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "virtualRowHeight", "selectAll"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i8.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "maskStyle", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "closeButtonProps", "maximizeButtonProps", "visible", "style", "position", "role", "content", "contentTemplate", "footerTemplate", "closeIconTemplate", "maximizeIconTemplate", "minimizeIconTemplate", "headlessTemplate"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { kind: "directive", type: i9.AuthorityDirectiveDirective, selector: "[pliAuthorityDirective]", inputs: ["authorities", "patCodigo", "externalAllowed"] }, { kind: "pipe", type: i3.LowerCasePipe, name: "lowercase" }, { kind: "pipe", type: i3.DatePipe, name: "date" }] }); }
|
|
4017
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SnapshotTokenComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: CommonService }, { token: i2.ToastrService }, { token: PliCnfSnapshotTokenServices }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4018
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: SnapshotTokenComponent, selector: "pli-snapshot-token", inputs: { promCodigo: "promCodigo" }, usesInheritance: true, ngImport: i0, template: "<h4 class=\"no-margin-top\">\r\n Tokens Snapshot\r\n</h4>\r\n<p-table [value]=\"tokens\" [responsive]=\"true\">\r\n <ng-template pTemplate=\"header\">\r\n <tr class=\"text-align-center\">\r\n <th class=\"text-align-center\" width=\"40%\">Nombre</th>\r\n <th class=\"text-align-center\">Formula</th>\r\n <th class=\"text-align-center\">Tipo</th>\r\n <th class=\"text-align-center\">Creado</th>\r\n <th class=\"text-align-center\">Modificado</th>\r\n <th class=\"text-align-center\">Acciones</th>\r\n </tr>\r\n </ng-template>\r\n <ng-template pTemplate=\"body\" let-token>\r\n <tr>\r\n <td>\r\n <button\r\n type=\"button\"\r\n (click)=\"copyMessage(labelSnapshot(token))\"\r\n style=\"margin-right: 8px;\"\r\n title=\"{{ labelSnapshot(token) }}\"\r\n >\r\n <span class=\"fa fa-clipboard\"></span>\r\n </button>\r\n {{ token.name }}\r\n </td>\r\n <td class=\"cut-line\">{{ token.formula }}</td>\r\n <td class=\"cut-line\">{{ token.type.name }}</td>\r\n <td>{{ token.createdAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n <td>{{ token.modifiedAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n <td>\r\n <div class=\"btn-group\" role=\"group\">\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-default\"\r\n (click)=\"initForm(token)\"\r\n pliAuthorityDirective\r\n [externalAllowed]=\"false\"\r\n >\r\n Editar\r\n </button>\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-default dropdown-toggle\"\r\n data-toggle=\"dropdown\"\r\n aria-haspopup=\"true\"\r\n aria-expanded=\"false\"\r\n >\r\n <span class=\"caret\"></span>\r\n </button>\r\n <ul class=\"dropdown-menu\">\r\n <li>\r\n <a\r\n href=\"Javascript:;\"\r\n (click)=\"delete(token)\"\r\n pliAuthorityDirective\r\n [authorities]=\"[p('ROLE_TOKENS_ELIMINAR')]\"\r\n [externalAllowed]=\"false\"\r\n >Eliminar</a\r\n >\r\n </li>\r\n </ul>\r\n </div>\r\n </td>\r\n </tr>\r\n </ng-template>\r\n</p-table>\r\n<div class=\"text-align-right\" style=\"padding: .75rem 1.25rem;\">\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-primary\"\r\n (click)=\"initForm(null)\"\r\n >\r\n Agregar nuevo\r\n </button>\r\n</div>\r\n\r\n<p-dialog\r\n header=\"Snapshot Token\"\r\n [(visible)]=\"showModal\"\r\n [modal]=\"true\"\r\n (onHide)=\"onCloseModal()\"\r\n [contentStyle]=\"{\r\n\t\twidth: '400px',\r\n\t\t'overflow-y': 'auto',\r\n\t\t'min-height': '500px',\r\n\t\t'max-height': '500px',\r\n\t\t'text-align': 'left'\r\n\t}\"\r\n height=\"500px\"\r\n width=\"400px\"\r\n dismissableMask=\"true\"\r\n>\r\n <form [formGroup]=\"frmToken\" (ngSubmit)=\"save()\" *ngIf=\"tokenSelected\">\r\n <div class=\"row\">\r\n <div class=\"col-md-12\">\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"name\" class=\"form-control-label\">Nombre</label>\r\n <input\r\n type=\"input\"\r\n class=\"form-control\"\r\n name=\"name\"\r\n id=\"name\"\r\n placeholder=\"Nombre\"\r\n formControlName=\"controlName\"\r\n [(ngModel)]=\"tokenSelected.name\"/>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlName, 'required')\">Nombre es requerido</small>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"type\" class=\"form-control-label\">Tipo</label>\r\n <select\r\n name=\"type\"\r\n id=\"type\"\r\n class=\"form-control\"\r\n formControlName=\"controlType\"\r\n [(ngModel)]=\"tokenSelected.type.id\">\r\n <option value=\"\">-- Seleccione opci\u00F3n</option>\r\n <option *ngFor=\"let type of types\" [value]=\"type.id\">{{ type.name }}</option>\r\n </select>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlType, 'required')\">Tipo de token requerido</small>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label class=\"form-control-label\">Llave:</label> \r\n <span style=\"font-weight: bold;\"> {{resolveKeyCalculatedToken()}}</span>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"formula\" class=\"form-control-label\"\r\n >Formula</label\r\n >\r\n <textarea\r\n cols=\"150\"\r\n rows=\"4\"\r\n class=\"form-control\"\r\n name=\"formula\"\r\n id=\"formula\"\r\n formControlName=\"controlFormula\"\r\n [(ngModel)]=\"tokenSelected.formula\"\r\n ></textarea>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlFormula, 'required')\"\r\n >F\u00F3rmula es requerida</small\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card-footer text-align-right\">\r\n <button type=\"button\" (click)=\"onCloseModal()\" class=\"btn btn-link\">\r\n Cancelar\r\n </button>\r\n <button\r\n type=\"submit\"\r\n class=\"btn btn-success\"\r\n >\r\n Guardar\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </form>\r\n</p-dialog>\r\n\r\n\r\n", dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i6.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i7.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll", "virtualRowHeight"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i8.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "maskStyle", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { kind: "directive", type: i9.AuthorityDirectiveDirective, selector: "[pliAuthorityDirective]", inputs: ["authorities", "patCodigo", "externalAllowed"] }, { kind: "pipe", type: i3.LowerCasePipe, name: "lowercase" }, { kind: "pipe", type: i3.DatePipe, name: "date" }] }); }
|
|
4019
4019
|
}
|
|
4020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SnapshotTokenComponent, decorators: [{
|
|
4021
4021
|
type: Component,
|
|
4022
4022
|
args: [{ selector: 'pli-snapshot-token', standalone: false, template: "<h4 class=\"no-margin-top\">\r\n Tokens Snapshot\r\n</h4>\r\n<p-table [value]=\"tokens\" [responsive]=\"true\">\r\n <ng-template pTemplate=\"header\">\r\n <tr class=\"text-align-center\">\r\n <th class=\"text-align-center\" width=\"40%\">Nombre</th>\r\n <th class=\"text-align-center\">Formula</th>\r\n <th class=\"text-align-center\">Tipo</th>\r\n <th class=\"text-align-center\">Creado</th>\r\n <th class=\"text-align-center\">Modificado</th>\r\n <th class=\"text-align-center\">Acciones</th>\r\n </tr>\r\n </ng-template>\r\n <ng-template pTemplate=\"body\" let-token>\r\n <tr>\r\n <td>\r\n <button\r\n type=\"button\"\r\n (click)=\"copyMessage(labelSnapshot(token))\"\r\n style=\"margin-right: 8px;\"\r\n title=\"{{ labelSnapshot(token) }}\"\r\n >\r\n <span class=\"fa fa-clipboard\"></span>\r\n </button>\r\n {{ token.name }}\r\n </td>\r\n <td class=\"cut-line\">{{ token.formula }}</td>\r\n <td class=\"cut-line\">{{ token.type.name }}</td>\r\n <td>{{ token.createdAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n <td>{{ token.modifiedAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n <td>\r\n <div class=\"btn-group\" role=\"group\">\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-default\"\r\n (click)=\"initForm(token)\"\r\n pliAuthorityDirective\r\n [externalAllowed]=\"false\"\r\n >\r\n Editar\r\n </button>\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-default dropdown-toggle\"\r\n data-toggle=\"dropdown\"\r\n aria-haspopup=\"true\"\r\n aria-expanded=\"false\"\r\n >\r\n <span class=\"caret\"></span>\r\n </button>\r\n <ul class=\"dropdown-menu\">\r\n <li>\r\n <a\r\n href=\"Javascript:;\"\r\n (click)=\"delete(token)\"\r\n pliAuthorityDirective\r\n [authorities]=\"[p('ROLE_TOKENS_ELIMINAR')]\"\r\n [externalAllowed]=\"false\"\r\n >Eliminar</a\r\n >\r\n </li>\r\n </ul>\r\n </div>\r\n </td>\r\n </tr>\r\n </ng-template>\r\n</p-table>\r\n<div class=\"text-align-right\" style=\"padding: .75rem 1.25rem;\">\r\n <button\r\n type=\"button\"\r\n class=\"btn btn-primary\"\r\n (click)=\"initForm(null)\"\r\n >\r\n Agregar nuevo\r\n </button>\r\n</div>\r\n\r\n<p-dialog\r\n header=\"Snapshot Token\"\r\n [(visible)]=\"showModal\"\r\n [modal]=\"true\"\r\n (onHide)=\"onCloseModal()\"\r\n [contentStyle]=\"{\r\n\t\twidth: '400px',\r\n\t\t'overflow-y': 'auto',\r\n\t\t'min-height': '500px',\r\n\t\t'max-height': '500px',\r\n\t\t'text-align': 'left'\r\n\t}\"\r\n height=\"500px\"\r\n width=\"400px\"\r\n dismissableMask=\"true\"\r\n>\r\n <form [formGroup]=\"frmToken\" (ngSubmit)=\"save()\" *ngIf=\"tokenSelected\">\r\n <div class=\"row\">\r\n <div class=\"col-md-12\">\r\n <div class=\"row\">\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"name\" class=\"form-control-label\">Nombre</label>\r\n <input\r\n type=\"input\"\r\n class=\"form-control\"\r\n name=\"name\"\r\n id=\"name\"\r\n placeholder=\"Nombre\"\r\n formControlName=\"controlName\"\r\n [(ngModel)]=\"tokenSelected.name\"/>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlName, 'required')\">Nombre es requerido</small>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"type\" class=\"form-control-label\">Tipo</label>\r\n <select\r\n name=\"type\"\r\n id=\"type\"\r\n class=\"form-control\"\r\n formControlName=\"controlType\"\r\n [(ngModel)]=\"tokenSelected.type.id\">\r\n <option value=\"\">-- Seleccione opci\u00F3n</option>\r\n <option *ngFor=\"let type of types\" [value]=\"type.id\">{{ type.name }}</option>\r\n </select>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlType, 'required')\">Tipo de token requerido</small>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label class=\"form-control-label\">Llave:</label> \r\n <span style=\"font-weight: bold;\"> {{resolveKeyCalculatedToken()}}</span>\r\n </div>\r\n </div>\r\n <div class=\"col-sm-12 col-md-12\">\r\n <div class=\"form-group required\">\r\n <label for=\"formula\" class=\"form-control-label\"\r\n >Formula</label\r\n >\r\n <textarea\r\n cols=\"150\"\r\n rows=\"4\"\r\n class=\"form-control\"\r\n name=\"formula\"\r\n id=\"formula\"\r\n formControlName=\"controlFormula\"\r\n [(ngModel)]=\"tokenSelected.formula\"\r\n ></textarea>\r\n <div class=\"form-control-error\">\r\n <small *ngIf=\"hasError(controlFormula, 'required')\"\r\n >F\u00F3rmula es requerida</small\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card-footer text-align-right\">\r\n <button type=\"button\" (click)=\"onCloseModal()\" class=\"btn btn-link\">\r\n Cancelar\r\n </button>\r\n <button\r\n type=\"submit\"\r\n class=\"btn btn-success\"\r\n >\r\n Guardar\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </form>\r\n</p-dialog>\r\n\r\n\r\n" }]
|
|
4023
4023
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: CommonService }, { type: i2.ToastrService }, { type: PliCnfSnapshotTokenServices }], propDecorators: { promCodigo: [{
|
|
@@ -4102,10 +4102,10 @@ class GuaranteeTokenComponent extends CommonListsComponent {
|
|
|
4102
4102
|
resolveKeyCalculatedToken() {
|
|
4103
4103
|
return UtilString.replaceAccentSpacesOthers(this.tokenSelected.name);
|
|
4104
4104
|
}
|
|
4105
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4106
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
4105
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeTokenComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: CommonService }, { token: i2.ToastrService }, { token: PliCnfGuaranteeTokenService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4106
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: GuaranteeTokenComponent, selector: "pli-guarantee-token", inputs: { promCodigo: "promCodigo" }, usesInheritance: true, ngImport: i0, template: "<h4 class=\"no-margin-top\">\r\n\tTokens Garantias\r\n</h4>\r\n<p-table [value]=\"lGuaranteeTokens\" [responsive]=\"true\">\r\n\t<ng-template pTemplate=\"header\">\r\n\t\t<tr class=\"text-align-center\">\r\n\t\t\t<th class=\"text-align-center\" width=\"40%\">Nombre</th>\r\n\t\t\t<th class=\"text-align-center\">Formula</th>\r\n\t\t\t<th class=\"text-align-center\">Creado</th>\r\n\t\t\t<th class=\"text-align-center\">Modificado</th>\r\n\t\t\t<th class=\"text-align-center\">Acciones</th>\r\n\t\t</tr>\r\n\t</ng-template>\r\n\t<ng-template pTemplate=\"body\" let-token>\r\n\t\t<tr>\r\n\t\t\t<td>\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t(click)=\"copyMessage(labelGuarantee(token))\"\r\n\t\t\t\t\tstyle=\"margin-right: 8px;\"\r\n\t\t\t\t\ttitle=\"{{ labelGuarantee(token) }}\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t</button>\r\n\t\t\t\t{{ token.name }}\r\n\t\t\t</td>\r\n\t\t\t<td class=\"cut-line\">{{ token.formula }}</td>\r\n\t\t\t<td>{{ token.createdAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t<td>{{ token.modifiedAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t<td>\r\n\t\t\t\t<div class=\"btn-group\" role=\"group\">\r\n\t\t\t\t\t<button\r\n\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\tclass=\"btn btn-default\"\r\n\t\t\t\t\t\t(click)=\"initForm(token)\"\r\n\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tEditar\r\n\t\t\t\t\t</button>\r\n\t\t\t\t\t<button\r\n\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\tclass=\"btn btn-default dropdown-toggle\"\r\n\t\t\t\t\t\tdata-toggle=\"dropdown\"\r\n\t\t\t\t\t\taria-haspopup=\"true\"\r\n\t\t\t\t\t\taria-expanded=\"false\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<span class=\"caret\"></span>\r\n\t\t\t\t\t</button>\r\n\t\t\t\t\t<ul class=\"dropdown-menu\">\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t\t(click)=\"delete(token)\"\r\n\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_ELIMINAR')]\"\r\n\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t>Eliminar</a\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t</li>\r\n\t\t\t\t\t</ul>\r\n\t\t\t\t</div>\r\n\t\t\t</td>\r\n\t\t</tr>\r\n\t</ng-template>\r\n</p-table>\r\n<div class=\"text-align-right\" style=\"padding: 0.75rem 1.25rem;\">\r\n\t<button type=\"button\" class=\"btn btn-primary\" (click)=\"initForm(null)\">\r\n\t\tAgregar nuevo\r\n\t</button>\r\n</div>\r\n<p-dialog\r\n\theader=\"Token Garantias\"\r\n\t[(visible)]=\"showModal\"\r\n\t[modal]=\"true\"\r\n\t(onHide)=\"onCloseModal()\"\r\n\t[contentStyle]=\"{\r\n\t\twidth: '400px',\r\n\t\t'overflow-y': 'auto',\r\n\t\t'min-height': '500px',\r\n\t\t'max-height': '500px',\r\n\t\t'text-align': 'left'\r\n\t}\"\r\n\theight=\"500px\"\r\n\twidth=\"500px\"\r\n\tdismissableMask=\"true\"\r\n>\r\n\t<form [formGroup]=\"frmToken\" (ngSubmit)=\"save()\" *ngIf=\"tokenSelected\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-sm-12 col-md-12 col-lg-12\">\r\n\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Nombre</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"input\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tname=\"name\"\r\n\t\t\t\t\t\tid=\"name\"\r\n\t\t\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\t\t\tformControlName=\"controlName\"\r\n\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.name\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t<small *ngIf=\"hasError(controlName, 'required')\"\r\n\t\t\t\t\t\t\t>El nombre es requerido</small\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label class=\"form-control-label\">Llave: </label>\r\n\t\t\t\t\t<p style=\"font-weight: bold; margin-bottom: 25px;\">\r\n\t\t\t\t\t\t{{ resolveKeyCalculatedToken() }}\r\n\t\t\t\t\t</p>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t<label for=\"formula\" class=\"form-control-label\">Formula</label>\r\n\t\t\t\t\t<textarea\r\n\t\t\t\t\t\trows=\"3\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tname=\"formula\"\r\n\t\t\t\t\t\tid=\"formula\"\r\n\t\t\t\t\t\tformControlName=\"controlFormula\"\r\n\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.formula\"\r\n\t\t\t\t\t></textarea>\r\n\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t<small *ngIf=\"hasError(controlFormula, 'required')\"\r\n\t\t\t\t\t\t\t>La f\u00F3rmula es requerida</small\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div class=\"card-footer text-align-right\">\r\n\t\t\t\t\t<button type=\"button\" (click)=\"onCloseModal()\" class=\"btn btn-link\">\r\n\t\t\t\t\t\tCancelar\r\n\t\t\t\t\t</button>\r\n\t\t\t\t\t<button type=\"submit\" class=\"btn btn-success\">\r\n\t\t\t\t\t\tGuardar\r\n\t\t\t\t\t</button>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</form>\r\n</p-dialog>\r\n", dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i6.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i7.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll", "virtualRowHeight"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i8.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "maskStyle", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { kind: "directive", type: i9.AuthorityDirectiveDirective, selector: "[pliAuthorityDirective]", inputs: ["authorities", "patCodigo", "externalAllowed"] }, { kind: "pipe", type: i3.LowerCasePipe, name: "lowercase" }, { kind: "pipe", type: i3.DatePipe, name: "date" }] }); }
|
|
4107
4107
|
}
|
|
4108
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeTokenComponent, decorators: [{
|
|
4109
4109
|
type: Component,
|
|
4110
4110
|
args: [{ selector: 'pli-guarantee-token', standalone: false, template: "<h4 class=\"no-margin-top\">\r\n\tTokens Garantias\r\n</h4>\r\n<p-table [value]=\"lGuaranteeTokens\" [responsive]=\"true\">\r\n\t<ng-template pTemplate=\"header\">\r\n\t\t<tr class=\"text-align-center\">\r\n\t\t\t<th class=\"text-align-center\" width=\"40%\">Nombre</th>\r\n\t\t\t<th class=\"text-align-center\">Formula</th>\r\n\t\t\t<th class=\"text-align-center\">Creado</th>\r\n\t\t\t<th class=\"text-align-center\">Modificado</th>\r\n\t\t\t<th class=\"text-align-center\">Acciones</th>\r\n\t\t</tr>\r\n\t</ng-template>\r\n\t<ng-template pTemplate=\"body\" let-token>\r\n\t\t<tr>\r\n\t\t\t<td>\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t(click)=\"copyMessage(labelGuarantee(token))\"\r\n\t\t\t\t\tstyle=\"margin-right: 8px;\"\r\n\t\t\t\t\ttitle=\"{{ labelGuarantee(token) }}\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t</button>\r\n\t\t\t\t{{ token.name }}\r\n\t\t\t</td>\r\n\t\t\t<td class=\"cut-line\">{{ token.formula }}</td>\r\n\t\t\t<td>{{ token.createdAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t<td>{{ token.modifiedAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t<td>\r\n\t\t\t\t<div class=\"btn-group\" role=\"group\">\r\n\t\t\t\t\t<button\r\n\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\tclass=\"btn btn-default\"\r\n\t\t\t\t\t\t(click)=\"initForm(token)\"\r\n\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tEditar\r\n\t\t\t\t\t</button>\r\n\t\t\t\t\t<button\r\n\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\tclass=\"btn btn-default dropdown-toggle\"\r\n\t\t\t\t\t\tdata-toggle=\"dropdown\"\r\n\t\t\t\t\t\taria-haspopup=\"true\"\r\n\t\t\t\t\t\taria-expanded=\"false\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<span class=\"caret\"></span>\r\n\t\t\t\t\t</button>\r\n\t\t\t\t\t<ul class=\"dropdown-menu\">\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t\t(click)=\"delete(token)\"\r\n\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_ELIMINAR')]\"\r\n\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t>Eliminar</a\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t</li>\r\n\t\t\t\t\t</ul>\r\n\t\t\t\t</div>\r\n\t\t\t</td>\r\n\t\t</tr>\r\n\t</ng-template>\r\n</p-table>\r\n<div class=\"text-align-right\" style=\"padding: 0.75rem 1.25rem;\">\r\n\t<button type=\"button\" class=\"btn btn-primary\" (click)=\"initForm(null)\">\r\n\t\tAgregar nuevo\r\n\t</button>\r\n</div>\r\n<p-dialog\r\n\theader=\"Token Garantias\"\r\n\t[(visible)]=\"showModal\"\r\n\t[modal]=\"true\"\r\n\t(onHide)=\"onCloseModal()\"\r\n\t[contentStyle]=\"{\r\n\t\twidth: '400px',\r\n\t\t'overflow-y': 'auto',\r\n\t\t'min-height': '500px',\r\n\t\t'max-height': '500px',\r\n\t\t'text-align': 'left'\r\n\t}\"\r\n\theight=\"500px\"\r\n\twidth=\"500px\"\r\n\tdismissableMask=\"true\"\r\n>\r\n\t<form [formGroup]=\"frmToken\" (ngSubmit)=\"save()\" *ngIf=\"tokenSelected\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-sm-12 col-md-12 col-lg-12\">\r\n\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Nombre</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"input\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tname=\"name\"\r\n\t\t\t\t\t\tid=\"name\"\r\n\t\t\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\t\t\tformControlName=\"controlName\"\r\n\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.name\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t<small *ngIf=\"hasError(controlName, 'required')\"\r\n\t\t\t\t\t\t\t>El nombre es requerido</small\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label class=\"form-control-label\">Llave: </label>\r\n\t\t\t\t\t<p style=\"font-weight: bold; margin-bottom: 25px;\">\r\n\t\t\t\t\t\t{{ resolveKeyCalculatedToken() }}\r\n\t\t\t\t\t</p>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t<label for=\"formula\" class=\"form-control-label\">Formula</label>\r\n\t\t\t\t\t<textarea\r\n\t\t\t\t\t\trows=\"3\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tname=\"formula\"\r\n\t\t\t\t\t\tid=\"formula\"\r\n\t\t\t\t\t\tformControlName=\"controlFormula\"\r\n\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.formula\"\r\n\t\t\t\t\t></textarea>\r\n\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t<small *ngIf=\"hasError(controlFormula, 'required')\"\r\n\t\t\t\t\t\t\t>La f\u00F3rmula es requerida</small\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div class=\"card-footer text-align-right\">\r\n\t\t\t\t\t<button type=\"button\" (click)=\"onCloseModal()\" class=\"btn btn-link\">\r\n\t\t\t\t\t\tCancelar\r\n\t\t\t\t\t</button>\r\n\t\t\t\t\t<button type=\"submit\" class=\"btn btn-success\">\r\n\t\t\t\t\t\tGuardar\r\n\t\t\t\t\t</button>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</form>\r\n</p-dialog>\r\n" }]
|
|
4111
4111
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: CommonService }, { type: i2.ToastrService }, { type: PliCnfGuaranteeTokenService }], propDecorators: { promCodigo: [{
|
|
@@ -4708,10 +4708,10 @@ class ConfigurationTokenComponent extends CommonListsComponent {
|
|
|
4708
4708
|
(this.isGroupTask(type) && this.showTask) ||
|
|
4709
4709
|
(this.isGroupDocumentAnalysis(type) && this.showDocumentAutoAnalysis));
|
|
4710
4710
|
}
|
|
4711
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4712
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: ConfigurationTokenComponent, isStandalone: false, selector: "pli-configuration-token", inputs: { promCodigo: "promCodigo", showFrm: "showFrm", showFrmMultiple: "showFrmMultiple", showStatic: "showStatic", showBudget: "showBudget", showCalculated: "showCalculated", showCalculatedForm: "showCalculatedForm", showSnapshot: "showSnapshot", showSnapshotForm: "showSnapshotForm", showDocument: "showDocument", showTask: "showTask", showGuatantee: "showGuatantee", showDocumentAutoAnalysis: "showDocumentAutoAnalysis", showGuatanteeForm: "showGuatanteeForm", showAsTitle: "showAsTitle" }, outputs: { onStaticToken: "onStaticToken" }, usesInheritance: true, ngImport: i0, template: "<div\r\n\t*ngIf=\"readyAccordeon && ready\"\r\n\tpliAuthorityDirective\r\n\t[authorities]=\"[p('ROLE_TOKENS_CONSULTAR')]\"\r\n\t[patCodigo]=\"patCodigo\"\r\n\t[externalAllowed]=\"false\"\r\n>\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-md-12\">\r\n\t\t\t<h4 class=\"no-margin-top\" *ngIf=\"!showAsTitle\">\r\n\t\t\t\tTokens formulario, documentos, presupuesto, tareas y est\u00E1ticos\r\n\t\t\t</h4>\r\n\t\t\t<label class=\"no-margin-top form-control-label\" *ngIf=\"showAsTitle\">\r\n\t\t\t\tTokens formulario, documentos, presupuesto, tareas y est\u00E1ticos\r\n\t\t\t</label>\r\n\t\t\t<p-accordion [multiple]=\"true\">\r\n\t\t\t\t<ng-container *ngFor=\"let groupToken of lStaticToken\">\r\n\t\t\t\t\t<p-accordionTab\r\n\t\t\t\t\t\t*ngIf=\"validateVisibility(groupToken.tokenType)\"\r\n\t\t\t\t\t\theader=\"{{ groupToken.title.value }}\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<div *ngFor=\"let panel of groupToken.value\">\r\n\t\t\t\t\t\t\t<h4 *ngIf=\"groupToken.value && groupToken.value.length > 1\">\r\n\t\t\t\t\t\t\t\t{{ panel.title.value }}\r\n\t\t\t\t\t\t\t</h4>\r\n\t\t\t\t\t\t\t<hr\r\n\t\t\t\t\t\t\t\t*ngIf=\"groupToken.value && groupToken.value.length > 1\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin: 5px 0\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t<div *ngFor=\"let staticToken of panel.value\" class=\"ui-g\">\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[0] && staticToken[0].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[0].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[0].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[0].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[0].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[1] && staticToken[1].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[1].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[1].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[1].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[1].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[2] && staticToken[2].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[2].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[2].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[2].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[2].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[3] && staticToken[3].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[3].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[3].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[3].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[3].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</p-accordionTab>\r\n\t\t\t\t</ng-container>\r\n\t\t\t\t<p-accordionTab\r\n\t\t\t\t\t*ngIf=\"\r\n\t\t\t\t\t\tlCalculatedToken && showCalculatedForm === false && showCalculated === true\r\n\t\t\t\t\t\"\r\n\t\t\t\t\theader=\"Tokens calculados\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<div *ngFor=\"let token of lCalculatedToken\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelCalculated(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelCalculated(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t\t<p-accordionTab *ngIf=\"snapShotTokens && showSnapshot\" header=\"Tokens snapshot\">\r\n\t\t\t\t\t<div *ngFor=\"let token of snapShotTokens\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelSnapshot(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelSnapshot(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t\t<p-accordionTab *ngIf=\"lGuaranteeTokens && showGuatantee\" header=\"Tokens Garantias\">\r\n\t\t\t\t\t<div *ngFor=\"let token of lGuaranteeTokens\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelGuarantee(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelGuarantee(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t</p-accordion>\r\n\t\t</div>\r\n\t\t<div\r\n\t\t\tclass=\"col-md-12\"\r\n\t\t\t*ngIf=\"lCalculatedToken && showCalculatedForm === true && showCalculated === true\"\r\n\t\t>\r\n\t\t\t<span style=\"width: 1px; height: 10px\"> </span>\r\n\t\t\t<h4 class=\"no-margin-top\">Tokens calculados</h4>\r\n\t\t\t<p-table [value]=\"lCalculatedToken\" [responsive]=\"true\">\r\n\t\t\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t\t\t<tr class=\"text-align-center\">\r\n\t\t\t\t\t\t<th class=\"text-align-center\" width=\"40%\">Nombre</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Formula</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Creado</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Modificado</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Acciones</th>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\t\t\t\t<ng-template pTemplate=\"body\" let-token>\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelCalculated(token))\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelCalculated(token) }}\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t{{ token.name }}\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t<td class=\"cut-line\">{{ token.formula }}</td>\r\n\t\t\t\t\t\t<td>{{ token.createdAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t\t\t\t<td>{{ token.modifiedAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t<div class=\"btn-group\" role=\"group\">\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-default\"\r\n\t\t\t\t\t\t\t\t\t(click)=\"initForm(token)\"\r\n\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\tEditar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-default dropdown-toggle\"\r\n\t\t\t\t\t\t\t\t\tdata-toggle=\"dropdown\"\r\n\t\t\t\t\t\t\t\t\taria-haspopup=\"true\"\r\n\t\t\t\t\t\t\t\t\taria-expanded=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<span class=\"caret\"></span>\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<ul class=\"dropdown-menu\">\r\n\t\t\t\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t\t\t\t\t(click)=\"delete(token)\"\r\n\t\t\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_ELIMINAR')]\"\r\n\t\t\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t>Eliminar</a\r\n\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\t\t\t</p-table>\r\n\t\t\t<div class=\"text-align-right\" style=\"padding: 0.75rem 1.25rem\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-primary\"\r\n\t\t\t\t\t(click)=\"initForm(null)\"\r\n\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t>\r\n\t\t\t\t\tAgregar nuevo\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div>\r\n\t\t\t\t<form [formGroup]=\"frmToken\" (ngSubmit)=\"save()\" *ngIf=\"tokenSelected\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t\t\t<div class=\"col-sm-6 col-md-6\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Nombre</label>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\t\t\t\ttype=\"input\"\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\t\t\t\tname=\"name\"\r\n\t\t\t\t\t\t\t\t\t\t\tid=\"name\"\r\n\t\t\t\t\t\t\t\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\t\t\t\t\t\t\t\tformControlName=\"controlName\"\r\n\t\t\t\t\t\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.name\"\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t\t<br /><br />\r\n\t\t\t\t\t\t\t\t\t\t<label class=\"form-control-label\">Llave:</label\r\n\t\t\t\t\t\t\t\t\t\t> <span style=\"font-weight: bold\">{{\r\n\t\t\t\t\t\t\t\t\t\t\tresolveKeyCalculatedToken()\r\n\t\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t\t\t\t\t\t<small *ngIf=\"hasError(controlName, 'required')\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t>Nombre es requerido</small\r\n\t\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t\t<div class=\"col-sm-6 col-md-6\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t\t\t\t\t\t<label for=\"formula\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t\t\t\t>Formula</label\r\n\t\t\t\t\t\t\t\t\t\t>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<!-- <input type=\"input\" class=\"form-control\" name=\"formula\" id=\"formula\" placeholder=\"F\u00F3rmula\"\r\n formControlName=\"formula\" [(ngModel)]=\"tokenSelected.formula\" /> -->\r\n\t\t\t\t\t\t\t\t\t\t<textarea\r\n\t\t\t\t\t\t\t\t\t\t\tcols=\"50\"\r\n\t\t\t\t\t\t\t\t\t\t\trows=\"4\"\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\t\t\t\tname=\"formula\"\r\n\t\t\t\t\t\t\t\t\t\t\tid=\"formula\"\r\n\t\t\t\t\t\t\t\t\t\t\tformControlName=\"controlFormula\"\r\n\t\t\t\t\t\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.formula\"\r\n\t\t\t\t\t\t\t\t\t\t></textarea>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t\t\t\t\t\t<small *ngIf=\"hasError(controlFormula, 'required')\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t>F\u00F3rmula es requerida</small\r\n\t\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div class=\"card-footer text-align-right\">\r\n\t\t\t\t\t\t\t\t<button type=\"button\" (click)=\"cancel()\" class=\"btn btn-link\">\r\n\t\t\t\t\t\t\t\t\tCancelar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"submit\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-success\"\r\n\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\tGuardar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</form>\r\n\t\t\t</div>\r\n\t\t\t<pli-snapshot-token\r\n\t\t\t\t[promCodigo]=\"promCodigo\"\r\n\t\t\t\t*ngIf=\"showSnapshotForm\"\r\n\t\t\t></pli-snapshot-token>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-sm-12 col-md-12 col-lg-12\">\r\n\t\t\t<pli-guarantee-token [promCodigo]=\"promCodigo\" *ngIf=\"showGuatanteeForm\">\r\n\t\t\t</pli-guarantee-token>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "component", type: i14.Accordion, selector: "p-accordion", inputs: ["value", "multiple", "style", "styleClass", "expandIcon", "collapseIcon", "selectOnFocus", "transitionOptions", "activeIndex", "headerAriaLevel"], outputs: ["valueChange", "activeIndexChange", "onClose", "onOpen"] }, { kind: "component", type: i14.AccordionTab, selector: "p-accordionTab, p-accordion-tab, p-accordiontab", inputs: ["id", "header", "headerStyle", "tabStyle", "contentStyle", "tabStyleClass", "headerStyleClass", "contentStyleClass", "disabled", "cache", "transitionOptions", "iconPos", "selected", "headerAriaLevel"], outputs: ["selectedChange"] }, { kind: "directive", type: i6.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i7.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "size", "showGridlines", "stripedRows", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "virtualRowHeight", "selectAll"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i9.AuthorityDirectiveDirective, selector: "[pliAuthorityDirective]", inputs: ["authorities", "patCodigo", "externalAllowed"] }, { kind: "component", type: SnapshotTokenComponent, selector: "pli-snapshot-token", inputs: ["promCodigo"] }, { kind: "component", type: GuaranteeTokenComponent, selector: "pli-guarantee-token", inputs: ["promCodigo"] }, { kind: "pipe", type: i3.LowerCasePipe, name: "lowercase" }, { kind: "pipe", type: i3.DatePipe, name: "date" }] }); }
|
|
4711
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationTokenComponent, deps: [{ token: i2.ToastrService }, { token: i0.ChangeDetectorRef }, { token: CommonService }, { token: PppService }, { token: i4.Router }, { token: BudgetService }, { token: TokenService }, { token: PliCnfSnapshotTokenServices }, { token: ConfigurationDocumentService }, { token: PliCnfEvaluationTaskService }, { token: PliCnfGuaranteeTokenService }, { token: ConfigurationTokenSubjectService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4712
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ConfigurationTokenComponent, selector: "pli-configuration-token", inputs: { promCodigo: "promCodigo", showFrm: "showFrm", showFrmMultiple: "showFrmMultiple", showStatic: "showStatic", showBudget: "showBudget", showCalculated: "showCalculated", showCalculatedForm: "showCalculatedForm", showSnapshot: "showSnapshot", showSnapshotForm: "showSnapshotForm", showDocument: "showDocument", showTask: "showTask", showGuatantee: "showGuatantee", showDocumentAutoAnalysis: "showDocumentAutoAnalysis", showGuatanteeForm: "showGuatanteeForm", showAsTitle: "showAsTitle" }, outputs: { onStaticToken: "onStaticToken" }, usesInheritance: true, ngImport: i0, template: "<div\r\n\t*ngIf=\"readyAccordeon && ready\"\r\n\tpliAuthorityDirective\r\n\t[authorities]=\"[p('ROLE_TOKENS_CONSULTAR')]\"\r\n\t[patCodigo]=\"patCodigo\"\r\n\t[externalAllowed]=\"false\"\r\n>\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-md-12\">\r\n\t\t\t<h4 class=\"no-margin-top\" *ngIf=\"!showAsTitle\">\r\n\t\t\t\tTokens formulario, documentos, presupuesto, tareas y est\u00E1ticos\r\n\t\t\t</h4>\r\n\t\t\t<label class=\"no-margin-top form-control-label\" *ngIf=\"showAsTitle\">\r\n\t\t\t\tTokens formulario, documentos, presupuesto, tareas y est\u00E1ticos\r\n\t\t\t</label>\r\n\t\t\t<p-accordion [multiple]=\"true\">\r\n\t\t\t\t<ng-container *ngFor=\"let groupToken of lStaticToken\">\r\n\t\t\t\t\t<p-accordionTab\r\n\t\t\t\t\t\t*ngIf=\"validateVisibility(groupToken.tokenType)\"\r\n\t\t\t\t\t\theader=\"{{ groupToken.title.value }}\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<div *ngFor=\"let panel of groupToken.value\">\r\n\t\t\t\t\t\t\t<h4 *ngIf=\"groupToken.value && groupToken.value.length > 1\">\r\n\t\t\t\t\t\t\t\t{{ panel.title.value }}\r\n\t\t\t\t\t\t\t</h4>\r\n\t\t\t\t\t\t\t<hr\r\n\t\t\t\t\t\t\t\t*ngIf=\"groupToken.value && groupToken.value.length > 1\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin: 5px 0\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t<div *ngFor=\"let staticToken of panel.value\" class=\"ui-g\">\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[0] && staticToken[0].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[0].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[0].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[0].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[0].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[1] && staticToken[1].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[1].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[1].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[1].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[1].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[2] && staticToken[2].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[2].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[2].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[2].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[2].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[3] && staticToken[3].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[3].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[3].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[3].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[3].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</p-accordionTab>\r\n\t\t\t\t</ng-container>\r\n\t\t\t\t<p-accordionTab\r\n\t\t\t\t\t*ngIf=\"\r\n\t\t\t\t\t\tlCalculatedToken && showCalculatedForm === false && showCalculated === true\r\n\t\t\t\t\t\"\r\n\t\t\t\t\theader=\"Tokens calculados\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<div *ngFor=\"let token of lCalculatedToken\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelCalculated(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelCalculated(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t\t<p-accordionTab *ngIf=\"snapShotTokens && showSnapshot\" header=\"Tokens snapshot\">\r\n\t\t\t\t\t<div *ngFor=\"let token of snapShotTokens\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelSnapshot(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelSnapshot(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t\t<p-accordionTab *ngIf=\"lGuaranteeTokens && showGuatantee\" header=\"Tokens Garantias\">\r\n\t\t\t\t\t<div *ngFor=\"let token of lGuaranteeTokens\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelGuarantee(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelGuarantee(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t</p-accordion>\r\n\t\t</div>\r\n\t\t<div\r\n\t\t\tclass=\"col-md-12\"\r\n\t\t\t*ngIf=\"lCalculatedToken && showCalculatedForm === true && showCalculated === true\"\r\n\t\t>\r\n\t\t\t<span style=\"width: 1px; height: 10px\"> </span>\r\n\t\t\t<h4 class=\"no-margin-top\">Tokens calculados</h4>\r\n\t\t\t<p-table [value]=\"lCalculatedToken\" [responsive]=\"true\">\r\n\t\t\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t\t\t<tr class=\"text-align-center\">\r\n\t\t\t\t\t\t<th class=\"text-align-center\" width=\"40%\">Nombre</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Formula</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Creado</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Modificado</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Acciones</th>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\t\t\t\t<ng-template pTemplate=\"body\" let-token>\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelCalculated(token))\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelCalculated(token) }}\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t{{ token.name }}\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t<td class=\"cut-line\">{{ token.formula }}</td>\r\n\t\t\t\t\t\t<td>{{ token.createdAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t\t\t\t<td>{{ token.modifiedAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t<div class=\"btn-group\" role=\"group\">\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-default\"\r\n\t\t\t\t\t\t\t\t\t(click)=\"initForm(token)\"\r\n\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\tEditar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-default dropdown-toggle\"\r\n\t\t\t\t\t\t\t\t\tdata-toggle=\"dropdown\"\r\n\t\t\t\t\t\t\t\t\taria-haspopup=\"true\"\r\n\t\t\t\t\t\t\t\t\taria-expanded=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<span class=\"caret\"></span>\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<ul class=\"dropdown-menu\">\r\n\t\t\t\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t\t\t\t\t(click)=\"delete(token)\"\r\n\t\t\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_ELIMINAR')]\"\r\n\t\t\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t>Eliminar</a\r\n\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\t\t\t</p-table>\r\n\t\t\t<div class=\"text-align-right\" style=\"padding: 0.75rem 1.25rem\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-primary\"\r\n\t\t\t\t\t(click)=\"initForm(null)\"\r\n\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t>\r\n\t\t\t\t\tAgregar nuevo\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div>\r\n\t\t\t\t<form [formGroup]=\"frmToken\" (ngSubmit)=\"save()\" *ngIf=\"tokenSelected\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t\t\t<div class=\"col-sm-6 col-md-6\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Nombre</label>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\t\t\t\ttype=\"input\"\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\t\t\t\tname=\"name\"\r\n\t\t\t\t\t\t\t\t\t\t\tid=\"name\"\r\n\t\t\t\t\t\t\t\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\t\t\t\t\t\t\t\tformControlName=\"controlName\"\r\n\t\t\t\t\t\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.name\"\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t\t<br /><br />\r\n\t\t\t\t\t\t\t\t\t\t<label class=\"form-control-label\">Llave:</label\r\n\t\t\t\t\t\t\t\t\t\t> <span style=\"font-weight: bold\">{{\r\n\t\t\t\t\t\t\t\t\t\t\tresolveKeyCalculatedToken()\r\n\t\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t\t\t\t\t\t<small *ngIf=\"hasError(controlName, 'required')\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t>Nombre es requerido</small\r\n\t\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t\t<div class=\"col-sm-6 col-md-6\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t\t\t\t\t\t<label for=\"formula\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t\t\t\t>Formula</label\r\n\t\t\t\t\t\t\t\t\t\t>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<!-- <input type=\"input\" class=\"form-control\" name=\"formula\" id=\"formula\" placeholder=\"F\u00F3rmula\"\r\n formControlName=\"formula\" [(ngModel)]=\"tokenSelected.formula\" /> -->\r\n\t\t\t\t\t\t\t\t\t\t<textarea\r\n\t\t\t\t\t\t\t\t\t\t\tcols=\"50\"\r\n\t\t\t\t\t\t\t\t\t\t\trows=\"4\"\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\t\t\t\tname=\"formula\"\r\n\t\t\t\t\t\t\t\t\t\t\tid=\"formula\"\r\n\t\t\t\t\t\t\t\t\t\t\tformControlName=\"controlFormula\"\r\n\t\t\t\t\t\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.formula\"\r\n\t\t\t\t\t\t\t\t\t\t></textarea>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t\t\t\t\t\t<small *ngIf=\"hasError(controlFormula, 'required')\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t>F\u00F3rmula es requerida</small\r\n\t\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div class=\"card-footer text-align-right\">\r\n\t\t\t\t\t\t\t\t<button type=\"button\" (click)=\"cancel()\" class=\"btn btn-link\">\r\n\t\t\t\t\t\t\t\t\tCancelar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"submit\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-success\"\r\n\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\tGuardar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</form>\r\n\t\t\t</div>\r\n\t\t\t<pli-snapshot-token\r\n\t\t\t\t[promCodigo]=\"promCodigo\"\r\n\t\t\t\t*ngIf=\"showSnapshotForm\"\r\n\t\t\t></pli-snapshot-token>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-sm-12 col-md-12 col-lg-12\">\r\n\t\t\t<pli-guarantee-token [promCodigo]=\"promCodigo\" *ngIf=\"showGuatanteeForm\">\r\n\t\t\t</pli-guarantee-token>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "component", type: i14.Accordion, selector: "p-accordion", inputs: ["multiple", "style", "styleClass", "expandIcon", "collapseIcon", "activeIndex", "selectOnFocus", "headerAriaLevel"], outputs: ["onClose", "onOpen", "activeIndexChange"] }, { kind: "component", type: i14.AccordionTab, selector: "p-accordionTab", inputs: ["id", "header", "headerStyle", "tabStyle", "contentStyle", "tabStyleClass", "headerStyleClass", "contentStyleClass", "disabled", "cache", "transitionOptions", "iconPos", "selected", "headerAriaLevel"], outputs: ["selectedChange"] }, { kind: "directive", type: i6.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i7.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll", "virtualRowHeight"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i9.AuthorityDirectiveDirective, selector: "[pliAuthorityDirective]", inputs: ["authorities", "patCodigo", "externalAllowed"] }, { kind: "component", type: SnapshotTokenComponent, selector: "pli-snapshot-token", inputs: ["promCodigo"] }, { kind: "component", type: GuaranteeTokenComponent, selector: "pli-guarantee-token", inputs: ["promCodigo"] }, { kind: "pipe", type: i3.LowerCasePipe, name: "lowercase" }, { kind: "pipe", type: i3.DatePipe, name: "date" }] }); }
|
|
4713
4713
|
}
|
|
4714
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4714
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationTokenComponent, decorators: [{
|
|
4715
4715
|
type: Component,
|
|
4716
4716
|
args: [{ selector: 'pli-configuration-token', standalone: false, template: "<div\r\n\t*ngIf=\"readyAccordeon && ready\"\r\n\tpliAuthorityDirective\r\n\t[authorities]=\"[p('ROLE_TOKENS_CONSULTAR')]\"\r\n\t[patCodigo]=\"patCodigo\"\r\n\t[externalAllowed]=\"false\"\r\n>\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-md-12\">\r\n\t\t\t<h4 class=\"no-margin-top\" *ngIf=\"!showAsTitle\">\r\n\t\t\t\tTokens formulario, documentos, presupuesto, tareas y est\u00E1ticos\r\n\t\t\t</h4>\r\n\t\t\t<label class=\"no-margin-top form-control-label\" *ngIf=\"showAsTitle\">\r\n\t\t\t\tTokens formulario, documentos, presupuesto, tareas y est\u00E1ticos\r\n\t\t\t</label>\r\n\t\t\t<p-accordion [multiple]=\"true\">\r\n\t\t\t\t<ng-container *ngFor=\"let groupToken of lStaticToken\">\r\n\t\t\t\t\t<p-accordionTab\r\n\t\t\t\t\t\t*ngIf=\"validateVisibility(groupToken.tokenType)\"\r\n\t\t\t\t\t\theader=\"{{ groupToken.title.value }}\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<div *ngFor=\"let panel of groupToken.value\">\r\n\t\t\t\t\t\t\t<h4 *ngIf=\"groupToken.value && groupToken.value.length > 1\">\r\n\t\t\t\t\t\t\t\t{{ panel.title.value }}\r\n\t\t\t\t\t\t\t</h4>\r\n\t\t\t\t\t\t\t<hr\r\n\t\t\t\t\t\t\t\t*ngIf=\"groupToken.value && groupToken.value.length > 1\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin: 5px 0\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t<div *ngFor=\"let staticToken of panel.value\" class=\"ui-g\">\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[0] && staticToken[0].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[0].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[0].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[0].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[0].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[1] && staticToken[1].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[1].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[1].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[1].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[1].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[2] && staticToken[2].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[2].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[2].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[2].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[2].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t*ngIf=\"staticToken[3] && staticToken[3].key\"\r\n\t\t\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\t\t(click)=\"copyMessage(staticToken[3].key)\"\r\n\t\t\t\t\t\t\t\t\t\ttitle=\"{{ staticToken[3].key }}\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t\t<span title=\"{{ staticToken[3].value }}\">{{\r\n\t\t\t\t\t\t\t\t\t\tstaticToken[3].value\r\n\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</p-accordionTab>\r\n\t\t\t\t</ng-container>\r\n\t\t\t\t<p-accordionTab\r\n\t\t\t\t\t*ngIf=\"\r\n\t\t\t\t\t\tlCalculatedToken && showCalculatedForm === false && showCalculated === true\r\n\t\t\t\t\t\"\r\n\t\t\t\t\theader=\"Tokens calculados\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<div *ngFor=\"let token of lCalculatedToken\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelCalculated(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelCalculated(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t\t<p-accordionTab *ngIf=\"snapShotTokens && showSnapshot\" header=\"Tokens snapshot\">\r\n\t\t\t\t\t<div *ngFor=\"let token of snapShotTokens\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelSnapshot(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelSnapshot(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t\t<p-accordionTab *ngIf=\"lGuaranteeTokens && showGuatantee\" header=\"Tokens Garantias\">\r\n\t\t\t\t\t<div *ngFor=\"let token of lGuaranteeTokens\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div class=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\">\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelGuarantee(token))\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelGuarantee(token) }}\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ token.name }}\">{{ token.name }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t</p-accordion>\r\n\t\t</div>\r\n\t\t<div\r\n\t\t\tclass=\"col-md-12\"\r\n\t\t\t*ngIf=\"lCalculatedToken && showCalculatedForm === true && showCalculated === true\"\r\n\t\t>\r\n\t\t\t<span style=\"width: 1px; height: 10px\"> </span>\r\n\t\t\t<h4 class=\"no-margin-top\">Tokens calculados</h4>\r\n\t\t\t<p-table [value]=\"lCalculatedToken\" [responsive]=\"true\">\r\n\t\t\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t\t\t<tr class=\"text-align-center\">\r\n\t\t\t\t\t\t<th class=\"text-align-center\" width=\"40%\">Nombre</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Formula</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Creado</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Modificado</th>\r\n\t\t\t\t\t\t<th class=\"text-align-center\">Acciones</th>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\t\t\t\t<ng-template pTemplate=\"body\" let-token>\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyMessage(labelCalculated(token))\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t\ttitle=\"{{ labelCalculated(token) }}\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t{{ token.name }}\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t<td class=\"cut-line\">{{ token.formula }}</td>\r\n\t\t\t\t\t\t<td>{{ token.createdAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t\t\t\t<td>{{ token.modifiedAt | date: 'dd MMM yyyy' | lowercase }}</td>\r\n\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t<div class=\"btn-group\" role=\"group\">\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-default\"\r\n\t\t\t\t\t\t\t\t\t(click)=\"initForm(token)\"\r\n\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\tEditar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-default dropdown-toggle\"\r\n\t\t\t\t\t\t\t\t\tdata-toggle=\"dropdown\"\r\n\t\t\t\t\t\t\t\t\taria-haspopup=\"true\"\r\n\t\t\t\t\t\t\t\t\taria-expanded=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t<span class=\"caret\"></span>\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<ul class=\"dropdown-menu\">\r\n\t\t\t\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t\t\t\t\t(click)=\"delete(token)\"\r\n\t\t\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_ELIMINAR')]\"\r\n\t\t\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t>Eliminar</a\r\n\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\t\t\t</p-table>\r\n\t\t\t<div class=\"text-align-right\" style=\"padding: 0.75rem 1.25rem\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-primary\"\r\n\t\t\t\t\t(click)=\"initForm(null)\"\r\n\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t>\r\n\t\t\t\t\tAgregar nuevo\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div>\r\n\t\t\t\t<form [formGroup]=\"frmToken\" (ngSubmit)=\"save()\" *ngIf=\"tokenSelected\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t\t\t<div class=\"col-sm-6 col-md-6\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Nombre</label>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\t\t\t\ttype=\"input\"\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\t\t\t\tname=\"name\"\r\n\t\t\t\t\t\t\t\t\t\t\tid=\"name\"\r\n\t\t\t\t\t\t\t\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\t\t\t\t\t\t\t\tformControlName=\"controlName\"\r\n\t\t\t\t\t\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.name\"\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t\t<br /><br />\r\n\t\t\t\t\t\t\t\t\t\t<label class=\"form-control-label\">Llave:</label\r\n\t\t\t\t\t\t\t\t\t\t> <span style=\"font-weight: bold\">{{\r\n\t\t\t\t\t\t\t\t\t\t\tresolveKeyCalculatedToken()\r\n\t\t\t\t\t\t\t\t\t\t}}</span>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t\t\t\t\t\t<small *ngIf=\"hasError(controlName, 'required')\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t>Nombre es requerido</small\r\n\t\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t\t<div class=\"col-sm-6 col-md-6\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"form-group required\">\r\n\t\t\t\t\t\t\t\t\t\t<label for=\"formula\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t\t\t\t>Formula</label\r\n\t\t\t\t\t\t\t\t\t\t>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<!-- <input type=\"input\" class=\"form-control\" name=\"formula\" id=\"formula\" placeholder=\"F\u00F3rmula\"\r\n formControlName=\"formula\" [(ngModel)]=\"tokenSelected.formula\" /> -->\r\n\t\t\t\t\t\t\t\t\t\t<textarea\r\n\t\t\t\t\t\t\t\t\t\t\tcols=\"50\"\r\n\t\t\t\t\t\t\t\t\t\t\trows=\"4\"\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\t\t\t\tname=\"formula\"\r\n\t\t\t\t\t\t\t\t\t\t\tid=\"formula\"\r\n\t\t\t\t\t\t\t\t\t\t\tformControlName=\"controlFormula\"\r\n\t\t\t\t\t\t\t\t\t\t\t[(ngModel)]=\"tokenSelected.formula\"\r\n\t\t\t\t\t\t\t\t\t\t></textarea>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"form-control-error\">\r\n\t\t\t\t\t\t\t\t\t\t\t<small *ngIf=\"hasError(controlFormula, 'required')\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t>F\u00F3rmula es requerida</small\r\n\t\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div class=\"card-footer text-align-right\">\r\n\t\t\t\t\t\t\t\t<button type=\"button\" (click)=\"cancel()\" class=\"btn btn-link\">\r\n\t\t\t\t\t\t\t\t\tCancelar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\t\ttype=\"submit\"\r\n\t\t\t\t\t\t\t\t\tclass=\"btn btn-success\"\r\n\t\t\t\t\t\t\t\t\tpliAuthorityDirective\r\n\t\t\t\t\t\t\t\t\t[authorities]=\"[p('ROLE_TOKENS_CREAR_EDITAR')]\"\r\n\t\t\t\t\t\t\t\t\t[patCodigo]=\"patCodigo\"\r\n\t\t\t\t\t\t\t\t\t[externalAllowed]=\"false\"\r\n\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\tGuardar\r\n\t\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</form>\r\n\t\t\t</div>\r\n\t\t\t<pli-snapshot-token\r\n\t\t\t\t[promCodigo]=\"promCodigo\"\r\n\t\t\t\t*ngIf=\"showSnapshotForm\"\r\n\t\t\t></pli-snapshot-token>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-sm-12 col-md-12 col-lg-12\">\r\n\t\t\t<pli-guarantee-token [promCodigo]=\"promCodigo\" *ngIf=\"showGuatanteeForm\">\r\n\t\t\t</pli-guarantee-token>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n" }]
|
|
4717
4717
|
}], ctorParameters: () => [{ type: i2.ToastrService }, { type: i0.ChangeDetectorRef }, { type: CommonService }, { type: PppService }, { type: i4.Router }, { type: BudgetService }, { type: TokenService }, { type: PliCnfSnapshotTokenServices }, { type: ConfigurationDocumentService }, { type: PliCnfEvaluationTaskService }, { type: PliCnfGuaranteeTokenService }, { type: ConfigurationTokenSubjectService }], propDecorators: { promCodigo: [{
|
|
@@ -4859,10 +4859,10 @@ class DynamicFilterComponent {
|
|
|
4859
4859
|
getColumnById(id) {
|
|
4860
4860
|
return this.mapSegColumnById.get(id);
|
|
4861
4861
|
}
|
|
4862
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4863
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
4862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DynamicFilterComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: CommonService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4863
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: DynamicFilterComponent, selector: "app-dynamic-filter", inputs: { lSegFilter: "lSegFilter", lSegColumn: "lSegColumn", comboColumnWork: "comboColumnWork" }, outputs: { searchFilter: "searchFilter" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"flex flow-row-wrap\" style=\"margin:10px 0 0;justify-content: normal\" *ngIf=\"active\">\r\n\t<div class=\"segmentation-filter\" *ngFor=\"let filter of lSegFilter; let i = index\">\r\n\t\t<div *ngIf=\"filter.idColumn == undefined\">\r\n\t\t\t<div class=\"ml-sm\">\r\n\t\t\t\t<p-dropdown\r\n\t\t\t\t\t[autoWidth]=\"false\"\r\n\t\t\t\t\t[style]=\"{ width: '100%' }\"\r\n\t\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t\t[options]=\"comboColumnWork\"\r\n\t\t\t\t\t[group]=\"true\"\r\n\t\t\t\t\t[(ngModel)]=\"filter.idColumn\"\r\n\t\t\t\t\t(onChange)=\"onSelectColumn(filter)\"\r\n\t\t\t\t\t[filter]=\"true\"\r\n\t\t\t\t>\r\n\t\t\t\t</p-dropdown>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t<div class=\"flex align-items-center\" *ngIf=\"filter.idColumn != undefined\">\r\n\t\t\t<div class=\"ml-sm mr-sm\">\r\n\t\t\t\t<span class=\"input-group-btn conector\" *ngIf=\"i != 0\">\r\n\t\t\t\t\t<button\r\n\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\tclass=\"btn btn-info btn-sm br-5\"\r\n\t\t\t\t\t\t*ngIf=\"filter.conjunction == 'Y'\"\r\n\t\t\t\t\t\t(click)=\"setConjunction(filter, 'O')\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tY\r\n\t\t\t\t\t</button>\r\n\t\t\t\t\t<button\r\n\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\tclass=\"btn btn-warning btn-sm br-5\"\r\n\t\t\t\t\t\t*ngIf=\"filter.conjunction == 'O'\"\r\n\t\t\t\t\t\t(click)=\"setConjunction(filter, 'Y')\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tO\r\n\t\t\t\t\t</button>\r\n\t\t\t\t</span>\r\n\t\t\t\t<span class=\"ml-sm\" *ngIf=\"i == 0\">\r\n\t\t\t\t\t<span class=\"btn btn-sm br-5\" style=\"cursor:auto;\"> </span>\r\n\t\t\t\t</span>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"mr-sm\">\r\n\t\t\t\t<select\r\n\t\t\t\t\tclass=\"form-control input-sm select-operation\"\r\n\t\t\t\t\tstyle=\"width: 125px;\"\r\n\t\t\t\t\t[(ngModel)]=\"filter.operator\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<option value=\"1\">Igual a</option>\r\n\t\t\t\t\t<option value=\"2\">Diferente a</option>\r\n\t\t\t\t\t<option value=\"3\" *ngIf=\"filter.type == getTypeText()\">Contiene</option>\r\n\t\t\t\t\t<option value=\"4\" *ngIf=\"filter.type == getTypeText()\">No contiene</option>\r\n\t\t\t\t\t<option\r\n\t\t\t\t\t\tvalue=\"5\"\r\n\t\t\t\t\t\t*ngIf=\"filter.type == getTypeNumber() || filter.type == getTypeDate()\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tMayor a</option\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<option\r\n\t\t\t\t\t\tvalue=\"6\"\r\n\t\t\t\t\t\t*ngIf=\"filter.type == getTypeNumber() || filter.type == getTypeDate()\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tMayor o igual a</option\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<option\r\n\t\t\t\t\t\tvalue=\"7\"\r\n\t\t\t\t\t\t*ngIf=\"filter.type == getTypeNumber() || filter.type == getTypeDate()\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tMenor a</option\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<option\r\n\t\t\t\t\t\tvalue=\"8\"\r\n\t\t\t\t\t\t*ngIf=\"filter.type == getTypeNumber() || filter.type == getTypeDate()\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tMenor o igual a</option\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<option value=\"9\">Es vac\u00EDo</option>\r\n\t\t\t\t</select>\r\n\t\t\t</div>\r\n\t\t\t<div>\r\n\t\t\t\t<input\r\n\t\t\t\t\t[type]=\"getTypeInput(filter.type)\"\r\n\t\t\t\t\t[disabled]=\"filter.operator == 9\"\r\n\t\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t\t[(ngModel)]=\"filter.value\"\r\n\t\t\t\t\t[placeholder]=\"filter.label\"\r\n\t\t\t\t\tstyle=\"width: 165px;\"\r\n\t\t\t\t\t(keyup.enter)=\"search()\"\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"flex ml-sm button_filter\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-danger btn-sm btn-rounded\"\r\n\t\t\t\t\t(click)=\"deleteFilter(i)\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<span class=\"fa fa-minus\"></span>\r\n\t\t\t\t</button>\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-success btn-sm btn-rounded ml-sm\"\r\n\t\t\t\t\t(click)=\"addFilter()\"\r\n\t\t\t\t\t*ngIf=\"i + 1 == lSegFilter.length\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<span class=\"fa fa-plus\"></span>\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n<div class=\"row\" style=\"margin:0 0 10px\" *ngIf=\"active\">\r\n\t<div class=\"col-sm-12 panel-button\">\r\n\t\t<div class=\"btn-toolbar\">\r\n\t\t\t<div class=\"btn-group\">\r\n\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-sm btn-consult\" (click)=\"search()\">\r\n\t\t\t\t\tConsultar\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"btn-group\">\r\n\t\t\t\t<button type=\"button\" class=\"btn btn-danger btn-sm btn-delete\" (click)=\"clean()\">\r\n\t\t\t\t\tBorrar filtros\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"btn-group\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-warning btn-sm btn-clear\"\r\n\t\t\t\t\t(click)=\"deleteAll()\"\r\n\t\t\t\t>\r\n\t\t\t\t\tlimpiar datos\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".button_filter .btn{line-height:12px;width:22px;height:22px}.button_filter .btn.btn-success{background-color:transparent;border:1px solid #4cae4c;color:#4cae4c}.button_filter .btn.btn-success:hover{background-color:#4cae4c;color:#fff}.button_filter .btn-danger{background-color:transparent;color:#d43f3a}.button_filter .btn-danger:hover{background-color:#d43f3a;color:#fff}.conector .btn{height:22px;line-height:12px}.btn{padding:5px}.btn-rounded{border-radius:50%!important}.btn-delete,.btn-save,.btn-definition,.btn-clear{background-color:transparent;color:#333;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.btn-delete:hover{background-color:#d43f3a;color:#fff}.btn-save:hover{background-color:#4cae4c;color:#fff}.btn-definition:hover{color:#fff;background-color:#ccc}.btn-clear:hover{background-color:#eea236;color:#fff}.br-5{border-radius:5px!important}.mr-sm{margin-right:5px}.ml-sm{margin-left:5px}.flex{display:flex!important}.flow-row-wrap{flex-flow:row wrap}.align-items-center{align-items:center}.dialog-max-size .ui-dialog{width:95%!important}.segmentation-group .form-control.select-operation{width:40%;font-size:11px;padding-left:3px;padding-right:3px}.segmentation-group .form-control.input-value{width:60%}.segmentation-filter{margin-bottom:10px}.panel-button{background-color:#f8f8f8;padding-top:10px;padding-bottom:10px;border-top:1px solid rgb(231,231,231);border-bottom:1px solid rgb(231,231,231);text-align:right}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i4$1.Dropdown, selector: "p-dropdown", inputs: ["id", "scrollHeight", "filter", "name", "style", "panelStyle", "styleClass", "panelStyleClass", "readonly", "required", "editable", "appendTo", "tabindex", "placeholder", "loadingIcon", "filterPlaceholder", "filterLocale", "variant", "inputId", "dataKey", "filterBy", "filterFields", "autofocus", "resetFilterOnHide", "checkmark", "dropdownIcon", "loading", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "autoDisplayFirst", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "maxlength", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "focusOnHover", "selectOnFocus", "autoOptionFocus", "autofocusFilter", "autoShowPanelOnPrintableCharacterKeyDown", "disabled", "itemSize", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "filterValue", "options"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }] }); }
|
|
4864
4864
|
}
|
|
4865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DynamicFilterComponent, decorators: [{
|
|
4866
4866
|
type: Component,
|
|
4867
4867
|
args: [{ selector: 'app-dynamic-filter', standalone: false, template: "<div class=\"flex flow-row-wrap\" style=\"margin:10px 0 0;justify-content: normal\" *ngIf=\"active\">\r\n\t<div class=\"segmentation-filter\" *ngFor=\"let filter of lSegFilter; let i = index\">\r\n\t\t<div *ngIf=\"filter.idColumn == undefined\">\r\n\t\t\t<div class=\"ml-sm\">\r\n\t\t\t\t<p-dropdown\r\n\t\t\t\t\t[autoWidth]=\"false\"\r\n\t\t\t\t\t[style]=\"{ width: '100%' }\"\r\n\t\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t\t[options]=\"comboColumnWork\"\r\n\t\t\t\t\t[group]=\"true\"\r\n\t\t\t\t\t[(ngModel)]=\"filter.idColumn\"\r\n\t\t\t\t\t(onChange)=\"onSelectColumn(filter)\"\r\n\t\t\t\t\t[filter]=\"true\"\r\n\t\t\t\t>\r\n\t\t\t\t</p-dropdown>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t<div class=\"flex align-items-center\" *ngIf=\"filter.idColumn != undefined\">\r\n\t\t\t<div class=\"ml-sm mr-sm\">\r\n\t\t\t\t<span class=\"input-group-btn conector\" *ngIf=\"i != 0\">\r\n\t\t\t\t\t<button\r\n\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\tclass=\"btn btn-info btn-sm br-5\"\r\n\t\t\t\t\t\t*ngIf=\"filter.conjunction == 'Y'\"\r\n\t\t\t\t\t\t(click)=\"setConjunction(filter, 'O')\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tY\r\n\t\t\t\t\t</button>\r\n\t\t\t\t\t<button\r\n\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\tclass=\"btn btn-warning btn-sm br-5\"\r\n\t\t\t\t\t\t*ngIf=\"filter.conjunction == 'O'\"\r\n\t\t\t\t\t\t(click)=\"setConjunction(filter, 'Y')\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tO\r\n\t\t\t\t\t</button>\r\n\t\t\t\t</span>\r\n\t\t\t\t<span class=\"ml-sm\" *ngIf=\"i == 0\">\r\n\t\t\t\t\t<span class=\"btn btn-sm br-5\" style=\"cursor:auto;\"> </span>\r\n\t\t\t\t</span>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"mr-sm\">\r\n\t\t\t\t<select\r\n\t\t\t\t\tclass=\"form-control input-sm select-operation\"\r\n\t\t\t\t\tstyle=\"width: 125px;\"\r\n\t\t\t\t\t[(ngModel)]=\"filter.operator\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<option value=\"1\">Igual a</option>\r\n\t\t\t\t\t<option value=\"2\">Diferente a</option>\r\n\t\t\t\t\t<option value=\"3\" *ngIf=\"filter.type == getTypeText()\">Contiene</option>\r\n\t\t\t\t\t<option value=\"4\" *ngIf=\"filter.type == getTypeText()\">No contiene</option>\r\n\t\t\t\t\t<option\r\n\t\t\t\t\t\tvalue=\"5\"\r\n\t\t\t\t\t\t*ngIf=\"filter.type == getTypeNumber() || filter.type == getTypeDate()\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tMayor a</option\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<option\r\n\t\t\t\t\t\tvalue=\"6\"\r\n\t\t\t\t\t\t*ngIf=\"filter.type == getTypeNumber() || filter.type == getTypeDate()\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tMayor o igual a</option\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<option\r\n\t\t\t\t\t\tvalue=\"7\"\r\n\t\t\t\t\t\t*ngIf=\"filter.type == getTypeNumber() || filter.type == getTypeDate()\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tMenor a</option\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<option\r\n\t\t\t\t\t\tvalue=\"8\"\r\n\t\t\t\t\t\t*ngIf=\"filter.type == getTypeNumber() || filter.type == getTypeDate()\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tMenor o igual a</option\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<option value=\"9\">Es vac\u00EDo</option>\r\n\t\t\t\t</select>\r\n\t\t\t</div>\r\n\t\t\t<div>\r\n\t\t\t\t<input\r\n\t\t\t\t\t[type]=\"getTypeInput(filter.type)\"\r\n\t\t\t\t\t[disabled]=\"filter.operator == 9\"\r\n\t\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t\t[(ngModel)]=\"filter.value\"\r\n\t\t\t\t\t[placeholder]=\"filter.label\"\r\n\t\t\t\t\tstyle=\"width: 165px;\"\r\n\t\t\t\t\t(keyup.enter)=\"search()\"\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"flex ml-sm button_filter\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-danger btn-sm btn-rounded\"\r\n\t\t\t\t\t(click)=\"deleteFilter(i)\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<span class=\"fa fa-minus\"></span>\r\n\t\t\t\t</button>\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-success btn-sm btn-rounded ml-sm\"\r\n\t\t\t\t\t(click)=\"addFilter()\"\r\n\t\t\t\t\t*ngIf=\"i + 1 == lSegFilter.length\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<span class=\"fa fa-plus\"></span>\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n<div class=\"row\" style=\"margin:0 0 10px\" *ngIf=\"active\">\r\n\t<div class=\"col-sm-12 panel-button\">\r\n\t\t<div class=\"btn-toolbar\">\r\n\t\t\t<div class=\"btn-group\">\r\n\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-sm btn-consult\" (click)=\"search()\">\r\n\t\t\t\t\tConsultar\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"btn-group\">\r\n\t\t\t\t<button type=\"button\" class=\"btn btn-danger btn-sm btn-delete\" (click)=\"clean()\">\r\n\t\t\t\t\tBorrar filtros\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"btn-group\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\tclass=\"btn btn-warning btn-sm btn-clear\"\r\n\t\t\t\t\t(click)=\"deleteAll()\"\r\n\t\t\t\t>\r\n\t\t\t\t\tlimpiar datos\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".button_filter .btn{line-height:12px;width:22px;height:22px}.button_filter .btn.btn-success{background-color:transparent;border:1px solid #4cae4c;color:#4cae4c}.button_filter .btn.btn-success:hover{background-color:#4cae4c;color:#fff}.button_filter .btn-danger{background-color:transparent;color:#d43f3a}.button_filter .btn-danger:hover{background-color:#d43f3a;color:#fff}.conector .btn{height:22px;line-height:12px}.btn{padding:5px}.btn-rounded{border-radius:50%!important}.btn-delete,.btn-save,.btn-definition,.btn-clear{background-color:transparent;color:#333;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.btn-delete:hover{background-color:#d43f3a;color:#fff}.btn-save:hover{background-color:#4cae4c;color:#fff}.btn-definition:hover{color:#fff;background-color:#ccc}.btn-clear:hover{background-color:#eea236;color:#fff}.br-5{border-radius:5px!important}.mr-sm{margin-right:5px}.ml-sm{margin-left:5px}.flex{display:flex!important}.flow-row-wrap{flex-flow:row wrap}.align-items-center{align-items:center}.dialog-max-size .ui-dialog{width:95%!important}.segmentation-group .form-control.select-operation{width:40%;font-size:11px;padding-left:3px;padding-right:3px}.segmentation-group .form-control.input-value{width:60%}.segmentation-filter{margin-bottom:10px}.panel-button{background-color:#f8f8f8;padding-top:10px;padding-bottom:10px;border-top:1px solid rgb(231,231,231);border-bottom:1px solid rgb(231,231,231);text-align:right}\n"] }]
|
|
4868
4868
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: CommonService }], propDecorators: { lSegFilter: [{
|
|
@@ -4916,10 +4916,10 @@ class ExcelToJsonComponent {
|
|
|
4916
4916
|
};
|
|
4917
4917
|
reader.readAsBinaryString(target.files[0]);
|
|
4918
4918
|
}
|
|
4919
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4920
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
4919
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ExcelToJsonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4920
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ExcelToJsonComponent, selector: "pli-excel-to-json", outputs: { onLoadFile: "onLoadFile" }, ngImport: i0, template: "<input type=\"file\" [disabled]=\"disableButton\" (change)=\"onFileChange($event)\" multiple=\"false\" />\r\n", styles: [""] }); }
|
|
4921
4921
|
}
|
|
4922
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ExcelToJsonComponent, decorators: [{
|
|
4923
4923
|
type: Component,
|
|
4924
4924
|
args: [{ selector: 'pli-excel-to-json', standalone: false, template: "<input type=\"file\" [disabled]=\"disableButton\" (change)=\"onFileChange($event)\" multiple=\"false\" />\r\n" }]
|
|
4925
4925
|
}], ctorParameters: () => [], propDecorators: { onLoadFile: [{
|
|
@@ -4951,10 +4951,10 @@ class ConfigurationCommonsComponent extends CommonListsComponent {
|
|
|
4951
4951
|
}
|
|
4952
4952
|
}
|
|
4953
4953
|
}
|
|
4954
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4955
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
4954
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationCommonsComponent, deps: [{ token: CommonService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4955
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ConfigurationCommonsComponent, selector: "app-configuration-commons", usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
|
|
4956
4956
|
}
|
|
4957
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationCommonsComponent, decorators: [{
|
|
4958
4958
|
type: Component,
|
|
4959
4959
|
args: [{
|
|
4960
4960
|
selector: 'app-configuration-commons',
|
|
@@ -5055,10 +5055,10 @@ class PdfConfigComponent extends ConfigurationCommonsComponent {
|
|
|
5055
5055
|
setListToken(listToken) {
|
|
5056
5056
|
this.listStaticToken = listToken;
|
|
5057
5057
|
}
|
|
5058
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5059
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: PdfConfigComponent, isStandalone: false, selector: "pli-pdf-config", inputs: { promCodigo: "promCodigo", showFormula: "showFormula", showSnapshot: "showSnapshot", showSnapshotForm: "showSnapshotForm", showName: "showName", showIdiCodigo: "showIdiCodigo", showCdocCodigo: "showCdocCodigo", showTemplate: "showTemplate", showVisibles: "showVisibles", showVisiblesDirectTo: "showVisiblesDirectTo", showMargins: "showMargins", showHeader: "showHeader", showFooter: "showFooter", showFont: "showFont", showTokens: "showTokens", showFrm: "showFrm", showStatic: "showStatic", showBudget: "showBudget", showCalculated: "showCalculated", showCalculatedForm: "showCalculatedForm", showSize: "showSize", showOrientation: "showOrientation", showRepeatHeader: "showRepeatHeader", showRepeatFooter: "showRepeatFooter", showPager: "showPager", showHeaderFooterHeight: "showHeaderFooterHeight", tgdocCodigo: "tgdocCodigo", pdfConfig: "pdfConfig", toolbar: "toolbar" }, outputs: { pdfConfigChange: "pdfConfigChange" }, usesInheritance: true, ngImport: i0, template: "<div class=\"row\">\r\n\t<div class=\"col-md-3\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showName\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Nombre *</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\tname=\"name\"\r\n\t\t\t\t\t\tid=\"name\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.name\"\r\n\t\t\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showFormula\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"formula\" class=\"form-control-label\"\r\n\t\t\t\t\t\t>F\u00F3rmula de la visibilidad del documento</label\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<textarea\r\n\t\t\t\t\t\tstyle=\"resize: vertical\"\r\n\t\t\t\t\t\trows=\"2\"\r\n\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\tname=\"formula\"\r\n\t\t\t\t\t\tid=\"formula\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.formula\"\r\n\t\t\t\t\t\tplaceholder=\"Formula de la visibilidad del documento\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t</textarea>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showIdiCodigo\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"idiCodigo\" class=\"form-control-label\">Idioma *</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"idiCodigo\"\r\n\t\t\t\t\t\tid=\"idiCodigo\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.idiCodigo\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option value=\"\">-- Seleccione opci\u00F3n</option>\r\n\t\t\t\t\t\t<option *ngFor=\"let language of listLanguage\" [value]=\"language.idiCodigo\">\r\n\t\t\t\t\t\t\t{{ language.idiIdioma }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showCdocCodigo\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"cdocCodigo\" class=\"form-control-label\">Tipo documento *</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"cdocCodigo\"\r\n\t\t\t\t\t\tid=\"cdocCodigo\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.cdocCodigo\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option value=\"\">-- Seleccione opci\u00F3n</option>\r\n\t\t\t\t\t\t<option *ngFor=\"let document of listDocument\" [value]=\"document.id\">\r\n\t\t\t\t\t\t\t{{ document.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showVisibles\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Visibilidad usuario</label>\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t\tid=\"visibleInternal\"\r\n\t\t\t\t\t\t\t\tname=\"visibleInternal\"\r\n\t\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.visibleInternal\"\r\n\t\t\t\t\t\t\t/> <label for=\"visibleInternal\">Interno</label> \r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t\tid=\"visibleExternal\"\r\n\t\t\t\t\t\t\t\tname=\"visibleExternal\"\r\n\t\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.visibleExternal\"\r\n\t\t\t\t\t\t\t/> \r\n\t\t\t\t\t\t\t<label for=\"visibleExternal\">Externo</label>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showVisiblesDirectTo\" >\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Visibilidad de Dirigido a</label>\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\tid=\"notVisibleDirectTo\"\r\n\t\t\t\t\t\t\tname=\"notVisibleDirectTo\"\r\n\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.notVisibleDirectTo\"\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showFont\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"font\" class=\"form-control-label\">Tipo de letra</label>\r\n\t\t\t\t\t<select name=\"font\" id=\"font\" class=\"form-control\" [(ngModel)]=\"pdfConfig.font\">\r\n\t\t\t\t\t\t<option *ngFor=\"let font of listFont\" [value]=\"font.value\">\r\n\t\t\t\t\t\t\t{{ font.label }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showSize\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"size\" class=\"form-control-label\">Tama\u00F1o de hoja</label>\r\n\t\t\t\t\t<select name=\"size\" id=\"size\" class=\"form-control\" [(ngModel)]=\"pdfConfig.size\">\r\n\t\t\t\t\t\t<option *ngFor=\"let size of listSizes\" [value]=\"size.id\">\r\n\t\t\t\t\t\t\t{{ size.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showOrientation\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"orientation\" class=\"form-control-label\">Orientaci\u00F3n</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"orientation\"\r\n\t\t\t\t\t\tid=\"orientation\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.orientation\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option\r\n\t\t\t\t\t\t\t*ngFor=\"let orientation of listOrientation\"\r\n\t\t\t\t\t\t\t[value]=\"orientation.id\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t{{ orientation.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showPager\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.showPager\"\r\n\t\t\t\t\t\tid=\"showPager\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"showPager\" class=\"form-control-label\"> Ver paginador</label>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showRepeatHeader\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.repeatHeader\"\r\n\t\t\t\t\t\tid=\"repeatHeader\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"repeatHeader\" class=\"form-control-label\"> Repetir encabezado</label>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showRepeatFooter\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.repeatFooter\"\r\n\t\t\t\t\t\tid=\"repeatFooter\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"repeatFooter\" class=\"form-control-label\">\r\n\t\t\t\t\t\tRepetir pie de p\u00E1gina</label\r\n\t\t\t\t\t>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-md-12\" *ngIf=\"showMargins\" [ngClass]=\"{ 'top-space': showBr }\">\r\n\t\t\t\tM\u00E1rgenes (cm)\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Arriba</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Arriba\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginRight\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Derecha</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Derecha\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginBottom\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Abajo</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Abajo\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginLeft\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Izquierda</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Izquierda\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div\r\n\t\t\t\tclass=\"col-md-12\"\r\n\t\t\t\t*ngIf=\"showHeaderFooterHeight\"\r\n\t\t\t\t[ngClass]=\"{ 'top-space': showBr }\"\r\n\t\t\t>\r\n\t\t\t\tAlturas (cm)\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showHeaderFooterHeight\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Cabecera</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Cabecera\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showHeaderFooterHeight\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Pie de p\u00E1gina</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Pie de p\u00E1g\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12 margin-top\" *ngIf=\"showTokens\">\r\n\t\t\t\t<pli-configuration-token\r\n\t\t\t\t\t[promCodigo]=\"promCodigo\"\r\n\t\t\t\t\t[showFrm]=\"showFrm\"\r\n\t\t\t\t\t[showStatic]=\"showStatic\"\r\n\t\t\t\t\t[showBudget]=\"showBudget\"\r\n\t\t\t\t\t[showCalculated]=\"showCalculated\"\r\n\t\t\t\t\t[showCalculatedForm]=\"showCalculatedForm\"\r\n\t\t\t\t\t[showSnapshotForm]=\"showSnapshotForm\"\r\n\t\t\t\t\t[showSnapshot]=\"showSnapshot\"\r\n\t\t\t\t></pli-configuration-token>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"col-md-9\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-12\" *ngIf=\"showHeader\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"header\" class=\"form-control-label\">Encabezado</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.header\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"row margin-top\" *ngIf=\"showTemplate\">\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"template\" class=\"form-control-label\">Cuerpo</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.template\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"row margin-top\" *ngIf=\"showFooter\">\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"footer\" class=\"form-control-label\">Pie de p\u00E1gina</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.footer\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".top-space{margin-top:12px}.check-space{margin-right:5px}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4$2.EditorComponent, selector: "editor", inputs: ["cloudChannel", "apiKey", "licenseKey", "init", "id", "initialValue", "outputFormat", "inline", "tagName", "plugins", "toolbar", "modelEvents", "allowedEvents", "ignoreEvents", "readonly", "disabled"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i5.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: ConfigurationTokenComponent, selector: "pli-configuration-token", inputs: ["promCodigo", "showFrm", "showFrmMultiple", "showStatic", "showBudget", "showCalculated", "showCalculatedForm", "showSnapshot", "showSnapshotForm", "showDocument", "showTask", "showGuatantee", "showDocumentAutoAnalysis", "showGuatanteeForm", "showAsTitle"], outputs: ["onStaticToken"] }] }); }
|
|
5058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfConfigComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: CommonService }, { token: ConfigurationDocumentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5059
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PdfConfigComponent, selector: "pli-pdf-config", inputs: { promCodigo: "promCodigo", showFormula: "showFormula", showSnapshot: "showSnapshot", showSnapshotForm: "showSnapshotForm", showName: "showName", showIdiCodigo: "showIdiCodigo", showCdocCodigo: "showCdocCodigo", showTemplate: "showTemplate", showVisibles: "showVisibles", showVisiblesDirectTo: "showVisiblesDirectTo", showMargins: "showMargins", showHeader: "showHeader", showFooter: "showFooter", showFont: "showFont", showTokens: "showTokens", showFrm: "showFrm", showStatic: "showStatic", showBudget: "showBudget", showCalculated: "showCalculated", showCalculatedForm: "showCalculatedForm", showSize: "showSize", showOrientation: "showOrientation", showRepeatHeader: "showRepeatHeader", showRepeatFooter: "showRepeatFooter", showPager: "showPager", showHeaderFooterHeight: "showHeaderFooterHeight", tgdocCodigo: "tgdocCodigo", pdfConfig: "pdfConfig", toolbar: "toolbar" }, outputs: { pdfConfigChange: "pdfConfigChange" }, usesInheritance: true, ngImport: i0, template: "<div class=\"row\">\r\n\t<div class=\"col-md-3\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showName\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Nombre *</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\tname=\"name\"\r\n\t\t\t\t\t\tid=\"name\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.name\"\r\n\t\t\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showFormula\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"formula\" class=\"form-control-label\"\r\n\t\t\t\t\t\t>F\u00F3rmula de la visibilidad del documento</label\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<textarea\r\n\t\t\t\t\t\tstyle=\"resize: vertical\"\r\n\t\t\t\t\t\trows=\"2\"\r\n\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\tname=\"formula\"\r\n\t\t\t\t\t\tid=\"formula\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.formula\"\r\n\t\t\t\t\t\tplaceholder=\"Formula de la visibilidad del documento\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t</textarea>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showIdiCodigo\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"idiCodigo\" class=\"form-control-label\">Idioma *</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"idiCodigo\"\r\n\t\t\t\t\t\tid=\"idiCodigo\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.idiCodigo\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option value=\"\">-- Seleccione opci\u00F3n</option>\r\n\t\t\t\t\t\t<option *ngFor=\"let language of listLanguage\" [value]=\"language.idiCodigo\">\r\n\t\t\t\t\t\t\t{{ language.idiIdioma }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showCdocCodigo\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"cdocCodigo\" class=\"form-control-label\">Tipo documento *</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"cdocCodigo\"\r\n\t\t\t\t\t\tid=\"cdocCodigo\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.cdocCodigo\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option value=\"\">-- Seleccione opci\u00F3n</option>\r\n\t\t\t\t\t\t<option *ngFor=\"let document of listDocument\" [value]=\"document.id\">\r\n\t\t\t\t\t\t\t{{ document.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showVisibles\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Visibilidad usuario</label>\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t\tid=\"visibleInternal\"\r\n\t\t\t\t\t\t\t\tname=\"visibleInternal\"\r\n\t\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.visibleInternal\"\r\n\t\t\t\t\t\t\t/> <label for=\"visibleInternal\">Interno</label> \r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t\tid=\"visibleExternal\"\r\n\t\t\t\t\t\t\t\tname=\"visibleExternal\"\r\n\t\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.visibleExternal\"\r\n\t\t\t\t\t\t\t/> \r\n\t\t\t\t\t\t\t<label for=\"visibleExternal\">Externo</label>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showVisiblesDirectTo\" >\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Visibilidad de Dirigido a</label>\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\tid=\"notVisibleDirectTo\"\r\n\t\t\t\t\t\t\tname=\"notVisibleDirectTo\"\r\n\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.notVisibleDirectTo\"\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showFont\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"font\" class=\"form-control-label\">Tipo de letra</label>\r\n\t\t\t\t\t<select name=\"font\" id=\"font\" class=\"form-control\" [(ngModel)]=\"pdfConfig.font\">\r\n\t\t\t\t\t\t<option *ngFor=\"let font of listFont\" [value]=\"font.value\">\r\n\t\t\t\t\t\t\t{{ font.label }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showSize\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"size\" class=\"form-control-label\">Tama\u00F1o de hoja</label>\r\n\t\t\t\t\t<select name=\"size\" id=\"size\" class=\"form-control\" [(ngModel)]=\"pdfConfig.size\">\r\n\t\t\t\t\t\t<option *ngFor=\"let size of listSizes\" [value]=\"size.id\">\r\n\t\t\t\t\t\t\t{{ size.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showOrientation\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"orientation\" class=\"form-control-label\">Orientaci\u00F3n</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"orientation\"\r\n\t\t\t\t\t\tid=\"orientation\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.orientation\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option\r\n\t\t\t\t\t\t\t*ngFor=\"let orientation of listOrientation\"\r\n\t\t\t\t\t\t\t[value]=\"orientation.id\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t{{ orientation.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showPager\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.showPager\"\r\n\t\t\t\t\t\tid=\"showPager\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"showPager\" class=\"form-control-label\"> Ver paginador</label>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showRepeatHeader\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.repeatHeader\"\r\n\t\t\t\t\t\tid=\"repeatHeader\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"repeatHeader\" class=\"form-control-label\"> Repetir encabezado</label>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showRepeatFooter\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.repeatFooter\"\r\n\t\t\t\t\t\tid=\"repeatFooter\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"repeatFooter\" class=\"form-control-label\">\r\n\t\t\t\t\t\tRepetir pie de p\u00E1gina</label\r\n\t\t\t\t\t>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-md-12\" *ngIf=\"showMargins\" [ngClass]=\"{ 'top-space': showBr }\">\r\n\t\t\t\tM\u00E1rgenes (cm)\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Arriba</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Arriba\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginRight\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Derecha</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Derecha\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginBottom\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Abajo</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Abajo\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginLeft\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Izquierda</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Izquierda\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div\r\n\t\t\t\tclass=\"col-md-12\"\r\n\t\t\t\t*ngIf=\"showHeaderFooterHeight\"\r\n\t\t\t\t[ngClass]=\"{ 'top-space': showBr }\"\r\n\t\t\t>\r\n\t\t\t\tAlturas (cm)\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showHeaderFooterHeight\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Cabecera</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Cabecera\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showHeaderFooterHeight\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Pie de p\u00E1gina</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Pie de p\u00E1g\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12 margin-top\" *ngIf=\"showTokens\">\r\n\t\t\t\t<pli-configuration-token\r\n\t\t\t\t\t[promCodigo]=\"promCodigo\"\r\n\t\t\t\t\t[showFrm]=\"showFrm\"\r\n\t\t\t\t\t[showStatic]=\"showStatic\"\r\n\t\t\t\t\t[showBudget]=\"showBudget\"\r\n\t\t\t\t\t[showCalculated]=\"showCalculated\"\r\n\t\t\t\t\t[showCalculatedForm]=\"showCalculatedForm\"\r\n\t\t\t\t\t[showSnapshotForm]=\"showSnapshotForm\"\r\n\t\t\t\t\t[showSnapshot]=\"showSnapshot\"\r\n\t\t\t\t></pli-configuration-token>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"col-md-9\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-12\" *ngIf=\"showHeader\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"header\" class=\"form-control-label\">Encabezado</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.header\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"row margin-top\" *ngIf=\"showTemplate\">\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"template\" class=\"form-control-label\">Cuerpo</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.template\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"row margin-top\" *ngIf=\"showFooter\">\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"footer\" class=\"form-control-label\">Pie de p\u00E1gina</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.footer\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".top-space{margin-top:12px}.check-space{margin-right:5px}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4$2.EditorComponent, selector: "editor", inputs: ["cloudChannel", "apiKey", "init", "id", "initialValue", "outputFormat", "inline", "tagName", "plugins", "toolbar", "modelEvents", "allowedEvents", "ignoreEvents", "disabled"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i5.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: ConfigurationTokenComponent, selector: "pli-configuration-token", inputs: ["promCodigo", "showFrm", "showFrmMultiple", "showStatic", "showBudget", "showCalculated", "showCalculatedForm", "showSnapshot", "showSnapshotForm", "showDocument", "showTask", "showGuatantee", "showDocumentAutoAnalysis", "showGuatanteeForm", "showAsTitle"], outputs: ["onStaticToken"] }] }); }
|
|
5060
5060
|
}
|
|
5061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfConfigComponent, decorators: [{
|
|
5062
5062
|
type: Component,
|
|
5063
5063
|
args: [{ selector: 'pli-pdf-config', standalone: false, template: "<div class=\"row\">\r\n\t<div class=\"col-md-3\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showName\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Nombre *</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\tname=\"name\"\r\n\t\t\t\t\t\tid=\"name\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.name\"\r\n\t\t\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showFormula\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"formula\" class=\"form-control-label\"\r\n\t\t\t\t\t\t>F\u00F3rmula de la visibilidad del documento</label\r\n\t\t\t\t\t>\r\n\t\t\t\t\t<textarea\r\n\t\t\t\t\t\tstyle=\"resize: vertical\"\r\n\t\t\t\t\t\trows=\"2\"\r\n\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\tname=\"formula\"\r\n\t\t\t\t\t\tid=\"formula\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.formula\"\r\n\t\t\t\t\t\tplaceholder=\"Formula de la visibilidad del documento\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t</textarea>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showIdiCodigo\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"idiCodigo\" class=\"form-control-label\">Idioma *</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"idiCodigo\"\r\n\t\t\t\t\t\tid=\"idiCodigo\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.idiCodigo\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option value=\"\">-- Seleccione opci\u00F3n</option>\r\n\t\t\t\t\t\t<option *ngFor=\"let language of listLanguage\" [value]=\"language.idiCodigo\">\r\n\t\t\t\t\t\t\t{{ language.idiIdioma }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showCdocCodigo\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"cdocCodigo\" class=\"form-control-label\">Tipo documento *</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"cdocCodigo\"\r\n\t\t\t\t\t\tid=\"cdocCodigo\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.cdocCodigo\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option value=\"\">-- Seleccione opci\u00F3n</option>\r\n\t\t\t\t\t\t<option *ngFor=\"let document of listDocument\" [value]=\"document.id\">\r\n\t\t\t\t\t\t\t{{ document.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showVisibles\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Visibilidad usuario</label>\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t\tid=\"visibleInternal\"\r\n\t\t\t\t\t\t\t\tname=\"visibleInternal\"\r\n\t\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.visibleInternal\"\r\n\t\t\t\t\t\t\t/> <label for=\"visibleInternal\">Interno</label> \r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t\tid=\"visibleExternal\"\r\n\t\t\t\t\t\t\t\tname=\"visibleExternal\"\r\n\t\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.visibleExternal\"\r\n\t\t\t\t\t\t\t/> \r\n\t\t\t\t\t\t\t<label for=\"visibleExternal\">Externo</label>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showVisiblesDirectTo\" >\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"name\" class=\"form-control-label\">Visibilidad de Dirigido a</label>\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\tid=\"notVisibleDirectTo\"\r\n\t\t\t\t\t\t\tname=\"notVisibleDirectTo\"\r\n\t\t\t\t\t\t\tvalue=\"1\"\r\n\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.notVisibleDirectTo\"\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showFont\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"font\" class=\"form-control-label\">Tipo de letra</label>\r\n\t\t\t\t\t<select name=\"font\" id=\"font\" class=\"form-control\" [(ngModel)]=\"pdfConfig.font\">\r\n\t\t\t\t\t\t<option *ngFor=\"let font of listFont\" [value]=\"font.value\">\r\n\t\t\t\t\t\t\t{{ font.label }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showSize\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"size\" class=\"form-control-label\">Tama\u00F1o de hoja</label>\r\n\t\t\t\t\t<select name=\"size\" id=\"size\" class=\"form-control\" [(ngModel)]=\"pdfConfig.size\">\r\n\t\t\t\t\t\t<option *ngFor=\"let size of listSizes\" [value]=\"size.id\">\r\n\t\t\t\t\t\t\t{{ size.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showOrientation\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"orientation\" class=\"form-control-label\">Orientaci\u00F3n</label>\r\n\t\t\t\t\t<select\r\n\t\t\t\t\t\tname=\"orientation\"\r\n\t\t\t\t\t\tid=\"orientation\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.orientation\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<option\r\n\t\t\t\t\t\t\t*ngFor=\"let orientation of listOrientation\"\r\n\t\t\t\t\t\t\t[value]=\"orientation.id\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t{{ orientation.name }}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t</select>\r\n\t\t\t\t\t<div class=\"form-control-error\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showPager\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.showPager\"\r\n\t\t\t\t\t\tid=\"showPager\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"showPager\" class=\"form-control-label\"> Ver paginador</label>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showRepeatHeader\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.repeatHeader\"\r\n\t\t\t\t\t\tid=\"repeatHeader\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"repeatHeader\" class=\"form-control-label\"> Repetir encabezado</label>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12\" *ngIf=\"showRepeatFooter\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\tclass=\"check-space\"\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.repeatFooter\"\r\n\t\t\t\t\t\tid=\"repeatFooter\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<label for=\"repeatFooter\" class=\"form-control-label\">\r\n\t\t\t\t\t\tRepetir pie de p\u00E1gina</label\r\n\t\t\t\t\t>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-md-12\" *ngIf=\"showMargins\" [ngClass]=\"{ 'top-space': showBr }\">\r\n\t\t\t\tM\u00E1rgenes (cm)\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Arriba</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Arriba\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginTop\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginRight\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Derecha</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Derecha\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginRight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginBottom\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Abajo</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Abajo\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginBottom\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showMargins\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginLeft\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Izquierda</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Izquierda\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.marginLeft\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div\r\n\t\t\t\tclass=\"col-md-12\"\r\n\t\t\t\t*ngIf=\"showHeaderFooterHeight\"\r\n\t\t\t\t[ngClass]=\"{ 'top-space': showBr }\"\r\n\t\t\t>\r\n\t\t\t\tAlturas (cm)\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showHeaderFooterHeight\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Cabecera</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Cabecera\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.headerHeight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-sm-6\" *ngIf=\"showHeaderFooterHeight\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\t<div class=\"col-xs-12\">\r\n\t\t\t\t\t\t\t<label for=\"pdfConfig.marginTop\" class=\"form-control-label\"\r\n\t\t\t\t\t\t\t\t>Pie de p\u00E1gina</label\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<input\r\n\t\t\t\t\t\t\t\ttype=\"number\"\r\n\t\t\t\t\t\t\t\tname=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t\tid=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Pie de p\u00E1g\"\r\n\t\t\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.footerHeight\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-sm-12 margin-top\" *ngIf=\"showTokens\">\r\n\t\t\t\t<pli-configuration-token\r\n\t\t\t\t\t[promCodigo]=\"promCodigo\"\r\n\t\t\t\t\t[showFrm]=\"showFrm\"\r\n\t\t\t\t\t[showStatic]=\"showStatic\"\r\n\t\t\t\t\t[showBudget]=\"showBudget\"\r\n\t\t\t\t\t[showCalculated]=\"showCalculated\"\r\n\t\t\t\t\t[showCalculatedForm]=\"showCalculatedForm\"\r\n\t\t\t\t\t[showSnapshotForm]=\"showSnapshotForm\"\r\n\t\t\t\t\t[showSnapshot]=\"showSnapshot\"\r\n\t\t\t\t></pli-configuration-token>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"col-md-9\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-12\" *ngIf=\"showHeader\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"header\" class=\"form-control-label\">Encabezado</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.header\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"row margin-top\" *ngIf=\"showTemplate\">\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"template\" class=\"form-control-label\">Cuerpo</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.template\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"row margin-top\" *ngIf=\"showFooter\">\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<div class=\"form-group\">\r\n\t\t\t\t\t<label for=\"footer\" class=\"form-control-label\">Pie de p\u00E1gina</label>\r\n\t\t\t\t\t<editor\r\n\t\t\t\t\t\t[(ngModel)]=\"pdfConfig.footer\"\r\n\t\t\t\t\t\t[init]=\"{\r\n\t\t\t\t\t\t\tbranding: false,\r\n\t\t\t\t\t\t\tbase_url: '/tinymce',\r\n\t\t\t\t\t\t\tsuffix: '.min',\r\n\t\t\t\t\t\t\tplugins: [\r\n\t\t\t\t\t\t\t\t'code preview autoresize paste colorpicker textcolor link table lists advlist image'\r\n\t\t\t\t\t\t\t],\r\n\t\t\t\t\t\t\ttoolbar:\r\n\t\t\t\t\t\t\t\t'undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor fontsizeselect | code preview image link'\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t></editor>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".top-space{margin-top:12px}.check-space{margin-right:5px}\n"] }]
|
|
5064
5064
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: CommonService }, { type: ConfigurationDocumentService }], propDecorators: { promCodigo: [{
|
|
@@ -5282,10 +5282,10 @@ class DataFormService {
|
|
|
5282
5282
|
getByApplicationIdList(lApplicationId) {
|
|
5283
5283
|
return this.httpClient.get(this.environment.host.backend.frontoffice + 'data/getByApplicationIdList', { params: new HttpParams().set('lApplicationId', lApplicationId.toString()) });
|
|
5284
5284
|
}
|
|
5285
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5286
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5285
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataFormService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
5286
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataFormService, providedIn: 'root' }); }
|
|
5287
5287
|
}
|
|
5288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataFormService, decorators: [{
|
|
5289
5289
|
type: Injectable,
|
|
5290
5290
|
args: [{
|
|
5291
5291
|
providedIn: 'root'
|
|
@@ -5531,10 +5531,10 @@ class ApplicationService {
|
|
|
5531
5531
|
updateAllStatusAndColor(newCommitteeSelectedTo) {
|
|
5532
5532
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'application/updateAllStatusAndColor', newCommitteeSelectedTo, this.headerJson);
|
|
5533
5533
|
}
|
|
5534
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5535
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5534
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
5535
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationService, providedIn: 'root' }); }
|
|
5536
5536
|
}
|
|
5537
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationService, decorators: [{
|
|
5538
5538
|
type: Injectable,
|
|
5539
5539
|
args: [{
|
|
5540
5540
|
providedIn: 'root'
|
|
@@ -5589,10 +5589,10 @@ class TokenTransformationService {
|
|
|
5589
5589
|
};
|
|
5590
5590
|
return this.httpClient.post(this.environment.host.backend.configuration + 'token-transformation/resolveFormula', data, this.headerJson);
|
|
5591
5591
|
}
|
|
5592
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5593
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5592
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokenTransformationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
5593
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokenTransformationService, providedIn: 'root' }); }
|
|
5594
5594
|
}
|
|
5595
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokenTransformationService, decorators: [{
|
|
5596
5596
|
type: Injectable,
|
|
5597
5597
|
args: [{
|
|
5598
5598
|
providedIn: 'root'
|
|
@@ -5772,10 +5772,10 @@ class PdfGeneratorComponent {
|
|
|
5772
5772
|
buttons[i].style.display = 'none';
|
|
5773
5773
|
}
|
|
5774
5774
|
}
|
|
5775
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5776
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: PdfGeneratorComponent, isStandalone: false, selector: "pli-pdf-generator", inputs: { configurations: "configurations", applicationId: "applicationId", showLabel: "showLabel", actionClass: "actionClass", promCode: "promCode" }, outputs: { onDownload: "onDownload" }, host: { listeners: { "click": "onClick($event)" } }, viewQueries: [{ propertyName: "contentElement", first: true, predicate: ["content"], descendants: true }], ngImport: i0, template: "<div #content id=\"content\" class=\"main-content\" [class.main-content--show]=\"display\">\r\n\t<div class=\"header\">\r\n\t\t<div class=\"header-item\">\r\n\t\t\t<img [src]=\"urlLogo\" alt=\"logo\" class=\"img-logo\" />\r\n\t\t</div>\r\n\t\t<div class=\"header-item\">\r\n\t\t\t<div [innerHTML]=\"headerHtml\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\t<div *ngFor=\"let f of dataForms; index as i\">\r\n\t\t<formio [form]=\"forms[i]\" [submission]=\"dataForms[i]\"></formio>\r\n\t\t<div class=\"html2pdf__page-break\"></div>\r\n\t</div>\r\n\t<div [innerHTML]=\"footerHtml\"></div>\r\n</div>\r\n<div class=\"btn btn-default\">\r\n\t<button type=\"button\" class=\"fa fa-file-pdf btn-sm\" (click)=\"menu.toggle($event)\" title=\"PDF\">\r\n\t\t{{ showLabel ? 'Generar PDF' : '' }}\r\n\t</button>\r\n</div>\r\n<p-tieredMenu #menu [model]=\"items\" appendTo=\"body\" [popup]=\"true\"></p-tieredMenu>\r\n", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700\";@import\"https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap\";.text-menu,a.help_menu,a.letter,.mat-drawer-inner-container .mat-list-base .mat-list-item{color:#000;height:auto!important;padding:.3em 0;margin-bottom:0;border-left:0;font-size:15px;font-weight:300;line-height:17px;font-family:Roboto,sans-serif;min-height:20px!important}.text-menu:hover,a.help_menu:hover,a.letter:hover,.mat-drawer-inner-container .mat-list-base .mat-list-item:hover{color:#00a5e6!important;background-color:transparent}.text-menu:focus,a.help_menu:focus,a.letter:focus,.mat-drawer-inner-container .mat-list-base .mat-list-item:focus{color:#fff;background-color:#da291c}body{margin:auto;display:block;max-width:1280px;background-color:#fafafa}.sin-padding{padding:0!important}.mat-toolbar-single-row{height:72px!important}.mat-drawer-content{position:relative}.img-logo{max-width:100%}.card p{color:#666;font-size:16px;font-weight:300;line-height:22px;font-family:Roboto,sans-serif;margin-top:0;margin-bottom:15px}.mat-drawer-inner-container .mat-list-base{border:1px solid #cccccc;margin-top:20px;padding-top:0!important;padding-bottom:15px;background-color:#f7f7f7;cursor:auto}.mat-toolbar.mat-primary{border-bottom:2px solid #da291c!important}.mat-toolbar.mat-primary .button-close-session{background-color:transparent}mat-toolbar.mat-toolbar{margin-bottom:0!important}.mat-drawer-side{border-right:0}#list-home{margin-bottom:0!important}.formio-form{padding:0 15px}mat-toolbar.mat-toolbar,.mat-drawer{position:relative!important}.mat-toolbar{background-color:transparent}.mat-toolbar.header--light{padding:0}.mat-toolbar h3{width:100%;display:block;font-size:27px;font-weight:400;font-family:Roboto,sans-serif;margin-top:0;margin-bottom:0;padding-bottom:6px;border-bottom:1px solid #cccccc}mat-toolbar.mat-toolbar{box-shadow:none;margin-bottom:0}.mat-drawer-container{background-color:#fff}.mat-sidenav-content,.mat-drawer-inner-container{padding-top:0}.mat-drawer.mat-drawer-side{float:left}.button-close-session{position:absolute!important;right:5px;height:40px;color:#fff;border-radius:0;border-left:1px solid #bbb}.button-close-session:before{content:\"\";width:25px;height:22px;position:absolute;background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/otrocerrar.png)}.button-close-session:hover{color:#fff}.button-close-session:hover:before{background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/otrocerrar.png)}.card{border:0!important;border-bottom:1px solid #ccc!important;background-color:#fff;border-radius:0}.card .card-header{padding:0;border-bottom:0;background-color:#fff}.card h4.card-title{font-size:19px;font-family:Roboto,sans-serif;font-weight:400;margin-top:5px;margin-bottom:5px!important}.card .card-body{padding:.3rem 15px}.stats h4.panel-title{font-size:15px}.stats label.control-label--hidden{display:none}.stats.required h4.panel-title{position:relative}.stats.required h4.panel-title:after{content:\"*\";color:#da291c;margin-right:.5em;height:30px}.card.No_border{border-bottom:0!important}.mat-drawer-inner-container .mat-list-base{margin-top:0;padding-bottom:0}.menu .mat-list-item.active:hover{background-color:#da291c!important;color:#fff!important}.menu .mat-list-item.active:hover .mat-list-item-content{color:#fff!important}a.letter{display:block;padding-left:10px;margin-top:10px}a.letter:hover{text-decoration:none;background-color:transparent!important;color:#00a5e6!important}a.letter img{margin-right:.3em}a.help_menu{display:block;padding-left:10px;margin-top:5px}a.help_menu img{margin-right:.3em}a.help_menu:hover{text-decoration:none}a.mat-list-item.letter.active,a.mat-list-item.help_menu.active{color:#da291c!important;background-color:transparent}.mat-drawer.mat-drawer-end{position:fixed!important}.mat-drawer-inner-container .mat-list-base .mat-list-item .mat-list-item-content{padding-right:0!important}.send .mat-list-item-content{padding-left:0!important}label{color:#333;font-size:14px;font-weight:300;font-family:Roboto,sans-serif;margin-bottom:0;position:relative}label i.fa-question-circle{position:relative;left:2px}label.control-label--hidden:after{position:absolute;right:inherit;left:0;font-size:15px;line-height:13px}.no_label label.control-label--hidden{position:relative;right:inherit;left:0;float:left;width:15px;height:10px;margin-right:inherit!important}.no_label input[type=text]{width:90%}.no_label div.choices{margin-left:15px}.form-group{margin-bottom:8px;margin-top:8px}.form-group .form-control{height:22px;font-size:14px;font-weight:300;font-family:Roboto,sans-serif;padding:4px;border-radius:0!important}.form-group textarea.form-control{min-height:50px;height:auto!important}.form-group select.form-control{height:22px;line-height:22px;padding:0}.form-group .choices.form-group.formio-choices .form-control{padding:0 10px}.form-group .button-copy{color:#08c;font-size:15px;font-weight:400;padding:0}.n_margin .form-group,.form-group.formio-choices{margin-top:0;margin-bottom:0}.n_padding,.n_padding_card .card-body{padding:0}.form-control[readonly]{background-color:#f5f5f5}.form-control:disabled{background-color:transparent!important;border:0!important}input{border:1px solid #CCCCCC;line-height:1;font-family:Roboto,sans-serif}textarea:focus,input:focus{box-shadow:0 0 0 .1rem #8daee5!important;border-color:#8daee5!important;background-color:#fff6de!important}.sidenav{width:230px}.btn{padding:3px 10px!important;font-size:14px!important;font-weight:400!important;font-family:Roboto,sans-serif!important;min-width:initial;width:auto;border-radius:0!important}.btn:focus{box-shadow:none}.btn-info,.btn-info:hover{background-color:#08c;border:0;background-image:none!important}.btn-success,.btn-primary{border:0;border-radius:0;background-image:none}.btn-success:hover,.btn-primary:hover{border:0!important;background-image:none;background-color:#d20000}.btn-primary{background-color:#08c}.editgrid-add .btn{width:23px;height:23px;border-radius:50%!important;font-size:20px!important;line-height:1px;font-weight:400!important;border:2px solid #449d44;color:#449d44;background-color:transparent;text-align:center;padding:2px!important;transition:all .3s}.editgrid-add .btn:hover,.editgrid-add .btn:active{background-color:#449d44;color:#fff;box-shadow:none!important;border:1px solid #FFF!important}.editgrid-listgroup .list-group-header{background-color:#e3e3e3!important;border-radius:0!important}.editgrid-listgroup .list-group-header div{border-left:1px solid #fff;border-right:1px solid #fff;font-family:Roboto Condensed,sans-serif;font-weight:300;font-size:14px}.editgrid-listgroup .list-group-header:nth-child(1){border-right:0}.editgrid-listgroup .list-group-item{border:0;position:relative;padding:0 5px!important;background-color:transparent}.editgrid-listgroup .list-group-item small{font-size:14px;font-weight:300}.editgrid-listgroup .list-group-item small strong{font-weight:300!important}.editgrid-listgroup .list-group-item .btn-group.pull-right button{background-color:transparent;background-image:none;position:relative;padding:3px 0;border:0;color:#fff}.editgrid-listgroup .list-group-item .btn-group.pull-right button.editRow{left:-5px;width:35px}.editgrid-listgroup .list-group-item .btn-group.pull-right button.editRow:before{content:\"\";position:absolute;width:14px;height:14px;background-size:cover;background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/lapiz.png)}.editgrid-listgroup .list-group-item .btn-group.pull-right button.removeRow:before{width:14px;height:14px;content:\"\";position:absolute;background-size:cover;background-image:url(http://apps.colfuturo.org/PLIS/img/delete_h.png)}.editgrid-listgroup .list-group-item .btn-group.pull-right button.removeRow:hover:before{background-image:url(http://apps.colfuturo.org/PLIS/img/delete.png)}.editgrid-listgroup .list-group-item .right_edit{position:absolute;right:0}.editgrid-listgroup .editgrid-actions{margin-top:8px;margin-bottom:8px}.editgrid-listgroup .editgrid-actions .btn-primary{border:0px;padding:.375rem .75rem;font-size:.8125rem;background-image:none;background-color:#08c}.editgrid-listgroup .editgrid-actions .btn-primary:hover{border:1px solid #016293;background-image:none;background-color:#016293}.global-footer .container{padding:15px;margin-top:0;background-color:#e3e3e3}.global-footer .container p{font-size:15px;text-align:left;margin-bottom:0}button .fa{display:none}button.btn.btn-success{margin:0;font-size:16px!important;padding:5px 20px!important;background-color:#449d44}.fwwb-active{background:#4796d6;color:#fff!important}.toast{opacity:1!important}.toast-success{background-color:#51a351!important}.toast-error{background-color:#bd362f!important}.toast-info{background-color:#2f96b4!important}.toast-warning{background-color:#f89406!important}.has-error.alert-danger .checkbox,.has-error.alert-danger .checkbox-inline,.has-error.alert-danger .control-label,.has-error.alert-danger .help-block,.has-error.alert-danger .radio,.has-error.alert-danger .radio-inline,.has-error.alert-danger.checkbox label,.has-error.alert-danger.checkbox-inline label,.has-error.alert-danger.radio label,.has-error.alert-danger.radio-inline label{color:#ed1d24!important}.choices__list--single .choices__item span{white-space:nowrap}.editgrid-listgroup .editgrid-actions .btn-danger{background-color:#da291c;border:1px solid #da291c;transition:all .3s;text-transform:none!important}.editgrid-listgroup .editgrid-actions .btn-danger:hover{background-color:#981d14;color:#fff}p.Alert{color:#da291c}.editgrid-body{padding:10px 0}.choices__list--single .choices__item{overflow:hidden}.checkbox-inline label,.radio-inline label{font-weight:300!important}.sin-p{padding:0!important}.n_p-right .col-sm-2,.n_p-right .col-sm-7,.n_p-right .col-sm-5,.n_p-right .col-sm-6{padding-right:0!important}.n_p .col-xs-5{padding:0!important}.choices[data-type*=select-one] .choices__button{margin-right:1px!important;background:#fff;opacity:1!important;width:15px!important}.choices[data-type*=select-one]:after{right:5px!important}.Label-left .form-check.radio{float:left;margin:0 .3em}.has-feedback .form-control{padding-right:5px!important}.tooltip-inner{text-align:left!important;background-color:#6d6d6d;color:#fff!important;max-width:300px;min-width:150px;padding:.6em;font-family:Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",Segoe UI Symbol;font-size:.7109375rem}.alert-danger{background-color:#fffcf8;border:0!important;padding:1em 0}.alert-danger p{font-size:13px;margin-bottom:0;margin-top:1em}.card p{font-size:13px}.was-validated .form-control:invalid,.form-control.is-invalid{background-image:none}.editgrid-listgroup .list-group-header div,.editgrid-listgroup .list-group-header div:first-child{border-left:0!important}.editgrid-listgroup .list-group-header div:last-child{border-right:0!important}.editgrid-listgroup .list-group-item{padding:0 5px}.Ensayo label:after,.required_label label:after,.N_Left label:after{right:-10px}.list-group-item div{font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#333}.list-group-item .body_table div{padding-top:5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.help-block{color:#ed1d24!important;clear:both}.editgrid-listgroup .editgrid-actions .btn-danger{background-color:#da291c;color:#fff;border:1px solid #f5f5f5;background-image:none}.editgrid-listgroup .editgrid-actions .btn-danger:hover{background-color:#971b12}.editgrid-listgroup.bloque_laboral{width:55%!important}.cortado .form-group .form-check{float:left;width:50%!important;padding:0 1em}.btn-group.pull-right{padding:0!important}.editgrid-edit{width:980px}.choices__list--dropdown{width:auto!important}.choices__list--dropdown .choices__item{font-weight:300!important;font-weight:13px!important;padding:4px 10px!important;font-family:Roboto Condensed,sans-serif}.Phone input{width:55%!important}.date_full-1 .input-group{width:65%!important}.date_full-2 .input-group{width:60%!important}.date_full-3 .input-group{width:47%!important}button.btn.btn-default.editRow,button.btn.btn-danger.removeRow{padding-right:0!important;padding-left:0!important}.Statistics .form-group .form-group{padding:0 17px}.row_2{margin-left:-15px}.mat-tab-label{min-width:120px}.mat-toolbar.mat-primary button.mat-icon-button{display:none}p{font-size:14px;font-weight:300;font-family:Roboto,sans-serif}.margin_bottom{margin-bottom:20px;margin-top:20px}.p-10{padding:10px!important}.pl-30{padding-left:30px!important}.mat-card-header .mat-card-header-text{margin:0!important}input[type=radio],input[type=checkbox]{box-shadow:none!important;border-color:transparent!important}.choices__list--dropdown{word-break:normal!important}.field-required:after{font-size:12px;position:relative;left:2px}.form-group .choices.form-group.formio-choices .form-control{overflow:hidden}.formio-component-submit{padding-left:15px}.date .input-group input.form-control{margin-right:0}.input-group-addon{float:right;width:30px}.input-group-addon .glyphicon{width:16px;height:16px;position:absolute;right:7px;top:3px;background-size:cover;background-repeat:no-repeat}.input-group-addon .glyphicon-calendar{background-image:url(http://apps.colfuturo.org/PLIS/img/calendar.svg)}.numInputWrapper span{opacity:1!important}.flatpickr-current-month .numInputWrapper{width:60px!important}.flatpickr-months .flatpickr-month{height:39px!important}.n_margin-to,.mt-0{margin-top:0!important}.group-item label{font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#333;float:left;margin-right:1em}.group-item{float:left;margin-right:.4em;display:-webkit-flex;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex}.mat-card,.mat-elevation-z8{box-shadow:none!important}.relative{position:relative}mat-card-content h4{margin-bottom:1.5rem}.mat-select-panel .mat-option{height:20px!important}.mat-select-arrow{border-top:5px solid #757575!important}input.mat-input-element{font-family:Roboto,sans-serif;font-weight:300;font-size:14px}.mat-form-field-hide-placeholder .mat-select-placeholder{color:#666!important;-webkit-text-fill-color:#666!important}.mat-vertical-stepper-header{height:auto!important;padding:8px 24px!important;margin-top:5px}.mat-vertical-content{padding:5px 25px 0!important}.mat-form-field{margin-right:1em!important}.mat-form-field-infix{margin-top:0;border:1px solid #bbb;width:auto!important;height:22px;line-height:22px;padding:0!important;min-width:55px!important}.mat-select-value{padding:0 3px;overflow:visible!important;font-size:14px;color:#7a7a7a;font-weight:300}table.ng-star-inserted th,table.ng-star-inserted td{vertical-align:top!important;padding:10px 15px 0 0;font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#666}table.ng-star-inserted .subcategory{padding-right:15px;width:130px}table.ng-star-inserted .select-repeat,table.ng-star-inserted .mat-form-field.input-money{margin-right:0!important}table.summary .last{border-left:1px solid #ccc}table.summary tr:last-child .last{border-left:1px solid #fff}.select-currency{margin-bottom:.3em}.mat-icon-button{padding:0 0 0 1em!important;width:auto!important;height:20px!important;line-height:20px!important}.inner{overflow-x:scroll;margin-left:124px;margin-right:170px}.presupuesto_detalle .table thead th{border-bottom:0px solid transparent!important;border-left:1px solid #ccc}.presupuesto_detalle .table tbody tr.Last th{border-right:1px solid white!important;background-color:#cacaca!important}.presupuesto_detalle .table tbody tr.Last th.Last{border-left:1px solid white}.presupuesto_detalle .table tbody tr:hover .col1{color:#00a5e6!important}.col1,.col2{position:absolute;top:auto}.col1{width:125px;left:0;font-weight:400!important;border-right:1px solid #ccc;border-left:0!important}.col2{min-width:85px!important;font-weight:700!important;text-align:right;border-left:1px solid #ccc}.tabla_fija .mat-tab-body-wrapper,.mat-tab-body-content{overflow:visible!important;height:auto!important}.mat-tab-body.mat-tab-body-active{overflow-y:inherit!important}.mat-form-field-appearance-legacy .mat-form-field-underline{height:0!important}.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-empty.mat-form-field-label{display:none!important}input.mat-input-element{padding-right:5px}.mat-step-header .mat-step-icon-state-edit{background:#00aa1a!important}.mat-tab-label{height:40px!important;min-width:90px!important}.mat-tab-label .mat-tab-label-content{font-size:17px;font-weight:400}.mat-raised-button.mat-primary{padding:5px 20px!important;font-size:16px!important;background-color:#449d44}.mat-flat-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{background:#08c}.mat-flat-button.mat-primary:hover,.mat-raised-button.mat-primary:hover,.mat-fab.mat-primary:hover,.mat-mini-fab.mat-primary:hover{background-color:#d20000}.mat-raised-button{min-width:inherit!important;padding:0 10px!important;line-height:27px!important;border-radius:0!important;margin-top:20px!important}.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:none!important}.table th{font-weight:300}.mat-stroked-button:not([class*=mat-elevation-z]),.mat-flat-button:not([class*=mat-elevation-z]){box-shadow:none;border-radius:0;line-height:27px;padding:0 10px}.mat-list-base .mat-list-item,.mat-list-base .mat-list-option{height:auto!important;margin-bottom:10px}.mat-list-base{padding-top:0!important}mat-icon.add,button.add span{color:#449d44}button.remove{color:#da291c}.icon-hover{display:none!important}.icon-with-hover:hover .icon-hover{display:inline!important}.icon-with-hover:hover .icon-active{display:none}mat-icon.edit{color:#f3ab46}tr.mat-header-row{height:35px!important}.mat-header-cell{font-size:14px;font-weight:300}.mat-radio-container,.mat-radio-outer-circle,.mat-radio-inner-circle{height:12px!important;width:12px!important}.mat-radio-outer-circle{border-width:1px!important}.mat-radio-outer-circle{border-color:#a8a8a8!important;background-color:#dedede}.mat-radio-button:not(.mat-radio-disabled).cdk-focused .mat-radio-persistent-ripple{opacity:0!important}.mat-radio-button.mat-accent .mat-radio-inner-circle,.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#666!important}mat-radio-group{display:inline-block!important}mat-radio-button{margin:0 10px 5px!important}.mat-icon{background-color:#fff}.mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:.35em}.mat-form-field-appearance-legacy .mat-form-field-underline{display:none!important}input.mat-input-element{padding-left:5px}.mat-step-icon .mat-icon,.mat-step-icon-content{transform:translate(-45%,-53%)!important}.mat-step-header .mat-step-icon{background:#aaa;position:relative;z-index:2}.mat-step-label{font-size:19px!important;line-height:26px;font-family:Roboto Condensed,sans-serif;font-weight:400}.letter .mat-form-field{margin-right:0;min-width:210px}.btn-info{transition:all .3s}.btn-info span{color:#fff}.btn-info:hover{cursor:pointer;background-color:#d20000}.btn-info:disabled{background-color:#ccc!important;border-color:#ccc!important}.mat-standard-chip{padding:0!important;background-color:#fff!important;justify-content:center;width:100%}.mat-standard-chip:hover:after{background:transparent!important}.mat-select-panel{min-width:calc(100% + 10px)!important}.mat-button-focus-overlay{background-color:transparent!important}button.delete:focus{outline:0}.mat-step-header .mat-step-icon-selected{background-color:#da291c!important}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button{margin:0!important}.mat-card>.mat-card-actions:last-child{margin-bottom:0!important}@media screen and (max-width: 1260px){.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{padding-right:5px}.Form_2{margin:20px 4px!important}}@media screen and (max-width: 1250px){label{font-size:13px!important}}@media screen and (max-width: 1220px){.mat-drawer.sidenav{position:absolute!important}.row.formio-component{margin-left:0;margin-right:0}.card .card-header h4.card-title{text-align:center}.card .card-body{padding:.3rem 0!important}label{width:100%!important;margin:.3em 1em .3em 0!important}label:after{position:relative}.form-group .form-control,.form-group .input-group{margin-left:0!important;margin-right:0!important;width:100%!important}.formio-choices.form-group{float:left;margin-left:0!important;margin-top:0!important}.mat-toolbar-row,.mat-toolbar-single-row{height:75px!important}.col{padding-left:5px!important;padding-right:5px!important}.block .row{display:block}.mat-toolbar.mat-primary button.mat-icon-button{display:block;margin-right:2em}.no_label label.control-label--hidden{width:auto!important;margin-right:1em!important}.hidden-responsive{display:none}}@media screen and (max-width: 991px){.col{flex:100%!important;max-width:inherit!important;padding-left:0!important;padding-right:0!important}.form-group .input-group{width:40%!important}.mat-toolbar.mat-primary .button-close-session{width:40px}.row_2{margin-left:0}.mat-vertical-content{padding:5px 5px 0!important}.mat-vertical-content{overflow:hidden}}.main-content{position:fixed;z-index:-1;overflow:visible;display:none;opacity:0;margin-top:10px;margin-bottom:10px;text-align:left!important}.main-content--show{top:0;left:0;display:block}.main-content hr{display:block;border-style:inset;border-width:1px;color:red}.header{display:flex;align-items:stretch}.header-item{margin:0 5px}button.fa-file-pdf{font-size:2em}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i7$1.FormioComponent, selector: "formio" }, { kind: "component", type: i8$1.TieredMenu, selector: "p-tieredMenu, p-tieredmenu, p-tiered-menu", inputs: ["model", "popup", "style", "styleClass", "appendTo", "breakpoint", "autoZIndex", "baseZIndex", "autoDisplay", "showTransitionOptions", "hideTransitionOptions", "id", "ariaLabel", "ariaLabelledBy", "disabled", "tabindex"], outputs: ["onShow", "onHide"] }] }); }
|
|
5775
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfGeneratorComponent, deps: [{ token: DataFormService }, { token: ApplicationService }, { token: PppService }, { token: CommonService }, { token: TokenTransformationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5776
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PdfGeneratorComponent, selector: "pli-pdf-generator", inputs: { configurations: "configurations", applicationId: "applicationId", showLabel: "showLabel", actionClass: "actionClass", promCode: "promCode" }, outputs: { onDownload: "onDownload" }, host: { listeners: { "click": "onClick($event)" } }, viewQueries: [{ propertyName: "contentElement", first: true, predicate: ["content"], descendants: true }], ngImport: i0, template: "<div #content id=\"content\" class=\"main-content\" [class.main-content--show]=\"display\">\r\n\t<div class=\"header\">\r\n\t\t<div class=\"header-item\">\r\n\t\t\t<img [src]=\"urlLogo\" alt=\"logo\" class=\"img-logo\" />\r\n\t\t</div>\r\n\t\t<div class=\"header-item\">\r\n\t\t\t<div [innerHTML]=\"headerHtml\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\t<div *ngFor=\"let f of dataForms; index as i\">\r\n\t\t<formio [form]=\"forms[i]\" [submission]=\"dataForms[i]\"></formio>\r\n\t\t<div class=\"html2pdf__page-break\"></div>\r\n\t</div>\r\n\t<div [innerHTML]=\"footerHtml\"></div>\r\n</div>\r\n<div class=\"btn btn-default\">\r\n\t<button type=\"button\" class=\"fa fa-file-pdf btn-sm\" (click)=\"menu.toggle($event)\" title=\"PDF\">\r\n\t\t{{ showLabel ? 'Generar PDF' : '' }}\r\n\t</button>\r\n</div>\r\n<p-tieredMenu #menu [model]=\"items\" appendTo=\"body\" [popup]=\"true\"></p-tieredMenu>\r\n", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700\";@import\"https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap\";.text-menu,a.help_menu,a.letter,.mat-drawer-inner-container .mat-list-base .mat-list-item{color:#000;height:auto!important;padding:.3em 0;margin-bottom:0;border-left:0;font-size:15px;font-weight:300;line-height:17px;font-family:Roboto,sans-serif;min-height:20px!important}.text-menu:hover,a.help_menu:hover,a.letter:hover,.mat-drawer-inner-container .mat-list-base .mat-list-item:hover{color:#00a5e6!important;background-color:transparent}.text-menu:focus,a.help_menu:focus,a.letter:focus,.mat-drawer-inner-container .mat-list-base .mat-list-item:focus{color:#fff;background-color:#da291c}body{margin:auto;display:block;max-width:1280px;background-color:#fafafa}.sin-padding{padding:0!important}.mat-toolbar-single-row{height:72px!important}.mat-drawer-content{position:relative}.img-logo{max-width:100%}.card p{color:#666;font-size:16px;font-weight:300;line-height:22px;font-family:Roboto,sans-serif;margin-top:0;margin-bottom:15px}.mat-drawer-inner-container .mat-list-base{border:1px solid #cccccc;margin-top:20px;padding-top:0!important;padding-bottom:15px;background-color:#f7f7f7;cursor:auto}.mat-toolbar.mat-primary{border-bottom:2px solid #da291c!important}.mat-toolbar.mat-primary .button-close-session{background-color:transparent}mat-toolbar.mat-toolbar{margin-bottom:0!important}.mat-drawer-side{border-right:0}#list-home{margin-bottom:0!important}.formio-form{padding:0 15px}mat-toolbar.mat-toolbar,.mat-drawer{position:relative!important}.mat-toolbar{background-color:transparent}.mat-toolbar.header--light{padding:0}.mat-toolbar h3{width:100%;display:block;font-size:27px;font-weight:400;font-family:Roboto,sans-serif;margin-top:0;margin-bottom:0;padding-bottom:6px;border-bottom:1px solid #cccccc}mat-toolbar.mat-toolbar{box-shadow:none;margin-bottom:0}.mat-drawer-container{background-color:#fff}.mat-sidenav-content,.mat-drawer-inner-container{padding-top:0}.mat-drawer.mat-drawer-side{float:left}.button-close-session{position:absolute!important;right:5px;height:40px;color:#fff;border-radius:0;border-left:1px solid #bbb}.button-close-session:before{content:\"\";width:25px;height:22px;position:absolute;background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/otrocerrar.png)}.button-close-session:hover{color:#fff}.button-close-session:hover:before{background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/otrocerrar.png)}.card{border:0!important;border-bottom:1px solid #ccc!important;background-color:#fff;border-radius:0}.card .card-header{padding:0;border-bottom:0;background-color:#fff}.card h4.card-title{font-size:19px;font-family:Roboto,sans-serif;font-weight:400;margin-top:5px;margin-bottom:5px!important}.card .card-body{padding:.3rem 15px}.stats h4.panel-title{font-size:15px}.stats label.control-label--hidden{display:none}.stats.required h4.panel-title{position:relative}.stats.required h4.panel-title:after{content:\"*\";color:#da291c;margin-right:.5em;height:30px}.card.No_border{border-bottom:0!important}.mat-drawer-inner-container .mat-list-base{margin-top:0;padding-bottom:0}.menu .mat-list-item.active:hover{background-color:#da291c!important;color:#fff!important}.menu .mat-list-item.active:hover .mat-list-item-content{color:#fff!important}a.letter{display:block;padding-left:10px;margin-top:10px}a.letter:hover{text-decoration:none;background-color:transparent!important;color:#00a5e6!important}a.letter img{margin-right:.3em}a.help_menu{display:block;padding-left:10px;margin-top:5px}a.help_menu img{margin-right:.3em}a.help_menu:hover{text-decoration:none}a.mat-list-item.letter.active,a.mat-list-item.help_menu.active{color:#da291c!important;background-color:transparent}.mat-drawer.mat-drawer-end{position:fixed!important}.mat-drawer-inner-container .mat-list-base .mat-list-item .mat-list-item-content{padding-right:0!important}.send .mat-list-item-content{padding-left:0!important}label{color:#333;font-size:14px;font-weight:300;font-family:Roboto,sans-serif;margin-bottom:0;position:relative}label i.fa-question-circle{position:relative;left:2px}label.control-label--hidden:after{position:absolute;right:inherit;left:0;font-size:15px;line-height:13px}.no_label label.control-label--hidden{position:relative;right:inherit;left:0;float:left;width:15px;height:10px;margin-right:inherit!important}.no_label input[type=text]{width:90%}.no_label div.choices{margin-left:15px}.form-group{margin-bottom:8px;margin-top:8px}.form-group .form-control{height:22px;font-size:14px;font-weight:300;font-family:Roboto,sans-serif;padding:4px;border-radius:0!important}.form-group textarea.form-control{min-height:50px;height:auto!important}.form-group select.form-control{height:22px;line-height:22px;padding:0}.form-group .choices.form-group.formio-choices .form-control{padding:0 10px}.form-group .button-copy{color:#08c;font-size:15px;font-weight:400;padding:0}.n_margin .form-group,.form-group.formio-choices{margin-top:0;margin-bottom:0}.n_padding,.n_padding_card .card-body{padding:0}.form-control[readonly]{background-color:#f5f5f5}.form-control:disabled{background-color:transparent!important;border:0!important}input{border:1px solid #CCCCCC;line-height:1;font-family:Roboto,sans-serif}textarea:focus,input:focus{box-shadow:0 0 0 .1rem #8daee5!important;border-color:#8daee5!important;background-color:#fff6de!important}.sidenav{width:230px}.btn{padding:3px 10px!important;font-size:14px!important;font-weight:400!important;font-family:Roboto,sans-serif!important;min-width:initial;width:auto;border-radius:0!important}.btn:focus{box-shadow:none}.btn-info,.btn-info:hover{background-color:#08c;border:0;background-image:none!important}.btn-success,.btn-primary{border:0;border-radius:0;background-image:none}.btn-success:hover,.btn-primary:hover{border:0!important;background-image:none;background-color:#d20000}.btn-primary{background-color:#08c}.editgrid-add .btn{width:23px;height:23px;border-radius:50%!important;font-size:20px!important;line-height:1px;font-weight:400!important;border:2px solid #449d44;color:#449d44;background-color:transparent;text-align:center;padding:2px!important;transition:all .3s}.editgrid-add .btn:hover,.editgrid-add .btn:active{background-color:#449d44;color:#fff;box-shadow:none!important;border:1px solid #FFF!important}.editgrid-listgroup .list-group-header{background-color:#e3e3e3!important;border-radius:0!important}.editgrid-listgroup .list-group-header div{border-left:1px solid #fff;border-right:1px solid #fff;font-family:Roboto Condensed,sans-serif;font-weight:300;font-size:14px}.editgrid-listgroup .list-group-header:nth-child(1){border-right:0}.editgrid-listgroup .list-group-item{border:0;position:relative;padding:0 5px!important;background-color:transparent}.editgrid-listgroup .list-group-item small{font-size:14px;font-weight:300}.editgrid-listgroup .list-group-item small strong{font-weight:300!important}.editgrid-listgroup .list-group-item .btn-group.pull-right button{background-color:transparent;background-image:none;position:relative;padding:3px 0;border:0;color:#fff}.editgrid-listgroup .list-group-item .btn-group.pull-right button.editRow{left:-5px;width:35px}.editgrid-listgroup .list-group-item .btn-group.pull-right button.editRow:before{content:\"\";position:absolute;width:14px;height:14px;background-size:cover;background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/lapiz.png)}.editgrid-listgroup .list-group-item .btn-group.pull-right button.removeRow:before{width:14px;height:14px;content:\"\";position:absolute;background-size:cover;background-image:url(http://apps.colfuturo.org/PLIS/img/delete_h.png)}.editgrid-listgroup .list-group-item .btn-group.pull-right button.removeRow:hover:before{background-image:url(http://apps.colfuturo.org/PLIS/img/delete.png)}.editgrid-listgroup .list-group-item .right_edit{position:absolute;right:0}.editgrid-listgroup .editgrid-actions{margin-top:8px;margin-bottom:8px}.editgrid-listgroup .editgrid-actions .btn-primary{border:0px;padding:.375rem .75rem;font-size:.8125rem;background-image:none;background-color:#08c}.editgrid-listgroup .editgrid-actions .btn-primary:hover{border:1px solid #016293;background-image:none;background-color:#016293}.global-footer .container{padding:15px;margin-top:0;background-color:#e3e3e3}.global-footer .container p{font-size:15px;text-align:left;margin-bottom:0}button .fa{display:none}button.btn.btn-success{margin:0;font-size:16px!important;padding:5px 20px!important;background-color:#449d44}.fwwb-active{background:#4796d6;color:#fff!important}.toast{opacity:1!important}.toast-success{background-color:#51a351!important}.toast-error{background-color:#bd362f!important}.toast-info{background-color:#2f96b4!important}.toast-warning{background-color:#f89406!important}.has-error.alert-danger .checkbox,.has-error.alert-danger .checkbox-inline,.has-error.alert-danger .control-label,.has-error.alert-danger .help-block,.has-error.alert-danger .radio,.has-error.alert-danger .radio-inline,.has-error.alert-danger.checkbox label,.has-error.alert-danger.checkbox-inline label,.has-error.alert-danger.radio label,.has-error.alert-danger.radio-inline label{color:#ed1d24!important}.choices__list--single .choices__item span{white-space:nowrap}.editgrid-listgroup .editgrid-actions .btn-danger{background-color:#da291c;border:1px solid #da291c;transition:all .3s;text-transform:none!important}.editgrid-listgroup .editgrid-actions .btn-danger:hover{background-color:#981d14;color:#fff}p.Alert{color:#da291c}.editgrid-body{padding:10px 0}.choices__list--single .choices__item{overflow:hidden}.checkbox-inline label,.radio-inline label{font-weight:300!important}.sin-p{padding:0!important}.n_p-right .col-sm-2,.n_p-right .col-sm-7,.n_p-right .col-sm-5,.n_p-right .col-sm-6{padding-right:0!important}.n_p .col-xs-5{padding:0!important}.choices[data-type*=select-one] .choices__button{margin-right:1px!important;background:#fff;opacity:1!important;width:15px!important}.choices[data-type*=select-one]:after{right:5px!important}.Label-left .form-check.radio{float:left;margin:0 .3em}.has-feedback .form-control{padding-right:5px!important}.tooltip-inner{text-align:left!important;background-color:#6d6d6d;color:#fff!important;max-width:300px;min-width:150px;padding:.6em;font-family:Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",Segoe UI Symbol;font-size:.7109375rem}.alert-danger{background-color:#fffcf8;border:0!important;padding:1em 0}.alert-danger p{font-size:13px;margin-bottom:0;margin-top:1em}.card p{font-size:13px}.was-validated .form-control:invalid,.form-control.is-invalid{background-image:none}.editgrid-listgroup .list-group-header div,.editgrid-listgroup .list-group-header div:first-child{border-left:0!important}.editgrid-listgroup .list-group-header div:last-child{border-right:0!important}.editgrid-listgroup .list-group-item{padding:0 5px}.Ensayo label:after,.required_label label:after,.N_Left label:after{right:-10px}.list-group-item div{font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#333}.list-group-item .body_table div{padding-top:5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.help-block{color:#ed1d24!important;clear:both}.editgrid-listgroup .editgrid-actions .btn-danger{background-color:#da291c;color:#fff;border:1px solid #f5f5f5;background-image:none}.editgrid-listgroup .editgrid-actions .btn-danger:hover{background-color:#971b12}.editgrid-listgroup.bloque_laboral{width:55%!important}.cortado .form-group .form-check{float:left;width:50%!important;padding:0 1em}.btn-group.pull-right{padding:0!important}.editgrid-edit{width:980px}.choices__list--dropdown{width:auto!important}.choices__list--dropdown .choices__item{font-weight:300!important;font-weight:13px!important;padding:4px 10px!important;font-family:Roboto Condensed,sans-serif}.Phone input{width:55%!important}.date_full-1 .input-group{width:65%!important}.date_full-2 .input-group{width:60%!important}.date_full-3 .input-group{width:47%!important}button.btn.btn-default.editRow,button.btn.btn-danger.removeRow{padding-right:0!important;padding-left:0!important}.Statistics .form-group .form-group{padding:0 17px}.row_2{margin-left:-15px}.mat-tab-label{min-width:120px}.mat-toolbar.mat-primary button.mat-icon-button{display:none}p{font-size:14px;font-weight:300;font-family:Roboto,sans-serif}.margin_bottom{margin-bottom:20px;margin-top:20px}.p-10{padding:10px!important}.pl-30{padding-left:30px!important}.mat-card-header .mat-card-header-text{margin:0!important}input[type=radio],input[type=checkbox]{box-shadow:none!important;border-color:transparent!important}.choices__list--dropdown{word-break:normal!important}.field-required:after{font-size:12px;position:relative;left:2px}.form-group .choices.form-group.formio-choices .form-control{overflow:hidden}.formio-component-submit{padding-left:15px}.date .input-group input.form-control{margin-right:0}.input-group-addon{float:right;width:30px}.input-group-addon .glyphicon{width:16px;height:16px;position:absolute;right:7px;top:3px;background-size:cover;background-repeat:no-repeat}.input-group-addon .glyphicon-calendar{background-image:url(http://apps.colfuturo.org/PLIS/img/calendar.svg)}.numInputWrapper span{opacity:1!important}.flatpickr-current-month .numInputWrapper{width:60px!important}.flatpickr-months .flatpickr-month{height:39px!important}.n_margin-to,.mt-0{margin-top:0!important}.group-item label{font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#333;float:left;margin-right:1em}.group-item{float:left;margin-right:.4em;display:-webkit-flex;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex}.mat-card,.mat-elevation-z8{box-shadow:none!important}.relative{position:relative}mat-card-content h4{margin-bottom:1.5rem}.mat-select-panel .mat-option{height:20px!important}.mat-select-arrow{border-top:5px solid #757575!important}input.mat-input-element{font-family:Roboto,sans-serif;font-weight:300;font-size:14px}.mat-form-field-hide-placeholder .mat-select-placeholder{color:#666!important;-webkit-text-fill-color:#666!important}.mat-vertical-stepper-header{height:auto!important;padding:8px 24px!important;margin-top:5px}.mat-vertical-content{padding:5px 25px 0!important}.mat-form-field{margin-right:1em!important}.mat-form-field-infix{margin-top:0;border:1px solid #bbb;width:auto!important;height:22px;line-height:22px;padding:0!important;min-width:55px!important}.mat-select-value{padding:0 3px;overflow:visible!important;font-size:14px;color:#7a7a7a;font-weight:300}table.ng-star-inserted th,table.ng-star-inserted td{vertical-align:top!important;padding:10px 15px 0 0;font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#666}table.ng-star-inserted .subcategory{padding-right:15px;width:130px}table.ng-star-inserted .select-repeat,table.ng-star-inserted .mat-form-field.input-money{margin-right:0!important}table.summary .last{border-left:1px solid #ccc}table.summary tr:last-child .last{border-left:1px solid #fff}.select-currency{margin-bottom:.3em}.mat-icon-button{padding:0 0 0 1em!important;width:auto!important;height:20px!important;line-height:20px!important}.inner{overflow-x:scroll;margin-left:124px;margin-right:170px}.presupuesto_detalle .table thead th{border-bottom:0px solid transparent!important;border-left:1px solid #ccc}.presupuesto_detalle .table tbody tr.Last th{border-right:1px solid white!important;background-color:#cacaca!important}.presupuesto_detalle .table tbody tr.Last th.Last{border-left:1px solid white}.presupuesto_detalle .table tbody tr:hover .col1{color:#00a5e6!important}.col1,.col2{position:absolute;top:auto}.col1{width:125px;left:0;font-weight:400!important;border-right:1px solid #ccc;border-left:0!important}.col2{min-width:85px!important;font-weight:700!important;text-align:right;border-left:1px solid #ccc}.tabla_fija .mat-tab-body-wrapper,.mat-tab-body-content{overflow:visible!important;height:auto!important}.mat-tab-body.mat-tab-body-active{overflow-y:inherit!important}.mat-form-field-appearance-legacy .mat-form-field-underline{height:0!important}.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-empty.mat-form-field-label{display:none!important}input.mat-input-element{padding-right:5px}.mat-step-header .mat-step-icon-state-edit{background:#00aa1a!important}.mat-tab-label{height:40px!important;min-width:90px!important}.mat-tab-label .mat-tab-label-content{font-size:17px;font-weight:400}.mat-raised-button.mat-primary{padding:5px 20px!important;font-size:16px!important;background-color:#449d44}.mat-flat-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{background:#08c}.mat-flat-button.mat-primary:hover,.mat-raised-button.mat-primary:hover,.mat-fab.mat-primary:hover,.mat-mini-fab.mat-primary:hover{background-color:#d20000}.mat-raised-button{min-width:inherit!important;padding:0 10px!important;line-height:27px!important;border-radius:0!important;margin-top:20px!important}.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:none!important}.table th{font-weight:300}.mat-stroked-button:not([class*=mat-elevation-z]),.mat-flat-button:not([class*=mat-elevation-z]){box-shadow:none;border-radius:0;line-height:27px;padding:0 10px}.mat-list-base .mat-list-item,.mat-list-base .mat-list-option{height:auto!important;margin-bottom:10px}.mat-list-base{padding-top:0!important}mat-icon.add,button.add span{color:#449d44}button.remove{color:#da291c}.icon-hover{display:none!important}.icon-with-hover:hover .icon-hover{display:inline!important}.icon-with-hover:hover .icon-active{display:none}mat-icon.edit{color:#f3ab46}tr.mat-header-row{height:35px!important}.mat-header-cell{font-size:14px;font-weight:300}.mat-radio-container,.mat-radio-outer-circle,.mat-radio-inner-circle{height:12px!important;width:12px!important}.mat-radio-outer-circle{border-width:1px!important}.mat-radio-outer-circle{border-color:#a8a8a8!important;background-color:#dedede}.mat-radio-button:not(.mat-radio-disabled).cdk-focused .mat-radio-persistent-ripple{opacity:0!important}.mat-radio-button.mat-accent .mat-radio-inner-circle,.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#666!important}mat-radio-group{display:inline-block!important}mat-radio-button{margin:0 10px 5px!important}.mat-icon{background-color:#fff}.mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:.35em}.mat-form-field-appearance-legacy .mat-form-field-underline{display:none!important}input.mat-input-element{padding-left:5px}.mat-step-icon .mat-icon,.mat-step-icon-content{transform:translate(-45%,-53%)!important}.mat-step-header .mat-step-icon{background:#aaa;position:relative;z-index:2}.mat-step-label{font-size:19px!important;line-height:26px;font-family:Roboto Condensed,sans-serif;font-weight:400}.letter .mat-form-field{margin-right:0;min-width:210px}.btn-info{transition:all .3s}.btn-info span{color:#fff}.btn-info:hover{cursor:pointer;background-color:#d20000}.btn-info:disabled{background-color:#ccc!important;border-color:#ccc!important}.mat-standard-chip{padding:0!important;background-color:#fff!important;justify-content:center;width:100%}.mat-standard-chip:hover:after{background:transparent!important}.mat-select-panel{min-width:calc(100% + 10px)!important}.mat-button-focus-overlay{background-color:transparent!important}button.delete:focus{outline:0}.mat-step-header .mat-step-icon-selected{background-color:#da291c!important}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button{margin:0!important}.mat-card>.mat-card-actions:last-child{margin-bottom:0!important}@media screen and (max-width: 1260px){.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{padding-right:5px}.Form_2{margin:20px 4px!important}}@media screen and (max-width: 1250px){label{font-size:13px!important}}@media screen and (max-width: 1220px){.mat-drawer.sidenav{position:absolute!important}.row.formio-component{margin-left:0;margin-right:0}.card .card-header h4.card-title{text-align:center}.card .card-body{padding:.3rem 0!important}label{width:100%!important;margin:.3em 1em .3em 0!important}label:after{position:relative}.form-group .form-control,.form-group .input-group{margin-left:0!important;margin-right:0!important;width:100%!important}.formio-choices.form-group{float:left;margin-left:0!important;margin-top:0!important}.mat-toolbar-row,.mat-toolbar-single-row{height:75px!important}.col{padding-left:5px!important;padding-right:5px!important}.block .row{display:block}.mat-toolbar.mat-primary button.mat-icon-button{display:block;margin-right:2em}.no_label label.control-label--hidden{width:auto!important;margin-right:1em!important}.hidden-responsive{display:none}}@media screen and (max-width: 991px){.col{flex:100%!important;max-width:inherit!important;padding-left:0!important;padding-right:0!important}.form-group .input-group{width:40%!important}.mat-toolbar.mat-primary .button-close-session{width:40px}.row_2{margin-left:0}.mat-vertical-content{padding:5px 5px 0!important}.mat-vertical-content{overflow:hidden}}.main-content{position:fixed;z-index:-1;overflow:visible;display:none;opacity:0;margin-top:10px;margin-bottom:10px;text-align:left!important}.main-content--show{top:0;left:0;display:block}.main-content hr{display:block;border-style:inset;border-width:1px;color:red}.header{display:flex;align-items:stretch}.header-item{margin:0 5px}button.fa-file-pdf{font-size:2em}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i7$1.FormioComponent, selector: "formio" }, { kind: "component", type: i8$1.TieredMenu, selector: "p-tieredMenu", inputs: ["model", "popup", "style", "styleClass", "appendTo", "autoZIndex", "baseZIndex", "autoDisplay", "showTransitionOptions", "hideTransitionOptions", "id", "ariaLabel", "ariaLabelledBy", "disabled", "tabindex"], outputs: ["onShow", "onHide"] }] }); }
|
|
5777
5777
|
}
|
|
5778
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfGeneratorComponent, decorators: [{
|
|
5779
5779
|
type: Component,
|
|
5780
5780
|
args: [{ selector: 'pli-pdf-generator', standalone: false, template: "<div #content id=\"content\" class=\"main-content\" [class.main-content--show]=\"display\">\r\n\t<div class=\"header\">\r\n\t\t<div class=\"header-item\">\r\n\t\t\t<img [src]=\"urlLogo\" alt=\"logo\" class=\"img-logo\" />\r\n\t\t</div>\r\n\t\t<div class=\"header-item\">\r\n\t\t\t<div [innerHTML]=\"headerHtml\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\t<div *ngFor=\"let f of dataForms; index as i\">\r\n\t\t<formio [form]=\"forms[i]\" [submission]=\"dataForms[i]\"></formio>\r\n\t\t<div class=\"html2pdf__page-break\"></div>\r\n\t</div>\r\n\t<div [innerHTML]=\"footerHtml\"></div>\r\n</div>\r\n<div class=\"btn btn-default\">\r\n\t<button type=\"button\" class=\"fa fa-file-pdf btn-sm\" (click)=\"menu.toggle($event)\" title=\"PDF\">\r\n\t\t{{ showLabel ? 'Generar PDF' : '' }}\r\n\t</button>\r\n</div>\r\n<p-tieredMenu #menu [model]=\"items\" appendTo=\"body\" [popup]=\"true\"></p-tieredMenu>\r\n", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700\";@import\"https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap\";.text-menu,a.help_menu,a.letter,.mat-drawer-inner-container .mat-list-base .mat-list-item{color:#000;height:auto!important;padding:.3em 0;margin-bottom:0;border-left:0;font-size:15px;font-weight:300;line-height:17px;font-family:Roboto,sans-serif;min-height:20px!important}.text-menu:hover,a.help_menu:hover,a.letter:hover,.mat-drawer-inner-container .mat-list-base .mat-list-item:hover{color:#00a5e6!important;background-color:transparent}.text-menu:focus,a.help_menu:focus,a.letter:focus,.mat-drawer-inner-container .mat-list-base .mat-list-item:focus{color:#fff;background-color:#da291c}body{margin:auto;display:block;max-width:1280px;background-color:#fafafa}.sin-padding{padding:0!important}.mat-toolbar-single-row{height:72px!important}.mat-drawer-content{position:relative}.img-logo{max-width:100%}.card p{color:#666;font-size:16px;font-weight:300;line-height:22px;font-family:Roboto,sans-serif;margin-top:0;margin-bottom:15px}.mat-drawer-inner-container .mat-list-base{border:1px solid #cccccc;margin-top:20px;padding-top:0!important;padding-bottom:15px;background-color:#f7f7f7;cursor:auto}.mat-toolbar.mat-primary{border-bottom:2px solid #da291c!important}.mat-toolbar.mat-primary .button-close-session{background-color:transparent}mat-toolbar.mat-toolbar{margin-bottom:0!important}.mat-drawer-side{border-right:0}#list-home{margin-bottom:0!important}.formio-form{padding:0 15px}mat-toolbar.mat-toolbar,.mat-drawer{position:relative!important}.mat-toolbar{background-color:transparent}.mat-toolbar.header--light{padding:0}.mat-toolbar h3{width:100%;display:block;font-size:27px;font-weight:400;font-family:Roboto,sans-serif;margin-top:0;margin-bottom:0;padding-bottom:6px;border-bottom:1px solid #cccccc}mat-toolbar.mat-toolbar{box-shadow:none;margin-bottom:0}.mat-drawer-container{background-color:#fff}.mat-sidenav-content,.mat-drawer-inner-container{padding-top:0}.mat-drawer.mat-drawer-side{float:left}.button-close-session{position:absolute!important;right:5px;height:40px;color:#fff;border-radius:0;border-left:1px solid #bbb}.button-close-session:before{content:\"\";width:25px;height:22px;position:absolute;background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/otrocerrar.png)}.button-close-session:hover{color:#fff}.button-close-session:hover:before{background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/otrocerrar.png)}.card{border:0!important;border-bottom:1px solid #ccc!important;background-color:#fff;border-radius:0}.card .card-header{padding:0;border-bottom:0;background-color:#fff}.card h4.card-title{font-size:19px;font-family:Roboto,sans-serif;font-weight:400;margin-top:5px;margin-bottom:5px!important}.card .card-body{padding:.3rem 15px}.stats h4.panel-title{font-size:15px}.stats label.control-label--hidden{display:none}.stats.required h4.panel-title{position:relative}.stats.required h4.panel-title:after{content:\"*\";color:#da291c;margin-right:.5em;height:30px}.card.No_border{border-bottom:0!important}.mat-drawer-inner-container .mat-list-base{margin-top:0;padding-bottom:0}.menu .mat-list-item.active:hover{background-color:#da291c!important;color:#fff!important}.menu .mat-list-item.active:hover .mat-list-item-content{color:#fff!important}a.letter{display:block;padding-left:10px;margin-top:10px}a.letter:hover{text-decoration:none;background-color:transparent!important;color:#00a5e6!important}a.letter img{margin-right:.3em}a.help_menu{display:block;padding-left:10px;margin-top:5px}a.help_menu img{margin-right:.3em}a.help_menu:hover{text-decoration:none}a.mat-list-item.letter.active,a.mat-list-item.help_menu.active{color:#da291c!important;background-color:transparent}.mat-drawer.mat-drawer-end{position:fixed!important}.mat-drawer-inner-container .mat-list-base .mat-list-item .mat-list-item-content{padding-right:0!important}.send .mat-list-item-content{padding-left:0!important}label{color:#333;font-size:14px;font-weight:300;font-family:Roboto,sans-serif;margin-bottom:0;position:relative}label i.fa-question-circle{position:relative;left:2px}label.control-label--hidden:after{position:absolute;right:inherit;left:0;font-size:15px;line-height:13px}.no_label label.control-label--hidden{position:relative;right:inherit;left:0;float:left;width:15px;height:10px;margin-right:inherit!important}.no_label input[type=text]{width:90%}.no_label div.choices{margin-left:15px}.form-group{margin-bottom:8px;margin-top:8px}.form-group .form-control{height:22px;font-size:14px;font-weight:300;font-family:Roboto,sans-serif;padding:4px;border-radius:0!important}.form-group textarea.form-control{min-height:50px;height:auto!important}.form-group select.form-control{height:22px;line-height:22px;padding:0}.form-group .choices.form-group.formio-choices .form-control{padding:0 10px}.form-group .button-copy{color:#08c;font-size:15px;font-weight:400;padding:0}.n_margin .form-group,.form-group.formio-choices{margin-top:0;margin-bottom:0}.n_padding,.n_padding_card .card-body{padding:0}.form-control[readonly]{background-color:#f5f5f5}.form-control:disabled{background-color:transparent!important;border:0!important}input{border:1px solid #CCCCCC;line-height:1;font-family:Roboto,sans-serif}textarea:focus,input:focus{box-shadow:0 0 0 .1rem #8daee5!important;border-color:#8daee5!important;background-color:#fff6de!important}.sidenav{width:230px}.btn{padding:3px 10px!important;font-size:14px!important;font-weight:400!important;font-family:Roboto,sans-serif!important;min-width:initial;width:auto;border-radius:0!important}.btn:focus{box-shadow:none}.btn-info,.btn-info:hover{background-color:#08c;border:0;background-image:none!important}.btn-success,.btn-primary{border:0;border-radius:0;background-image:none}.btn-success:hover,.btn-primary:hover{border:0!important;background-image:none;background-color:#d20000}.btn-primary{background-color:#08c}.editgrid-add .btn{width:23px;height:23px;border-radius:50%!important;font-size:20px!important;line-height:1px;font-weight:400!important;border:2px solid #449d44;color:#449d44;background-color:transparent;text-align:center;padding:2px!important;transition:all .3s}.editgrid-add .btn:hover,.editgrid-add .btn:active{background-color:#449d44;color:#fff;box-shadow:none!important;border:1px solid #FFF!important}.editgrid-listgroup .list-group-header{background-color:#e3e3e3!important;border-radius:0!important}.editgrid-listgroup .list-group-header div{border-left:1px solid #fff;border-right:1px solid #fff;font-family:Roboto Condensed,sans-serif;font-weight:300;font-size:14px}.editgrid-listgroup .list-group-header:nth-child(1){border-right:0}.editgrid-listgroup .list-group-item{border:0;position:relative;padding:0 5px!important;background-color:transparent}.editgrid-listgroup .list-group-item small{font-size:14px;font-weight:300}.editgrid-listgroup .list-group-item small strong{font-weight:300!important}.editgrid-listgroup .list-group-item .btn-group.pull-right button{background-color:transparent;background-image:none;position:relative;padding:3px 0;border:0;color:#fff}.editgrid-listgroup .list-group-item .btn-group.pull-right button.editRow{left:-5px;width:35px}.editgrid-listgroup .list-group-item .btn-group.pull-right button.editRow:before{content:\"\";position:absolute;width:14px;height:14px;background-size:cover;background-image:url(http://apps.colfuturo.org/PLIS/plantilla/img/lapiz.png)}.editgrid-listgroup .list-group-item .btn-group.pull-right button.removeRow:before{width:14px;height:14px;content:\"\";position:absolute;background-size:cover;background-image:url(http://apps.colfuturo.org/PLIS/img/delete_h.png)}.editgrid-listgroup .list-group-item .btn-group.pull-right button.removeRow:hover:before{background-image:url(http://apps.colfuturo.org/PLIS/img/delete.png)}.editgrid-listgroup .list-group-item .right_edit{position:absolute;right:0}.editgrid-listgroup .editgrid-actions{margin-top:8px;margin-bottom:8px}.editgrid-listgroup .editgrid-actions .btn-primary{border:0px;padding:.375rem .75rem;font-size:.8125rem;background-image:none;background-color:#08c}.editgrid-listgroup .editgrid-actions .btn-primary:hover{border:1px solid #016293;background-image:none;background-color:#016293}.global-footer .container{padding:15px;margin-top:0;background-color:#e3e3e3}.global-footer .container p{font-size:15px;text-align:left;margin-bottom:0}button .fa{display:none}button.btn.btn-success{margin:0;font-size:16px!important;padding:5px 20px!important;background-color:#449d44}.fwwb-active{background:#4796d6;color:#fff!important}.toast{opacity:1!important}.toast-success{background-color:#51a351!important}.toast-error{background-color:#bd362f!important}.toast-info{background-color:#2f96b4!important}.toast-warning{background-color:#f89406!important}.has-error.alert-danger .checkbox,.has-error.alert-danger .checkbox-inline,.has-error.alert-danger .control-label,.has-error.alert-danger .help-block,.has-error.alert-danger .radio,.has-error.alert-danger .radio-inline,.has-error.alert-danger.checkbox label,.has-error.alert-danger.checkbox-inline label,.has-error.alert-danger.radio label,.has-error.alert-danger.radio-inline label{color:#ed1d24!important}.choices__list--single .choices__item span{white-space:nowrap}.editgrid-listgroup .editgrid-actions .btn-danger{background-color:#da291c;border:1px solid #da291c;transition:all .3s;text-transform:none!important}.editgrid-listgroup .editgrid-actions .btn-danger:hover{background-color:#981d14;color:#fff}p.Alert{color:#da291c}.editgrid-body{padding:10px 0}.choices__list--single .choices__item{overflow:hidden}.checkbox-inline label,.radio-inline label{font-weight:300!important}.sin-p{padding:0!important}.n_p-right .col-sm-2,.n_p-right .col-sm-7,.n_p-right .col-sm-5,.n_p-right .col-sm-6{padding-right:0!important}.n_p .col-xs-5{padding:0!important}.choices[data-type*=select-one] .choices__button{margin-right:1px!important;background:#fff;opacity:1!important;width:15px!important}.choices[data-type*=select-one]:after{right:5px!important}.Label-left .form-check.radio{float:left;margin:0 .3em}.has-feedback .form-control{padding-right:5px!important}.tooltip-inner{text-align:left!important;background-color:#6d6d6d;color:#fff!important;max-width:300px;min-width:150px;padding:.6em;font-family:Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",Segoe UI Symbol;font-size:.7109375rem}.alert-danger{background-color:#fffcf8;border:0!important;padding:1em 0}.alert-danger p{font-size:13px;margin-bottom:0;margin-top:1em}.card p{font-size:13px}.was-validated .form-control:invalid,.form-control.is-invalid{background-image:none}.editgrid-listgroup .list-group-header div,.editgrid-listgroup .list-group-header div:first-child{border-left:0!important}.editgrid-listgroup .list-group-header div:last-child{border-right:0!important}.editgrid-listgroup .list-group-item{padding:0 5px}.Ensayo label:after,.required_label label:after,.N_Left label:after{right:-10px}.list-group-item div{font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#333}.list-group-item .body_table div{padding-top:5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.help-block{color:#ed1d24!important;clear:both}.editgrid-listgroup .editgrid-actions .btn-danger{background-color:#da291c;color:#fff;border:1px solid #f5f5f5;background-image:none}.editgrid-listgroup .editgrid-actions .btn-danger:hover{background-color:#971b12}.editgrid-listgroup.bloque_laboral{width:55%!important}.cortado .form-group .form-check{float:left;width:50%!important;padding:0 1em}.btn-group.pull-right{padding:0!important}.editgrid-edit{width:980px}.choices__list--dropdown{width:auto!important}.choices__list--dropdown .choices__item{font-weight:300!important;font-weight:13px!important;padding:4px 10px!important;font-family:Roboto Condensed,sans-serif}.Phone input{width:55%!important}.date_full-1 .input-group{width:65%!important}.date_full-2 .input-group{width:60%!important}.date_full-3 .input-group{width:47%!important}button.btn.btn-default.editRow,button.btn.btn-danger.removeRow{padding-right:0!important;padding-left:0!important}.Statistics .form-group .form-group{padding:0 17px}.row_2{margin-left:-15px}.mat-tab-label{min-width:120px}.mat-toolbar.mat-primary button.mat-icon-button{display:none}p{font-size:14px;font-weight:300;font-family:Roboto,sans-serif}.margin_bottom{margin-bottom:20px;margin-top:20px}.p-10{padding:10px!important}.pl-30{padding-left:30px!important}.mat-card-header .mat-card-header-text{margin:0!important}input[type=radio],input[type=checkbox]{box-shadow:none!important;border-color:transparent!important}.choices__list--dropdown{word-break:normal!important}.field-required:after{font-size:12px;position:relative;left:2px}.form-group .choices.form-group.formio-choices .form-control{overflow:hidden}.formio-component-submit{padding-left:15px}.date .input-group input.form-control{margin-right:0}.input-group-addon{float:right;width:30px}.input-group-addon .glyphicon{width:16px;height:16px;position:absolute;right:7px;top:3px;background-size:cover;background-repeat:no-repeat}.input-group-addon .glyphicon-calendar{background-image:url(http://apps.colfuturo.org/PLIS/img/calendar.svg)}.numInputWrapper span{opacity:1!important}.flatpickr-current-month .numInputWrapper{width:60px!important}.flatpickr-months .flatpickr-month{height:39px!important}.n_margin-to,.mt-0{margin-top:0!important}.group-item label{font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#333;float:left;margin-right:1em}.group-item{float:left;margin-right:.4em;display:-webkit-flex;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex}.mat-card,.mat-elevation-z8{box-shadow:none!important}.relative{position:relative}mat-card-content h4{margin-bottom:1.5rem}.mat-select-panel .mat-option{height:20px!important}.mat-select-arrow{border-top:5px solid #757575!important}input.mat-input-element{font-family:Roboto,sans-serif;font-weight:300;font-size:14px}.mat-form-field-hide-placeholder .mat-select-placeholder{color:#666!important;-webkit-text-fill-color:#666!important}.mat-vertical-stepper-header{height:auto!important;padding:8px 24px!important;margin-top:5px}.mat-vertical-content{padding:5px 25px 0!important}.mat-form-field{margin-right:1em!important}.mat-form-field-infix{margin-top:0;border:1px solid #bbb;width:auto!important;height:22px;line-height:22px;padding:0!important;min-width:55px!important}.mat-select-value{padding:0 3px;overflow:visible!important;font-size:14px;color:#7a7a7a;font-weight:300}table.ng-star-inserted th,table.ng-star-inserted td{vertical-align:top!important;padding:10px 15px 0 0;font-weight:300;font-family:Roboto,sans-serif;font-size:14px;color:#666}table.ng-star-inserted .subcategory{padding-right:15px;width:130px}table.ng-star-inserted .select-repeat,table.ng-star-inserted .mat-form-field.input-money{margin-right:0!important}table.summary .last{border-left:1px solid #ccc}table.summary tr:last-child .last{border-left:1px solid #fff}.select-currency{margin-bottom:.3em}.mat-icon-button{padding:0 0 0 1em!important;width:auto!important;height:20px!important;line-height:20px!important}.inner{overflow-x:scroll;margin-left:124px;margin-right:170px}.presupuesto_detalle .table thead th{border-bottom:0px solid transparent!important;border-left:1px solid #ccc}.presupuesto_detalle .table tbody tr.Last th{border-right:1px solid white!important;background-color:#cacaca!important}.presupuesto_detalle .table tbody tr.Last th.Last{border-left:1px solid white}.presupuesto_detalle .table tbody tr:hover .col1{color:#00a5e6!important}.col1,.col2{position:absolute;top:auto}.col1{width:125px;left:0;font-weight:400!important;border-right:1px solid #ccc;border-left:0!important}.col2{min-width:85px!important;font-weight:700!important;text-align:right;border-left:1px solid #ccc}.tabla_fija .mat-tab-body-wrapper,.mat-tab-body-content{overflow:visible!important;height:auto!important}.mat-tab-body.mat-tab-body-active{overflow-y:inherit!important}.mat-form-field-appearance-legacy .mat-form-field-underline{height:0!important}.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-empty.mat-form-field-label{display:none!important}input.mat-input-element{padding-right:5px}.mat-step-header .mat-step-icon-state-edit{background:#00aa1a!important}.mat-tab-label{height:40px!important;min-width:90px!important}.mat-tab-label .mat-tab-label-content{font-size:17px;font-weight:400}.mat-raised-button.mat-primary{padding:5px 20px!important;font-size:16px!important;background-color:#449d44}.mat-flat-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{background:#08c}.mat-flat-button.mat-primary:hover,.mat-raised-button.mat-primary:hover,.mat-fab.mat-primary:hover,.mat-mini-fab.mat-primary:hover{background-color:#d20000}.mat-raised-button{min-width:inherit!important;padding:0 10px!important;line-height:27px!important;border-radius:0!important;margin-top:20px!important}.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:none!important}.table th{font-weight:300}.mat-stroked-button:not([class*=mat-elevation-z]),.mat-flat-button:not([class*=mat-elevation-z]){box-shadow:none;border-radius:0;line-height:27px;padding:0 10px}.mat-list-base .mat-list-item,.mat-list-base .mat-list-option{height:auto!important;margin-bottom:10px}.mat-list-base{padding-top:0!important}mat-icon.add,button.add span{color:#449d44}button.remove{color:#da291c}.icon-hover{display:none!important}.icon-with-hover:hover .icon-hover{display:inline!important}.icon-with-hover:hover .icon-active{display:none}mat-icon.edit{color:#f3ab46}tr.mat-header-row{height:35px!important}.mat-header-cell{font-size:14px;font-weight:300}.mat-radio-container,.mat-radio-outer-circle,.mat-radio-inner-circle{height:12px!important;width:12px!important}.mat-radio-outer-circle{border-width:1px!important}.mat-radio-outer-circle{border-color:#a8a8a8!important;background-color:#dedede}.mat-radio-button:not(.mat-radio-disabled).cdk-focused .mat-radio-persistent-ripple{opacity:0!important}.mat-radio-button.mat-accent .mat-radio-inner-circle,.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#666!important}mat-radio-group{display:inline-block!important}mat-radio-button{margin:0 10px 5px!important}.mat-icon{background-color:#fff}.mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:.35em}.mat-form-field-appearance-legacy .mat-form-field-underline{display:none!important}input.mat-input-element{padding-left:5px}.mat-step-icon .mat-icon,.mat-step-icon-content{transform:translate(-45%,-53%)!important}.mat-step-header .mat-step-icon{background:#aaa;position:relative;z-index:2}.mat-step-label{font-size:19px!important;line-height:26px;font-family:Roboto Condensed,sans-serif;font-weight:400}.letter .mat-form-field{margin-right:0;min-width:210px}.btn-info{transition:all .3s}.btn-info span{color:#fff}.btn-info:hover{cursor:pointer;background-color:#d20000}.btn-info:disabled{background-color:#ccc!important;border-color:#ccc!important}.mat-standard-chip{padding:0!important;background-color:#fff!important;justify-content:center;width:100%}.mat-standard-chip:hover:after{background:transparent!important}.mat-select-panel{min-width:calc(100% + 10px)!important}.mat-button-focus-overlay{background-color:transparent!important}button.delete:focus{outline:0}.mat-step-header .mat-step-icon-selected{background-color:#da291c!important}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button{margin:0!important}.mat-card>.mat-card-actions:last-child{margin-bottom:0!important}@media screen and (max-width: 1260px){.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{padding-right:5px}.Form_2{margin:20px 4px!important}}@media screen and (max-width: 1250px){label{font-size:13px!important}}@media screen and (max-width: 1220px){.mat-drawer.sidenav{position:absolute!important}.row.formio-component{margin-left:0;margin-right:0}.card .card-header h4.card-title{text-align:center}.card .card-body{padding:.3rem 0!important}label{width:100%!important;margin:.3em 1em .3em 0!important}label:after{position:relative}.form-group .form-control,.form-group .input-group{margin-left:0!important;margin-right:0!important;width:100%!important}.formio-choices.form-group{float:left;margin-left:0!important;margin-top:0!important}.mat-toolbar-row,.mat-toolbar-single-row{height:75px!important}.col{padding-left:5px!important;padding-right:5px!important}.block .row{display:block}.mat-toolbar.mat-primary button.mat-icon-button{display:block;margin-right:2em}.no_label label.control-label--hidden{width:auto!important;margin-right:1em!important}.hidden-responsive{display:none}}@media screen and (max-width: 991px){.col{flex:100%!important;max-width:inherit!important;padding-left:0!important;padding-right:0!important}.form-group .input-group{width:40%!important}.mat-toolbar.mat-primary .button-close-session{width:40px}.row_2{margin-left:0}.mat-vertical-content{padding:5px 5px 0!important}.mat-vertical-content{overflow:hidden}}.main-content{position:fixed;z-index:-1;overflow:visible;display:none;opacity:0;margin-top:10px;margin-bottom:10px;text-align:left!important}.main-content--show{top:0;left:0;display:block}.main-content hr{display:block;border-style:inset;border-width:1px;color:red}.header{display:flex;align-items:stretch}.header-item{margin:0 5px}button.fa-file-pdf{font-size:2em}\n"] }]
|
|
5781
5781
|
}], ctorParameters: () => [{ type: DataFormService }, { type: ApplicationService }, { type: PppService }, { type: CommonService }, { type: TokenTransformationService }], propDecorators: { configurations: [{
|
|
@@ -5929,10 +5929,10 @@ class FileService {
|
|
|
5929
5929
|
const ref = this.angularFireStorage.ref(path);
|
|
5930
5930
|
return ref.getDownloadURL();
|
|
5931
5931
|
}
|
|
5932
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5933
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5932
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FileService, deps: [{ token: 'environment' }, { token: i1$1.AngularFireAuth }, { token: i2$1.AngularFireStorage }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
5933
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
|
5934
5934
|
}
|
|
5935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FileService, decorators: [{
|
|
5936
5936
|
type: Injectable,
|
|
5937
5937
|
args: [{
|
|
5938
5938
|
providedIn: 'root'
|
|
@@ -6260,12 +6260,12 @@ class PdfVisualizerComponent {
|
|
|
6260
6260
|
const blob = new Blob(byteArrays, { type: contentType });
|
|
6261
6261
|
return blob;
|
|
6262
6262
|
}
|
|
6263
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6264
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
6263
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfVisualizerComponent, deps: [{ token: CommonService }, { token: i2$2.DomSanitizer }, { token: i2.ToastrService }, { token: FileService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6264
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PdfVisualizerComponent, selector: "pli-pdf-visualizer", inputs: { html: "html", header: "header", footer: "footer", marginTop: "marginTop", marginRight: "marginRight", marginBottom: "marginBottom", marginLeft: "marginLeft", font: "font", orientation: "orientation", size: "size", showPager: "showPager", repeatHeader: "repeatHeader", repeatFooter: "repeatFooter", headerHeight: "headerHeight", footerHeight: "footerHeight", enableEdit: "enableEdit", title: "title", height: "height", filename: "filename", enableEmail: "enableEmail", lang: "lang", urlFile: "urlFile" }, outputs: { onDownload: "onDownload", onSendEmail: "onSendEmail", onChange: "onChange" }, usesOnChanges: true, ngImport: i0, template: "<h3 class=\"pdf-visualizer-title\">{{ title }}</h3>\r\n<div class=\"pdf-visualizer-container\">\r\n\t<div class=\"pdf-visualizer-controls\" *ngIf=\"isPdfDocument() === true\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-7\">\r\n\t\t\t\t<div class=\"btn-toolbar\" role=\"toolbar\" aria-label=\"Toolbar with button groups\">\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Second group\">\r\n\t\t\t\t\t\t<!-- zoom in-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Acercar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomIn()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-plus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- zoom out-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Alejar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomOut()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-minus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Third group\">\r\n\t\t\t\t\t\t<!--prev -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onPrevPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Anterior\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-left\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- pagination-->\r\n\t\t\t\t\t\t<span class=\"btn btn-outline-secondary\" *ngIf=\"isPdfDoc() === true\">\r\n\t\t\t\t\t\t\tP\u00E1gina: {{ pdfDocument.pageNum }} / {{ pdfDocument.pdfDoc.numPages }}\r\n\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t<!--next -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onNextPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Siguiente\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-right\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm\" role=\"group\" aria-label=\"First group\">\r\n\t\t\t\t\t\t<!-- download-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t[download]=\"filename\"\r\n\t\t\t\t\t\t\t*ngIf=\"isFilename() === true\"\r\n\t\t\t\t\t\t\t(click)=\"download()\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Descargar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<!-- [href]=\"\r\n\t\t\t\t\t\t\tsanitization.bypassSecurityTrustUrl(\r\n\t\t\t\t\t\t\t\t'data:application/pdf;base64,' + this.base64\r\n\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\" -->\r\n\t\t\t\t\t\t\t<span class=\"fa fa-download\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- toggle edit--\r\n <a href=\"Javascript:;\" *ngIf=\"isEnableEdit() === true\" class=\"btn btn-outline-secondary\" title=\"Editar\"\r\n data-toggle=\"tooltip\" data-placement=\"top\" (click)=\"toggleEdit()\">\r\n <span class=\"fa fa-edit\"></span>\r\n </a>\r\n\r\n <!-- generate pdf-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t*ngIf=\"isEdit() === true\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Generar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\t(click)=\"change()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-play\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-md-5 pull-right\" *ngIf=\"isEnableEmail() === true\">\r\n\t\t\t\t<div class=\"input-group input-group-sm\">\r\n\t\t\t\t\t<label for=\"pdf-visualizer-email\" class=\"pdf\">\r\n\t\t\t\t\t\tEnviar mensaje a\r\n\t\t\t\t\t</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"email\"\r\n\t\t\t\t\t\tid=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\tname=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\trequired=\"true\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tplaceholder=\"Correo electr\u00F3nico\"\r\n\t\t\t\t\t\t[(ngModel)]=\"email\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"input-group-append\">\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t(click)=\"sendEmail()\"\r\n\t\t\t\t\t\t\ttitle=\"Enviar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<img\r\n\t\t\t\t\t\t\t\tsrc=\"http://giro360.co/zona360/colfuturo/PLIC/img/export.svg\"\r\n\t\t\t\t\t\t\t\talt=\"\"\r\n\t\t\t\t\t\t\t\twidth=\"16\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"pdf-visualizer-dashboard\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-5\" *ngIf=\"isEdit() === true\">\r\n\t\t\t\t<textarea\r\n\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t\tstyle=\"resize:vertical;\"\r\n\t\t\t\t\t[(ngModel)]=\"html\"\r\n\t\t\t\t></textarea>\r\n\t\t\t</div>\r\n\t\t\t<div [ngClass]=\"{ 'col-md-7': edit === true, 'col-md-12': !edit }\">\r\n\t\t\t\t<div\r\n\t\t\t\t\tid=\"pdf-scrollable\"\r\n\t\t\t\t\tclass=\"pdf-visualizer-scrollable\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<canvas id=\"pdf-canvas\" class=\"pdf-visualizer-canvas\"> </canvas>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".pdf-visualizer-container{border:1px solid #eee;margin:10px 0}.pdf-visualizer-dashboard,.pdf-visualizer-controls{background-color:#f5f5f5;padding:15px}.pdf-visualizer-dashboard{border-bottom:1px solid #eee;border-top:1px solid #eee}.pdf-visualizer-title{font-size:1.4rem;color:red;text-align:center;margin-bottom:1em}.pdf-visualizer-canvas{cursor:move}.text-align-center{text-align:center}.text-align-left{text-align:left}.text-align-right{text-align:right}.margin-left{margin-left:5px}.pdf-visualizer-scrollable{overflow:hidden;text-align:center}label.pdf{margin-right:.6em;line-height:24px}.btn-outline-secondary{height:26px;line-height:12px!important;background-color:#f2f2f2!important;border:1px solid #ccc!important;color:#333!important}.btn-outline-secondary:hover{background-color:#e6e6e6!important}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); }
|
|
6265
6265
|
}
|
|
6266
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfVisualizerComponent, decorators: [{
|
|
6267
6267
|
type: Component,
|
|
6268
|
-
args: [{ selector: 'pli-pdf-visualizer', standalone: false, template: "<h3 class=\"pdf-visualizer-title\">{{ title }}</h3>\r\n<div class=\"pdf-visualizer-container\">\r\n\t<div class=\"pdf-visualizer-controls\" *ngIf=\"isPdfDocument() === true\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-7\">\r\n\t\t\t\t<div class=\"btn-toolbar\" role=\"toolbar\" aria-label=\"Toolbar with button groups\">\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Second group\">\r\n\t\t\t\t\t\t<!-- zoom in-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Acercar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomIn()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-plus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- zoom out-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Alejar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomOut()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-minus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Third group\">\r\n\t\t\t\t\t\t<!--prev -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onPrevPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Anterior\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-left\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- pagination-->\r\n\t\t\t\t\t\t<span class=\"btn btn-outline-secondary\" *ngIf=\"isPdfDoc() === true\">\r\n\t\t\t\t\t\t\tP\u00E1gina: {{ pdfDocument.pageNum }} / {{ pdfDocument.pdfDoc.numPages }}\r\n\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t<!--next -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onNextPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Siguiente\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-right\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm\" role=\"group\" aria-label=\"First group\">\r\n\t\t\t\t\t\t<!-- download-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t[download]=\"filename\"\r\n\t\t\t\t\t\t\t*ngIf=\"isFilename() === true\"\r\n\t\t\t\t\t\t\t(click)=\"download()\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Descargar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<!-- [href]=\"\r\n\t\t\t\t\t\t\tsanitization.bypassSecurityTrustUrl(\r\n\t\t\t\t\t\t\t\t'data:application/pdf;base64,' + this.base64\r\n\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\" -->\r\n\t\t\t\t\t\t\t<span class=\"fa fa-download\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- toggle edit--\r\n <a href=\"Javascript:;\" *ngIf=\"isEnableEdit() === true\" class=\"btn btn-outline-secondary\" title=\"Editar\"\r\n data-toggle=\"tooltip\" data-placement=\"top\" (click)=\"toggleEdit()\">\r\n <span class=\"fa fa-edit\"></span>\r\n </a>\r\n\r\n <!-- generate pdf-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t*ngIf=\"isEdit() === true\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Generar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\t(click)=\"change()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-play\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-md-5 pull-right\" *ngIf=\"isEnableEmail() === true\">\r\n\t\t\t\t<div class=\"input-group input-group-sm\">\r\n\t\t\t\t\t<label for=\"pdf-visualizer-email\" class=\"pdf\">\r\n\t\t\t\t\t\tEnviar mensaje a\r\n\t\t\t\t\t</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"email\"\r\n\t\t\t\t\t\tid=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\tname=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\trequired=\"true\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tplaceholder=\"Correo electr\u00F3nico\"\r\n\t\t\t\t\t\t[(ngModel)]=\"email\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"input-group-append\">\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t(click)=\"sendEmail()\"\r\n\t\t\t\t\t\t\ttitle=\"Enviar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<img\r\n\t\t\t\t\t\t\t\tsrc=\"http://giro360.co/zona360/colfuturo/PLIC/img/export.svg\"\r\n\t\t\t\t\t\t\t\talt=\"\"\r\n\t\t\t\t\t\t\t\twidth=\"16\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"pdf-visualizer-dashboard\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-5\" *ngIf=\"isEdit() === true\">\r\n\t\t\t\t<textarea\r\n\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t\tstyle=\"resize:vertical;\"\r\n\t\t\t\t\t[(ngModel)]=\"html\"\r\n\t\t\t\t></textarea>\r\n\t\t\t</div>\r\n\t\t\t<div [ngClass]=\"{ 'col-md-7': edit === true, 'col-md-12': !edit }\">\r\n\t\t\t\t<div\r\n\t\t\t\t\tid=\"pdf-scrollable\"\r\n\t\t\t\t\tclass=\"pdf-visualizer-scrollable\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<canvas id=\"pdf-canvas\" class=\"pdf-visualizer-canvas\"> </canvas>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".pdf-visualizer-container{border:1px solid #eee;margin:10px 0}.pdf-visualizer-dashboard,.pdf-visualizer-controls{background-color:#f5f5f5;padding:15px}.pdf-visualizer-dashboard{border-bottom:1px solid #eee;border-top:1px solid #eee}.pdf-visualizer-title{font-size:1.4rem;color:red;text-align:center;margin-bottom:1em}.pdf-visualizer-canvas{cursor:move}.text-align-center{text-align:center}.text-align-left{text-align:left}.text-align-right{text-align:right}.margin-left{margin-left:5px}.pdf-visualizer-scrollable{overflow:hidden;text-align:center}label.pdf{margin-right:.6em;line-height:24px}
|
|
6268
|
+
args: [{ selector: 'pli-pdf-visualizer', standalone: false, template: "<h3 class=\"pdf-visualizer-title\">{{ title }}</h3>\r\n<div class=\"pdf-visualizer-container\">\r\n\t<div class=\"pdf-visualizer-controls\" *ngIf=\"isPdfDocument() === true\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-7\">\r\n\t\t\t\t<div class=\"btn-toolbar\" role=\"toolbar\" aria-label=\"Toolbar with button groups\">\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Second group\">\r\n\t\t\t\t\t\t<!-- zoom in-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Acercar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomIn()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-plus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- zoom out-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Alejar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomOut()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-minus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Third group\">\r\n\t\t\t\t\t\t<!--prev -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onPrevPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Anterior\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-left\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- pagination-->\r\n\t\t\t\t\t\t<span class=\"btn btn-outline-secondary\" *ngIf=\"isPdfDoc() === true\">\r\n\t\t\t\t\t\t\tP\u00E1gina: {{ pdfDocument.pageNum }} / {{ pdfDocument.pdfDoc.numPages }}\r\n\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t<!--next -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onNextPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Siguiente\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-right\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm\" role=\"group\" aria-label=\"First group\">\r\n\t\t\t\t\t\t<!-- download-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t[download]=\"filename\"\r\n\t\t\t\t\t\t\t*ngIf=\"isFilename() === true\"\r\n\t\t\t\t\t\t\t(click)=\"download()\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Descargar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<!-- [href]=\"\r\n\t\t\t\t\t\t\tsanitization.bypassSecurityTrustUrl(\r\n\t\t\t\t\t\t\t\t'data:application/pdf;base64,' + this.base64\r\n\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\" -->\r\n\t\t\t\t\t\t\t<span class=\"fa fa-download\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- toggle edit--\r\n <a href=\"Javascript:;\" *ngIf=\"isEnableEdit() === true\" class=\"btn btn-outline-secondary\" title=\"Editar\"\r\n data-toggle=\"tooltip\" data-placement=\"top\" (click)=\"toggleEdit()\">\r\n <span class=\"fa fa-edit\"></span>\r\n </a>\r\n\r\n <!-- generate pdf-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t*ngIf=\"isEdit() === true\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Generar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\t(click)=\"change()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-play\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-md-5 pull-right\" *ngIf=\"isEnableEmail() === true\">\r\n\t\t\t\t<div class=\"input-group input-group-sm\">\r\n\t\t\t\t\t<label for=\"pdf-visualizer-email\" class=\"pdf\">\r\n\t\t\t\t\t\tEnviar mensaje a\r\n\t\t\t\t\t</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"email\"\r\n\t\t\t\t\t\tid=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\tname=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\trequired=\"true\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tplaceholder=\"Correo electr\u00F3nico\"\r\n\t\t\t\t\t\t[(ngModel)]=\"email\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"input-group-append\">\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t(click)=\"sendEmail()\"\r\n\t\t\t\t\t\t\ttitle=\"Enviar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<img\r\n\t\t\t\t\t\t\t\tsrc=\"http://giro360.co/zona360/colfuturo/PLIC/img/export.svg\"\r\n\t\t\t\t\t\t\t\talt=\"\"\r\n\t\t\t\t\t\t\t\twidth=\"16\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"pdf-visualizer-dashboard\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-5\" *ngIf=\"isEdit() === true\">\r\n\t\t\t\t<textarea\r\n\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t\tstyle=\"resize:vertical;\"\r\n\t\t\t\t\t[(ngModel)]=\"html\"\r\n\t\t\t\t></textarea>\r\n\t\t\t</div>\r\n\t\t\t<div [ngClass]=\"{ 'col-md-7': edit === true, 'col-md-12': !edit }\">\r\n\t\t\t\t<div\r\n\t\t\t\t\tid=\"pdf-scrollable\"\r\n\t\t\t\t\tclass=\"pdf-visualizer-scrollable\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<canvas id=\"pdf-canvas\" class=\"pdf-visualizer-canvas\"> </canvas>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".pdf-visualizer-container{border:1px solid #eee;margin:10px 0}.pdf-visualizer-dashboard,.pdf-visualizer-controls{background-color:#f5f5f5;padding:15px}.pdf-visualizer-dashboard{border-bottom:1px solid #eee;border-top:1px solid #eee}.pdf-visualizer-title{font-size:1.4rem;color:red;text-align:center;margin-bottom:1em}.pdf-visualizer-canvas{cursor:move}.text-align-center{text-align:center}.text-align-left{text-align:left}.text-align-right{text-align:right}.margin-left{margin-left:5px}.pdf-visualizer-scrollable{overflow:hidden;text-align:center}label.pdf{margin-right:.6em;line-height:24px}.btn-outline-secondary{height:26px;line-height:12px!important;background-color:#f2f2f2!important;border:1px solid #ccc!important;color:#333!important}.btn-outline-secondary:hover{background-color:#e6e6e6!important}\n"] }]
|
|
6269
6269
|
}], ctorParameters: () => [{ type: CommonService }, { type: i2$2.DomSanitizer }, { type: i2.ToastrService }, { type: FileService }], propDecorators: { html: [{
|
|
6270
6270
|
type: Input
|
|
6271
6271
|
}], header: [{
|
|
@@ -6587,10 +6587,10 @@ class PdfMergeVisualizerComponent {
|
|
|
6587
6587
|
const blob = new Blob(byteArrays, { type: contentType });
|
|
6588
6588
|
return blob;
|
|
6589
6589
|
}
|
|
6590
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6591
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
6590
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfMergeVisualizerComponent, deps: [{ token: CommonService }, { token: i2.ToastrService }, { token: i2$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6591
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PdfMergeVisualizerComponent, selector: "pli-pdf-merge-visualizer", inputs: { lPdfRequest: "lPdfRequest", enableEdit: "enableEdit", title: "title", height: "height", filename: "filename", enableEmail: "enableEmail", urlFile: "urlFile" }, outputs: { onDownload: "onDownload", onSendEmail: "onSendEmail", onPdfRendered: "onPdfRendered" }, usesOnChanges: true, ngImport: i0, template: "<h3 class=\"pdf-visualizer-title\">{{ title }}</h3>\r\n<div class=\"pdf-visualizer-container\">\r\n\t<div class=\"pdf-visualizer-controls\" *ngIf=\"isPdfDocument() === true\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-7\">\r\n\t\t\t\t<div class=\"btn-toolbar\" role=\"toolbar\" aria-label=\"Toolbar with button groups\">\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Second group\">\r\n\t\t\t\t\t\t<!-- zoom in-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Acercar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomIn()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-plus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- zoom out-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Alejar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomOut()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-minus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Third group\">\r\n\t\t\t\t\t\t<!--prev -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onPrevPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Anterior\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-left\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- pagination-->\r\n\t\t\t\t\t\t<span class=\"btn btn-outline-secondary\" *ngIf=\"isPdfDoc() === true\">\r\n\t\t\t\t\t\t\tP\u00E1gina: {{ pdfDocument.pageNum }} / {{ pdfDocument.pdfDoc.numPages }}\r\n\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t<!--next -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onNextPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Siguiente\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-right\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm\" role=\"group\" aria-label=\"First group\">\r\n\t\t\t\t\t\t<!-- download-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t[download]=\"filename\"\r\n\t\t\t\t\t\t\t*ngIf=\"isFilename() === true\"\r\n\t\t\t\t\t\t\t(click)=\"download()\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Descargar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<!-- [href]=\"\r\n\t\t\t\t\t\t\t\tsanitization.bypassSecurityTrustUrl(\r\n\t\t\t\t\t\t\t\t\t'data:application/pdf;base64,' + this.base64\r\n\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\" -->\r\n\t\t\t\t\t\t\t<span class=\"fa fa-download\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t<!-- TODO - Check functionality -->\r\n\t\t\t\t\t\t<!-- toggle edit-->\r\n\t\t\t\t\t\t<!-- <a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t*ngIf=\"isEnableEdit() === true\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Editar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\t(click)=\"toggleEdit()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-edit\"></span>\r\n\t\t\t\t\t\t</a> -->\r\n\r\n\t\t\t\t\t\t<!-- generate pdf-->\r\n\t\t\t\t\t\t<!-- <a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t*ngIf=\"isEdit() === true\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Generar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\t(click)=\"change()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-play\"></span>\r\n\t\t\t\t\t\t</a> -->\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-md-5 pull-right\" *ngIf=\"isEnableEmail() === true\">\r\n\t\t\t\t<div class=\"input-group input-group-sm\">\r\n\t\t\t\t\t<label for=\"pdf-visualizer-email\" class=\"pdf\">\r\n\t\t\t\t\t\tEnviar mensaje a\r\n\t\t\t\t\t</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"email\"\r\n\t\t\t\t\t\tid=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\tname=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\trequired=\"true\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tplaceholder=\"Correo electr\u00F3nico\"\r\n\t\t\t\t\t\t[(ngModel)]=\"email\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"input-group-append\">\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t(click)=\"sendEmail()\"\r\n\t\t\t\t\t\t\ttitle=\"Enviar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<img\r\n\t\t\t\t\t\t\t\tsrc=\"http://giro360.co/zona360/colfuturo/PLIC/img/export.svg\"\r\n\t\t\t\t\t\t\t\talt=\"\"\r\n\t\t\t\t\t\t\t\twidth=\"16\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"pdf-visualizer-dashboard\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<!-- <div class=\"col-md-5\" *ngIf=\"isEdit() === true\">\r\n\t\t\t\t<textarea\r\n\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t\tstyle=\"resize:vertical;\"\r\n\t\t\t\t\t[(ngModel)]=\"html\"\r\n\t\t\t\t></textarea>\r\n\t\t\t</div> -->\r\n\t\t\t<div [ngClass]=\"{ 'col-md-7': edit === true, 'col-md-12': !edit }\">\r\n\t\t\t\t<div\r\n\t\t\t\t\tid=\"pdf-scrollable\"\r\n\t\t\t\t\tclass=\"pdf-visualizer-scrollable\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<canvas id=\"pdf-canvas\" class=\"pdf-visualizer-canvas\"> </canvas>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".pdf-visualizer-container{border:1px solid #eee;margin:10px 0}.pdf-visualizer-dashboard,.pdf-visualizer-controls{background-color:#f5f5f5;padding:15px}.pdf-visualizer-dashboard{border-bottom:1px solid #eee;border-top:1px solid #eee}.pdf-visualizer-title{font-size:1.4rem;color:red;text-align:center;margin-bottom:1em}.pdf-visualizer-canvas{cursor:move}.text-align-center{text-align:center}.text-align-left{text-align:left}.text-align-right{text-align:right}.margin-left{margin-left:5px}.pdf-visualizer-scrollable{overflow:hidden;text-align:center}label.pdf{margin-right:.6em;line-height:24px}button.btn-outline-secondary{height:26px;line-height:12px!important}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); }
|
|
6592
6592
|
}
|
|
6593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6593
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfMergeVisualizerComponent, decorators: [{
|
|
6594
6594
|
type: Component,
|
|
6595
6595
|
args: [{ selector: 'pli-pdf-merge-visualizer', standalone: false, template: "<h3 class=\"pdf-visualizer-title\">{{ title }}</h3>\r\n<div class=\"pdf-visualizer-container\">\r\n\t<div class=\"pdf-visualizer-controls\" *ngIf=\"isPdfDocument() === true\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-7\">\r\n\t\t\t\t<div class=\"btn-toolbar\" role=\"toolbar\" aria-label=\"Toolbar with button groups\">\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Second group\">\r\n\t\t\t\t\t\t<!-- zoom in-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Acercar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomIn()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-plus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- zoom out-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\ttitle=\"Alejar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onZoomOut()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-search-minus\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm mr-2\" role=\"group\" aria-label=\"Third group\">\r\n\t\t\t\t\t\t<!--prev -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onPrevPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Anterior\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-left\"></span>\r\n\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t<!-- pagination-->\r\n\t\t\t\t\t\t<span class=\"btn btn-outline-secondary\" *ngIf=\"isPdfDoc() === true\">\r\n\t\t\t\t\t\t\tP\u00E1gina: {{ pdfDocument.pageNum }} / {{ pdfDocument.pdfDoc.numPages }}\r\n\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t<!--next -->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\t(click)=\"onNextPage()\"\r\n\t\t\t\t\t\t\ttitle=\"Siguiente\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-chevron-right\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div class=\"btn-group btn-group-sm\" role=\"group\" aria-label=\"First group\">\r\n\t\t\t\t\t\t<!-- download-->\r\n\t\t\t\t\t\t<a\r\n\t\t\t\t\t\t\t[download]=\"filename\"\r\n\t\t\t\t\t\t\t*ngIf=\"isFilename() === true\"\r\n\t\t\t\t\t\t\t(click)=\"download()\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Descargar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<!-- [href]=\"\r\n\t\t\t\t\t\t\t\tsanitization.bypassSecurityTrustUrl(\r\n\t\t\t\t\t\t\t\t\t'data:application/pdf;base64,' + this.base64\r\n\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\" -->\r\n\t\t\t\t\t\t\t<span class=\"fa fa-download\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t<!-- TODO - Check functionality -->\r\n\t\t\t\t\t\t<!-- toggle edit-->\r\n\t\t\t\t\t\t<!-- <a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t*ngIf=\"isEnableEdit() === true\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Editar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\t(click)=\"toggleEdit()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-edit\"></span>\r\n\t\t\t\t\t\t</a> -->\r\n\r\n\t\t\t\t\t\t<!-- generate pdf-->\r\n\t\t\t\t\t\t<!-- <a\r\n\t\t\t\t\t\t\thref=\"Javascript:;\"\r\n\t\t\t\t\t\t\t*ngIf=\"isEdit() === true\"\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttitle=\"Generar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t\t(click)=\"change()\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<span class=\"fa fa-play\"></span>\r\n\t\t\t\t\t\t</a> -->\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"col-md-5 pull-right\" *ngIf=\"isEnableEmail() === true\">\r\n\t\t\t\t<div class=\"input-group input-group-sm\">\r\n\t\t\t\t\t<label for=\"pdf-visualizer-email\" class=\"pdf\">\r\n\t\t\t\t\t\tEnviar mensaje a\r\n\t\t\t\t\t</label>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"email\"\r\n\t\t\t\t\t\tid=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\tname=\"pdf-visualizer-email\"\r\n\t\t\t\t\t\trequired=\"true\"\r\n\t\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t\tplaceholder=\"Correo electr\u00F3nico\"\r\n\t\t\t\t\t\t[(ngModel)]=\"email\"\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t<div class=\"input-group-append\">\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\tclass=\"btn btn-outline-secondary\"\r\n\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t(click)=\"sendEmail()\"\r\n\t\t\t\t\t\t\ttitle=\"Enviar\"\r\n\t\t\t\t\t\t\tdata-toggle=\"tooltip\"\r\n\t\t\t\t\t\t\tdata-placement=\"top\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<img\r\n\t\t\t\t\t\t\t\tsrc=\"http://giro360.co/zona360/colfuturo/PLIC/img/export.svg\"\r\n\t\t\t\t\t\t\t\talt=\"\"\r\n\t\t\t\t\t\t\t\twidth=\"16\"\r\n\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"pdf-visualizer-dashboard\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<!-- <div class=\"col-md-5\" *ngIf=\"isEdit() === true\">\r\n\t\t\t\t<textarea\r\n\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t\tstyle=\"resize:vertical;\"\r\n\t\t\t\t\t[(ngModel)]=\"html\"\r\n\t\t\t\t></textarea>\r\n\t\t\t</div> -->\r\n\t\t\t<div [ngClass]=\"{ 'col-md-7': edit === true, 'col-md-12': !edit }\">\r\n\t\t\t\t<div\r\n\t\t\t\t\tid=\"pdf-scrollable\"\r\n\t\t\t\t\tclass=\"pdf-visualizer-scrollable\"\r\n\t\t\t\t\t[style.height]=\"getHeight()\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<canvas id=\"pdf-canvas\" class=\"pdf-visualizer-canvas\"> </canvas>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: [".pdf-visualizer-container{border:1px solid #eee;margin:10px 0}.pdf-visualizer-dashboard,.pdf-visualizer-controls{background-color:#f5f5f5;padding:15px}.pdf-visualizer-dashboard{border-bottom:1px solid #eee;border-top:1px solid #eee}.pdf-visualizer-title{font-size:1.4rem;color:red;text-align:center;margin-bottom:1em}.pdf-visualizer-canvas{cursor:move}.text-align-center{text-align:center}.text-align-left{text-align:left}.text-align-right{text-align:right}.margin-left{margin-left:5px}.pdf-visualizer-scrollable{overflow:hidden;text-align:center}label.pdf{margin-right:.6em;line-height:24px}button.btn-outline-secondary{height:26px;line-height:12px!important}\n"] }]
|
|
6596
6596
|
}], ctorParameters: () => [{ type: CommonService }, { type: i2.ToastrService }, { type: i2$2.DomSanitizer }], propDecorators: { lPdfRequest: [{
|
|
@@ -6799,10 +6799,10 @@ class SelectPppComponent {
|
|
|
6799
6799
|
}, 2000);
|
|
6800
6800
|
this.cdRef.detectChanges();
|
|
6801
6801
|
}
|
|
6802
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6803
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
6802
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectPppComponent, deps: [{ token: PppService }, { token: i5.UntypedFormBuilder }, { token: i4.ActivatedRoute }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6803
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: SelectPppComponent, selector: "pli-select-ppp", outputs: { onPromCodigoSelected: "onPromCodigoSelected" }, ngImport: i0, template: "<!-- <div class=\"row\">\r\n\t<div class=\"col-md-4\">\r\n\t\t<div class=\"form-group\">\r\n\t\t\t<label for=\"patCodigo\" class=\"form-control-label\">Patrocinador</label>\r\n\t\t\t<p-dropdown\r\n\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t[options]=\"listPatrocinadorDr\"\r\n\t\t\t\t[(ngModel)]=\"patCodigo\"\r\n\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t(ngModelChange)=\"onPliPatrocinadorChanged()\"\r\n\t\t\t></p-dropdown>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"col-md-4\">\r\n\t\t<div class=\"form-group\">\r\n\t\t\t<label for=\"progCodigo\" class=\"form-control-label\">Programa</label>\r\n\t\t\t<p-dropdown\r\n\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t[options]=\"listProgramaDr\"\r\n\t\t\t\t[(ngModel)]=\"progCodigo\"\r\n\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t(onChange)=\"onPliProgramaChanged()\"\r\n\t\t\t></p-dropdown>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"col-md-4\">\r\n\t\t<div class=\"form-group\">\r\n\t\t\t<label for=\"promCodigo\" class=\"form-control-label\">Promocion</label>\r\n\t\t\t<p-dropdown\r\n\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t[options]=\"listPromocionDr\"\r\n\t\t\t\t[(ngModel)]=\"promCodigo\"\r\n\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t(onChange)=\"onPliPromocionChanged($event)\"\r\n\t\t\t></p-dropdown>\r\n\t\t</div>\r\n\t</div>\r\n</div> -->\r\n<form [formGroup]=\"formPPP\">\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-md-4\">\r\n\t\t\t<div class=\"form-group\">\r\n\t\t\t\t<label for=\"patCodigo\" class=\"form-control-label\">Patrocinador</label>\r\n\t\t\t\t<p-dropdown\r\n\t\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t\t[options]=\"listPatrocinadorDr\"\r\n\t\t\t\t\tformControlName=\"sponsor\"\r\n\t\t\t\t\t[(ngModel)]=\"patCodigo\"\r\n\t\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t\t(ngModelChange)=\"onPliPatrocinadorChanged()\"\r\n\t\t\t\t></p-dropdown>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t<div class=\"col-md-4\">\r\n\t\t\t<div class=\"form-group\">\r\n\t\t\t\t<label for=\"progCodigo\" class=\"form-control-label\">Programa</label>\r\n\t\t\t\t<p-dropdown\r\n\t\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t\t[options]=\"listProgramaDr\"\r\n\t\t\t\t\tformControlName=\"program\"\r\n\t\t\t\t\t[(ngModel)]=\"progCodigo\"\r\n\t\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t\t(onChange)=\"onPliProgramaChanged()\"\r\n\t\t\t\t></p-dropdown>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t<div class=\"col-md-4\">\r\n\t\t\t<div class=\"form-group\">\r\n\t\t\t\t<label for=\"promCodigo\" class=\"form-control-label\">Promocion</label>\r\n\t\t\t\t<p-dropdown\r\n\t\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t\t[options]=\"listPromocionDr\"\r\n\t\t\t\t\tformControlName=\"promotion\"\r\n\t\t\t\t\t[(ngModel)]=\"promCodigo\"\r\n\t\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t\t(onChange)=\"onPliPromocionChanged($event)\"\r\n\t\t\t\t></p-dropdown>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i4$1.Dropdown, selector: "p-dropdown", inputs: ["id", "scrollHeight", "filter", "name", "style", "panelStyle", "styleClass", "panelStyleClass", "readonly", "required", "editable", "appendTo", "tabindex", "placeholder", "loadingIcon", "filterPlaceholder", "filterLocale", "variant", "inputId", "dataKey", "filterBy", "filterFields", "autofocus", "resetFilterOnHide", "checkmark", "dropdownIcon", "loading", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "autoDisplayFirst", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "maxlength", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "focusOnHover", "selectOnFocus", "autoOptionFocus", "autofocusFilter", "autoShowPanelOnPrintableCharacterKeyDown", "disabled", "itemSize", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "filterValue", "options"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }] }); }
|
|
6804
6804
|
}
|
|
6805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectPppComponent, decorators: [{
|
|
6806
6806
|
type: Component,
|
|
6807
6807
|
args: [{ selector: 'pli-select-ppp', standalone: false, template: "<!-- <div class=\"row\">\r\n\t<div class=\"col-md-4\">\r\n\t\t<div class=\"form-group\">\r\n\t\t\t<label for=\"patCodigo\" class=\"form-control-label\">Patrocinador</label>\r\n\t\t\t<p-dropdown\r\n\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t[options]=\"listPatrocinadorDr\"\r\n\t\t\t\t[(ngModel)]=\"patCodigo\"\r\n\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t(ngModelChange)=\"onPliPatrocinadorChanged()\"\r\n\t\t\t></p-dropdown>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"col-md-4\">\r\n\t\t<div class=\"form-group\">\r\n\t\t\t<label for=\"progCodigo\" class=\"form-control-label\">Programa</label>\r\n\t\t\t<p-dropdown\r\n\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t[options]=\"listProgramaDr\"\r\n\t\t\t\t[(ngModel)]=\"progCodigo\"\r\n\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t(onChange)=\"onPliProgramaChanged()\"\r\n\t\t\t></p-dropdown>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"col-md-4\">\r\n\t\t<div class=\"form-group\">\r\n\t\t\t<label for=\"promCodigo\" class=\"form-control-label\">Promocion</label>\r\n\t\t\t<p-dropdown\r\n\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t[options]=\"listPromocionDr\"\r\n\t\t\t\t[(ngModel)]=\"promCodigo\"\r\n\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t(onChange)=\"onPliPromocionChanged($event)\"\r\n\t\t\t></p-dropdown>\r\n\t\t</div>\r\n\t</div>\r\n</div> -->\r\n<form [formGroup]=\"formPPP\">\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-md-4\">\r\n\t\t\t<div class=\"form-group\">\r\n\t\t\t\t<label for=\"patCodigo\" class=\"form-control-label\">Patrocinador</label>\r\n\t\t\t\t<p-dropdown\r\n\t\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t\t[options]=\"listPatrocinadorDr\"\r\n\t\t\t\t\tformControlName=\"sponsor\"\r\n\t\t\t\t\t[(ngModel)]=\"patCodigo\"\r\n\t\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t\t(ngModelChange)=\"onPliPatrocinadorChanged()\"\r\n\t\t\t\t></p-dropdown>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t<div class=\"col-md-4\">\r\n\t\t\t<div class=\"form-group\">\r\n\t\t\t\t<label for=\"progCodigo\" class=\"form-control-label\">Programa</label>\r\n\t\t\t\t<p-dropdown\r\n\t\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t\t[options]=\"listProgramaDr\"\r\n\t\t\t\t\tformControlName=\"program\"\r\n\t\t\t\t\t[(ngModel)]=\"progCodigo\"\r\n\t\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t\t(onChange)=\"onPliProgramaChanged()\"\r\n\t\t\t\t></p-dropdown>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t<div class=\"col-md-4\">\r\n\t\t\t<div class=\"form-group\">\r\n\t\t\t\t<label for=\"promCodigo\" class=\"form-control-label\">Promocion</label>\r\n\t\t\t\t<p-dropdown\r\n\t\t\t\t\t[style]=\"{ minWidth: '100%' }\"\r\n\t\t\t\t\t[options]=\"listPromocionDr\"\r\n\t\t\t\t\tformControlName=\"promotion\"\r\n\t\t\t\t\t[(ngModel)]=\"promCodigo\"\r\n\t\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t\t(onChange)=\"onPliPromocionChanged($event)\"\r\n\t\t\t\t></p-dropdown>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</form>" }]
|
|
6808
6808
|
}], ctorParameters: () => [{ type: PppService }, { type: i5.UntypedFormBuilder }, { type: i4.ActivatedRoute }, { type: i0.ChangeDetectorRef }], propDecorators: { onPromCodigoSelected: [{
|
|
@@ -6900,10 +6900,10 @@ class ShowHideColumnsTableComponent extends CommonListsComponent {
|
|
|
6900
6900
|
}
|
|
6901
6901
|
this.listColumnSelected.emit(lColumnSelected);
|
|
6902
6902
|
}
|
|
6903
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6904
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
6903
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ShowHideColumnsTableComponent, deps: [{ token: CommonService }, { token: i0.ChangeDetectorRef }, { token: i2.ToastrService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6904
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ShowHideColumnsTableComponent, selector: "app-show-hide-columns-table", inputs: { title: "title", listColumnWork: "listColumnWork", comboColumnWork: "comboColumnWork" }, outputs: { listColumnSelected: "listColumnSelected" }, usesInheritance: true, ngImport: i0, template: "<button\r\n\ttype=\"button\"\r\n\tclass=\"btn btn-default btn-sm \"\r\n\t(click)=\"displayDialog = !displayDialog\"\r\n\t*ngIf=\"ready\"\r\n>\r\n\t{{ title }}\r\n</button>\r\n\r\n<p-dialog\r\n\t*ngIf=\"ready\"\r\n\theader=\"Ocultar o mostrar columnas\"\r\n\t[(visible)]=\"displayDialog\"\r\n\t[modal]=\"true\"\r\n\t[contentStyle]=\"{\r\n\t\t'text-align': 'left',\r\n\t\twidth: '1100px',\r\n\t\t'overflow-y': 'auto'\r\n\t}\"\r\n\tdismissableMask=\"true\"\r\n\t(onHide)=\"sendSubject()\"\r\n>\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-md-4\">\r\n\t\t\t<input\r\n\t\t\t\ttype=\"input\"\r\n\t\t\t\tclass=\"form-control\"\r\n\t\t\t\tplaceholder=\"Busqueda de columnas\"\r\n\t\t\t\t[(ngModel)]=\"columnSearch\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<ng-container *ngFor=\"let category of comboColumnWork\">\r\n\t\t<div class=\"row\" *ngIf=\"isVisibleCategory(category)\" style=\"margin-top:2rem;\">\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<div class=\"checkbox\" style=\"margin:0 !important;\">\r\n\t\t\t\t\t<label\r\n\t\t\t\t\t\t><input\r\n\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t(change)=\"changeCategory($event.currentTarget.checked, category)\"\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t<strong>{{ category.label }}</strong>\r\n\t\t\t\t\t</label>\r\n\t\t\t\t\t <span\r\n\t\t\t\t\t\tclass=\"fa\"\r\n\t\t\t\t\t\t[ngClass]=\"{\r\n\t\t\t\t\t\t\t'fa-chevron-down': !category.collapsed,\r\n\t\t\t\t\t\t\t'fa-chevron-right': category.collapsed\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\tstyle=\"cursor:pointer;\"\r\n\t\t\t\t\t\t(click)=\"category.collapsed = !category.collapsed\"\r\n\t\t\t\t\t></span>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div class=\"row\" *ngIf=\"!category.collapsed\">\r\n\t\t\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t\t\t<div style=\"margin-left:2rem;margin-top:1rem;\">\r\n\t\t\t\t\t\t\t<ng-container *ngFor=\"let column of category.items\">\r\n\t\t\t\t\t\t\t\t<div class=\"col-md-3\" *ngIf=\"isVisibleColumn(column.label)\">\r\n\t\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t\t*ngIf=\"column.value != null\"\r\n\t\t\t\t\t\t\t\t\t\tclass=\"checkbox\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin:0 !important;\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<label class=\"adjust-text-size\" title=\"{{ column.label }}\"\r\n\t\t\t\t\t\t\t\t\t\t\t><input\r\n\t\t\t\t\t\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t[(ngModel)]=\"column.selected\"\r\n\t\t\t\t\t\t\t\t\t\t\t/>{{ column.label }}</label\r\n\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div *ngIf=\"column.value == null\"> </div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</ng-container>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</ng-container>\r\n</p-dialog>\r\n", styles: [".adjust-text-size{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.align-left{text-align:left!important}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i8.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "maskStyle", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }] }); }
|
|
6905
6905
|
}
|
|
6906
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ShowHideColumnsTableComponent, decorators: [{
|
|
6907
6907
|
type: Component,
|
|
6908
6908
|
args: [{ selector: 'app-show-hide-columns-table', standalone: false, template: "<button\r\n\ttype=\"button\"\r\n\tclass=\"btn btn-default btn-sm \"\r\n\t(click)=\"displayDialog = !displayDialog\"\r\n\t*ngIf=\"ready\"\r\n>\r\n\t{{ title }}\r\n</button>\r\n\r\n<p-dialog\r\n\t*ngIf=\"ready\"\r\n\theader=\"Ocultar o mostrar columnas\"\r\n\t[(visible)]=\"displayDialog\"\r\n\t[modal]=\"true\"\r\n\t[contentStyle]=\"{\r\n\t\t'text-align': 'left',\r\n\t\twidth: '1100px',\r\n\t\t'overflow-y': 'auto'\r\n\t}\"\r\n\tdismissableMask=\"true\"\r\n\t(onHide)=\"sendSubject()\"\r\n>\r\n\t<div class=\"row\">\r\n\t\t<div class=\"col-md-4\">\r\n\t\t\t<input\r\n\t\t\t\ttype=\"input\"\r\n\t\t\t\tclass=\"form-control\"\r\n\t\t\t\tplaceholder=\"Busqueda de columnas\"\r\n\t\t\t\t[(ngModel)]=\"columnSearch\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<ng-container *ngFor=\"let category of comboColumnWork\">\r\n\t\t<div class=\"row\" *ngIf=\"isVisibleCategory(category)\" style=\"margin-top:2rem;\">\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<div class=\"checkbox\" style=\"margin:0 !important;\">\r\n\t\t\t\t\t<label\r\n\t\t\t\t\t\t><input\r\n\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t(change)=\"changeCategory($event.currentTarget.checked, category)\"\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t<strong>{{ category.label }}</strong>\r\n\t\t\t\t\t</label>\r\n\t\t\t\t\t <span\r\n\t\t\t\t\t\tclass=\"fa\"\r\n\t\t\t\t\t\t[ngClass]=\"{\r\n\t\t\t\t\t\t\t'fa-chevron-down': !category.collapsed,\r\n\t\t\t\t\t\t\t'fa-chevron-right': category.collapsed\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\tstyle=\"cursor:pointer;\"\r\n\t\t\t\t\t\t(click)=\"category.collapsed = !category.collapsed\"\r\n\t\t\t\t\t></span>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div class=\"row\" *ngIf=\"!category.collapsed\">\r\n\t\t\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t\t\t<div style=\"margin-left:2rem;margin-top:1rem;\">\r\n\t\t\t\t\t\t\t<ng-container *ngFor=\"let column of category.items\">\r\n\t\t\t\t\t\t\t\t<div class=\"col-md-3\" *ngIf=\"isVisibleColumn(column.label)\">\r\n\t\t\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t\t\t*ngIf=\"column.value != null\"\r\n\t\t\t\t\t\t\t\t\t\tclass=\"checkbox\"\r\n\t\t\t\t\t\t\t\t\t\tstyle=\"margin:0 !important;\"\r\n\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t<label class=\"adjust-text-size\" title=\"{{ column.label }}\"\r\n\t\t\t\t\t\t\t\t\t\t\t><input\r\n\t\t\t\t\t\t\t\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t[(ngModel)]=\"column.selected\"\r\n\t\t\t\t\t\t\t\t\t\t\t/>{{ column.label }}</label\r\n\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div *ngIf=\"column.value == null\"> </div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</ng-container>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</ng-container>\r\n</p-dialog>\r\n", styles: [".adjust-text-size{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.align-left{text-align:left!important}\n"] }]
|
|
6909
6909
|
}], ctorParameters: () => [{ type: CommonService }, { type: i0.ChangeDetectorRef }, { type: i2.ToastrService }], propDecorators: { title: [{
|
|
@@ -6947,10 +6947,10 @@ class SesionService {
|
|
|
6947
6947
|
getInactiveUsers() {
|
|
6948
6948
|
return this.httpClient.get(`${this.environment.host.backend.configuration}sesion/inactive-users`);
|
|
6949
6949
|
}
|
|
6950
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6951
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
6950
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SesionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
6951
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SesionService, providedIn: 'root' }); }
|
|
6952
6952
|
}
|
|
6953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SesionService, decorators: [{
|
|
6954
6954
|
type: Injectable,
|
|
6955
6955
|
args: [{
|
|
6956
6956
|
providedIn: 'root'
|
|
@@ -7980,10 +7980,10 @@ class TokenComponent {
|
|
|
7980
7980
|
resumeCategoryYearContent.append(table);
|
|
7981
7981
|
}
|
|
7982
7982
|
}
|
|
7983
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
7984
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: TokenComponent, isStandalone: false, selector: "pli-token", inputs: { template: "template", istemplate: "istemplate", data: "data" }, outputs: { onGenerate: "onGenerate" }, usesOnChanges: true, ngImport: i0, template: "<div style=\"display: none;\" id=\"pli-token-destination\">\r\n\t<!-- <div *ngIf=\"data != undefined && data.dataDestination != undefined\">\r\n\r\n <div *ngIf=\"data.dataDestination.text != undefined\">\r\n {{data.dataDestination.text}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.title != undefined\">\r\n {{data.dataDestination.title}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.name != undefined || data.dataDestination.lastName != undefined\">\r\n <strong>{{data.dataDestination.name}} {{data.dataDestination.lastName}}</strong>\r\n </div>\r\n <div *ngIf=\"data.dataDestination.cargo != undefined\">\r\n {{data.dataDestination.cargo}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.occupation != undefined\">\r\n {{data.dataDestination.occupation}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.company != undefined\">\r\n {{data.dataDestination.company}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.address != undefined || data.dataDestination.addressDetails != undefined \">\r\n {{data.dataDestination.address}} {{data.dataDestination.addressDetails}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.city != undefined || data.dataDestination.country != undefined \">\r\n {{data.dataDestination.city}}<span *ngIf=\"data.dataDestination.city != undefined && data.dataDestination.country != undefined\">,</span>{{data.dataDestination.country}}\r\n </div>\r\n\r\n </div> -->\r\n</div>\r\n<!-- Complementary greeting-->\r\n<div style=\"display: none;\" id=\"pli-token-complementary-greeting\">\r\n\t<!-- <div\r\n\t\t*ngIf=\"\r\n\t\t\tdata != undefined &&\r\n\t\t\tdata.dataDestination != undefined &&\r\n\t\t\tdata.dataDestination.targetId == 2 &&\r\n\t\t\tdata.dataDestination.greeting != undefined\r\n\t\t\"\r\n\t>\r\n\t\t{{ data.dataDestination.greeting\r\n\t\t}}<span *ngIf=\"data.dataDestination.title != undefined\"\r\n\t\t\t> {{ data.dataDestination.title }}</span\r\n\t\t><span *ngIf=\"data.dataDestination.lastName != undefined\"\r\n\t\t\t> {{ data.dataDestination.lastName }}</span\r\n\t\t>:\r\n\t</div>-->\r\n</div>\r\n\r\n<!-- Primary budget total summary ${presupuesto_288_resumeCategoryYear} -->\r\n<div style=\"display: none;\" id=\"pli-token-principal-budget-total-summary\">\r\n\t<!-- <div>\r\n\t\t<table\r\n\t\t\t*ngIf=\"\r\n\t\t\t\tbudgetDtoPrimary !== null &&\r\n\t\t\t\tbudgetDtoPrimary.budget &&\r\n\t\t\t\tbudgetDtoPrimary.budget.summary\r\n\t\t\t\"\r\n\t\t\tstyle=\"border-spacing: 2px;border-collapse: collapse;\"\r\n\t\t>\r\n\t\t\t<thead>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tRubro\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoPrimary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey; width:80px;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{ year.yearNumber }}\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey; width: 110px;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoPrimary.budget.summary.baseCurrency }})\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</thead>\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr\r\n\t\t\t\t\t*ngFor=\"\r\n\t\t\t\t\t\tlet category of budgetDtoPrimary.budget.summary.categories;\r\n\t\t\t\t\t\tlet iCat = index\r\n\t\t\t\t\t\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<td style=\"font-weight: bold;text-align: left;border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\ttranslateCategory(category.category)\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of category.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; \"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: right;border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tcategory.total == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (category.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoPrimary.budget.summary.baseCurrency }}) \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoPrimary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey; \"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tbudgetDtoPrimary.budget.summary.budgetTotal == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (budgetDtoPrimary.budget.summary.budgetTotal\r\n\t\t\t\t\t\t\t\t | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t</div> -->\r\n</div>\r\n<!-- Secundary budget total summary ${presupuesto_288_resumeCategoryYear} -->\r\n<div style=\"display: none;\" id=\"pli-token-secundary-budget-total-summary\">\r\n\t<div>\r\n\t\t<table\r\n\t\t\t*ngIf=\"\r\n\t\t\t\tbudgetDtoSecundary !== null &&\r\n\t\t\t\tbudgetDtoSecundary.budget &&\r\n\t\t\t\tbudgetDtoSecundary.budget.summary\r\n\t\t\t\"\r\n\t\t\tstyle=\"border-spacing: 2px; border-collapse: collapse; width: 100%;\"\r\n\t\t>\r\n\t\t\t<thead>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tRubro\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoSecundary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\twidth: 80px;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{ year.yearNumber }}\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\twidth: 110px;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoSecundary.budget.summary.baseCurrency }})\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</thead>\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr\r\n\t\t\t\t\t*ngFor=\"\r\n\t\t\t\t\t\tlet category of budgetDtoSecundary.budget.summary.categories;\r\n\t\t\t\t\t\tlet iCat = index\r\n\t\t\t\t\t\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: left; border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\ttranslateCategory(category.category)\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of category.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right; border: 1px solid black;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: right; border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tcategory.total == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (category.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoSecundary.budget.summary.baseCurrency }}) \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoSecundary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tbudgetDtoSecundary.budget.summary.budgetTotal == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (budgetDtoSecundary.budget.summary.budgetTotal\r\n\t\t\t\t\t\t\t\t | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t</div>\r\n</div>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i3.CurrencyPipe, name: "currency" }] }); }
|
|
7983
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokenComponent, deps: [{ token: i3.CurrencyPipe }, { token: TokenService }, { token: i2.ToastrService }, { token: AuthenticationService }, { token: TokenTransformationService }, { token: SesionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7984
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TokenComponent, selector: "pli-token", inputs: { template: "template", istemplate: "istemplate", data: "data" }, outputs: { onGenerate: "onGenerate" }, usesOnChanges: true, ngImport: i0, template: "<div style=\"display: none;\" id=\"pli-token-destination\">\r\n\t<!-- <div *ngIf=\"data != undefined && data.dataDestination != undefined\">\r\n\r\n <div *ngIf=\"data.dataDestination.text != undefined\">\r\n {{data.dataDestination.text}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.title != undefined\">\r\n {{data.dataDestination.title}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.name != undefined || data.dataDestination.lastName != undefined\">\r\n <strong>{{data.dataDestination.name}} {{data.dataDestination.lastName}}</strong>\r\n </div>\r\n <div *ngIf=\"data.dataDestination.cargo != undefined\">\r\n {{data.dataDestination.cargo}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.occupation != undefined\">\r\n {{data.dataDestination.occupation}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.company != undefined\">\r\n {{data.dataDestination.company}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.address != undefined || data.dataDestination.addressDetails != undefined \">\r\n {{data.dataDestination.address}} {{data.dataDestination.addressDetails}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.city != undefined || data.dataDestination.country != undefined \">\r\n {{data.dataDestination.city}}<span *ngIf=\"data.dataDestination.city != undefined && data.dataDestination.country != undefined\">,</span>{{data.dataDestination.country}}\r\n </div>\r\n\r\n </div> -->\r\n</div>\r\n<!-- Complementary greeting-->\r\n<div style=\"display: none;\" id=\"pli-token-complementary-greeting\">\r\n\t<!-- <div\r\n\t\t*ngIf=\"\r\n\t\t\tdata != undefined &&\r\n\t\t\tdata.dataDestination != undefined &&\r\n\t\t\tdata.dataDestination.targetId == 2 &&\r\n\t\t\tdata.dataDestination.greeting != undefined\r\n\t\t\"\r\n\t>\r\n\t\t{{ data.dataDestination.greeting\r\n\t\t}}<span *ngIf=\"data.dataDestination.title != undefined\"\r\n\t\t\t> {{ data.dataDestination.title }}</span\r\n\t\t><span *ngIf=\"data.dataDestination.lastName != undefined\"\r\n\t\t\t> {{ data.dataDestination.lastName }}</span\r\n\t\t>:\r\n\t</div>-->\r\n</div>\r\n\r\n<!-- Primary budget total summary ${presupuesto_288_resumeCategoryYear} -->\r\n<div style=\"display: none;\" id=\"pli-token-principal-budget-total-summary\">\r\n\t<!-- <div>\r\n\t\t<table\r\n\t\t\t*ngIf=\"\r\n\t\t\t\tbudgetDtoPrimary !== null &&\r\n\t\t\t\tbudgetDtoPrimary.budget &&\r\n\t\t\t\tbudgetDtoPrimary.budget.summary\r\n\t\t\t\"\r\n\t\t\tstyle=\"border-spacing: 2px;border-collapse: collapse;\"\r\n\t\t>\r\n\t\t\t<thead>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tRubro\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoPrimary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey; width:80px;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{ year.yearNumber }}\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey; width: 110px;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoPrimary.budget.summary.baseCurrency }})\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</thead>\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr\r\n\t\t\t\t\t*ngFor=\"\r\n\t\t\t\t\t\tlet category of budgetDtoPrimary.budget.summary.categories;\r\n\t\t\t\t\t\tlet iCat = index\r\n\t\t\t\t\t\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<td style=\"font-weight: bold;text-align: left;border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\ttranslateCategory(category.category)\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of category.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; \"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: right;border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tcategory.total == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (category.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoPrimary.budget.summary.baseCurrency }}) \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoPrimary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey; \"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tbudgetDtoPrimary.budget.summary.budgetTotal == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (budgetDtoPrimary.budget.summary.budgetTotal\r\n\t\t\t\t\t\t\t\t | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t</div> -->\r\n</div>\r\n<!-- Secundary budget total summary ${presupuesto_288_resumeCategoryYear} -->\r\n<div style=\"display: none;\" id=\"pli-token-secundary-budget-total-summary\">\r\n\t<div>\r\n\t\t<table\r\n\t\t\t*ngIf=\"\r\n\t\t\t\tbudgetDtoSecundary !== null &&\r\n\t\t\t\tbudgetDtoSecundary.budget &&\r\n\t\t\t\tbudgetDtoSecundary.budget.summary\r\n\t\t\t\"\r\n\t\t\tstyle=\"border-spacing: 2px; border-collapse: collapse; width: 100%;\"\r\n\t\t>\r\n\t\t\t<thead>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tRubro\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoSecundary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\twidth: 80px;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{ year.yearNumber }}\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\twidth: 110px;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoSecundary.budget.summary.baseCurrency }})\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</thead>\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr\r\n\t\t\t\t\t*ngFor=\"\r\n\t\t\t\t\t\tlet category of budgetDtoSecundary.budget.summary.categories;\r\n\t\t\t\t\t\tlet iCat = index\r\n\t\t\t\t\t\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: left; border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\ttranslateCategory(category.category)\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of category.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right; border: 1px solid black;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: right; border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tcategory.total == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (category.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoSecundary.budget.summary.baseCurrency }}) \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoSecundary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tbudgetDtoSecundary.budget.summary.budgetTotal == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (budgetDtoSecundary.budget.summary.budgetTotal\r\n\t\t\t\t\t\t\t\t | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t</div>\r\n</div>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i3.CurrencyPipe, name: "currency" }] }); }
|
|
7985
7985
|
}
|
|
7986
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
7986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokenComponent, decorators: [{
|
|
7987
7987
|
type: Component,
|
|
7988
7988
|
args: [{ selector: 'pli-token', standalone: false, template: "<div style=\"display: none;\" id=\"pli-token-destination\">\r\n\t<!-- <div *ngIf=\"data != undefined && data.dataDestination != undefined\">\r\n\r\n <div *ngIf=\"data.dataDestination.text != undefined\">\r\n {{data.dataDestination.text}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.title != undefined\">\r\n {{data.dataDestination.title}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.name != undefined || data.dataDestination.lastName != undefined\">\r\n <strong>{{data.dataDestination.name}} {{data.dataDestination.lastName}}</strong>\r\n </div>\r\n <div *ngIf=\"data.dataDestination.cargo != undefined\">\r\n {{data.dataDestination.cargo}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.occupation != undefined\">\r\n {{data.dataDestination.occupation}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.company != undefined\">\r\n {{data.dataDestination.company}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.address != undefined || data.dataDestination.addressDetails != undefined \">\r\n {{data.dataDestination.address}} {{data.dataDestination.addressDetails}}\r\n </div>\r\n <div *ngIf=\"data.dataDestination.city != undefined || data.dataDestination.country != undefined \">\r\n {{data.dataDestination.city}}<span *ngIf=\"data.dataDestination.city != undefined && data.dataDestination.country != undefined\">,</span>{{data.dataDestination.country}}\r\n </div>\r\n\r\n </div> -->\r\n</div>\r\n<!-- Complementary greeting-->\r\n<div style=\"display: none;\" id=\"pli-token-complementary-greeting\">\r\n\t<!-- <div\r\n\t\t*ngIf=\"\r\n\t\t\tdata != undefined &&\r\n\t\t\tdata.dataDestination != undefined &&\r\n\t\t\tdata.dataDestination.targetId == 2 &&\r\n\t\t\tdata.dataDestination.greeting != undefined\r\n\t\t\"\r\n\t>\r\n\t\t{{ data.dataDestination.greeting\r\n\t\t}}<span *ngIf=\"data.dataDestination.title != undefined\"\r\n\t\t\t> {{ data.dataDestination.title }}</span\r\n\t\t><span *ngIf=\"data.dataDestination.lastName != undefined\"\r\n\t\t\t> {{ data.dataDestination.lastName }}</span\r\n\t\t>:\r\n\t</div>-->\r\n</div>\r\n\r\n<!-- Primary budget total summary ${presupuesto_288_resumeCategoryYear} -->\r\n<div style=\"display: none;\" id=\"pli-token-principal-budget-total-summary\">\r\n\t<!-- <div>\r\n\t\t<table\r\n\t\t\t*ngIf=\"\r\n\t\t\t\tbudgetDtoPrimary !== null &&\r\n\t\t\t\tbudgetDtoPrimary.budget &&\r\n\t\t\t\tbudgetDtoPrimary.budget.summary\r\n\t\t\t\"\r\n\t\t\tstyle=\"border-spacing: 2px;border-collapse: collapse;\"\r\n\t\t>\r\n\t\t\t<thead>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tRubro\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoPrimary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey; width:80px;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{ year.yearNumber }}\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: center;border: 1px solid black; color: white;background-color: grey; width: 110px;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoPrimary.budget.summary.baseCurrency }})\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</thead>\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr\r\n\t\t\t\t\t*ngFor=\"\r\n\t\t\t\t\t\tlet category of budgetDtoPrimary.budget.summary.categories;\r\n\t\t\t\t\t\tlet iCat = index\r\n\t\t\t\t\t\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<td style=\"font-weight: bold;text-align: left;border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\ttranslateCategory(category.category)\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of category.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; \"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: right;border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tcategory.total == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (category.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoPrimary.budget.summary.baseCurrency }}) \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoPrimary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey; \"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"text-align: right;border: 1px solid black; color: white;background-color: grey;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tbudgetDtoPrimary.budget.summary.budgetTotal == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (budgetDtoPrimary.budget.summary.budgetTotal\r\n\t\t\t\t\t\t\t\t | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t</div> -->\r\n</div>\r\n<!-- Secundary budget total summary ${presupuesto_288_resumeCategoryYear} -->\r\n<div style=\"display: none;\" id=\"pli-token-secundary-budget-total-summary\">\r\n\t<div>\r\n\t\t<table\r\n\t\t\t*ngIf=\"\r\n\t\t\t\tbudgetDtoSecundary !== null &&\r\n\t\t\t\tbudgetDtoSecundary.budget &&\r\n\t\t\t\tbudgetDtoSecundary.budget.summary\r\n\t\t\t\"\r\n\t\t\tstyle=\"border-spacing: 2px; border-collapse: collapse; width: 100%;\"\r\n\t\t>\r\n\t\t\t<thead>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tRubro\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoSecundary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\twidth: 80px;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{ year.yearNumber }}\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\twidth: 110px;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoSecundary.budget.summary.baseCurrency }})\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</thead>\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr\r\n\t\t\t\t\t*ngFor=\"\r\n\t\t\t\t\t\tlet category of budgetDtoSecundary.budget.summary.categories;\r\n\t\t\t\t\t\tlet iCat = index\r\n\t\t\t\t\t\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: left; border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\ttranslateCategory(category.category)\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of category.years\"\r\n\t\t\t\t\t\tstyle=\"text-align: right; border: 1px solid black;\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td style=\"font-weight: bold; text-align: right; border: 1px solid black;\">\r\n\t\t\t\t\t\t {{\r\n\t\t\t\t\t\t\tcategory.total == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (category.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t\t<tr style=\"font-weight: bold;\">\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\tTotal ({{ budgetDtoSecundary.budget.summary.baseCurrency }}) \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\t*ngFor=\"let year of budgetDtoSecundary.budget.summary.years\"\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tyear.total == 0 ? '-' : (year.total | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td\r\n\t\t\t\t\t\tstyle=\"\r\n\t\t\t\t\t\t\ttext-align: right;\r\n\t\t\t\t\t\t\tborder: 1px solid black;\r\n\t\t\t\t\t\t\tcolor: white;\r\n\t\t\t\t\t\t\tbackground-color: grey;\r\n\t\t\t\t\t\t\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{{\r\n\t\t\t\t\t\t\tbudgetDtoSecundary.budget.summary.budgetTotal == 0\r\n\t\t\t\t\t\t\t\t? '-'\r\n\t\t\t\t\t\t\t\t: (budgetDtoSecundary.budget.summary.budgetTotal\r\n\t\t\t\t\t\t\t\t | currency: 'default':'':'1.0-0')\r\n\t\t\t\t\t\t}} \r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t</div>\r\n</div>\r\n" }]
|
|
7989
7989
|
}], ctorParameters: () => [{ type: i3.CurrencyPipe }, { type: TokenService }, { type: i2.ToastrService }, { type: AuthenticationService }, { type: TokenTransformationService }, { type: SesionService }], propDecorators: { template: [{
|
|
@@ -8019,10 +8019,10 @@ class CurrencyColfuturoPipe {
|
|
|
8019
8019
|
let integer = value.replace(/\./g, '');
|
|
8020
8020
|
return integer;
|
|
8021
8021
|
}
|
|
8022
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8023
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
8022
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyColfuturoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
8023
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: CurrencyColfuturoPipe, name: "currencyColfuturo" }); }
|
|
8024
8024
|
}
|
|
8025
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyColfuturoPipe, decorators: [{
|
|
8026
8026
|
type: Pipe,
|
|
8027
8027
|
args: [{
|
|
8028
8028
|
name: 'currencyColfuturo',
|
|
@@ -8055,10 +8055,10 @@ class CurrencyColfuturoFormatterDirective {
|
|
|
8055
8055
|
}
|
|
8056
8056
|
return true;
|
|
8057
8057
|
}
|
|
8058
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8059
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
8058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyColfuturoFormatterDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
8059
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: CurrencyColfuturoFormatterDirective, selector: "[currencyColfuturoFormatter]", host: { listeners: { "focus": "onFocus($event.target.value)", "blur": "onBlur($event.target.value)", "keypress": "onkeypress($event)" } }, ngImport: i0 }); }
|
|
8060
8060
|
}
|
|
8061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyColfuturoFormatterDirective, decorators: [{
|
|
8062
8062
|
type: Directive,
|
|
8063
8063
|
args: [{
|
|
8064
8064
|
selector: '[currencyColfuturoFormatter]',
|
|
@@ -8101,10 +8101,10 @@ class CurrencyDecimalColfuturoPipe {
|
|
|
8101
8101
|
: '';
|
|
8102
8102
|
return integer + fraction;
|
|
8103
8103
|
}
|
|
8104
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8105
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
8104
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyDecimalColfuturoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
8105
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: CurrencyDecimalColfuturoPipe, name: "currencyDecimalColfuturo" }); }
|
|
8106
8106
|
}
|
|
8107
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8107
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyDecimalColfuturoPipe, decorators: [{
|
|
8108
8108
|
type: Pipe,
|
|
8109
8109
|
args: [{
|
|
8110
8110
|
name: 'currencyDecimalColfuturo',
|
|
@@ -8127,10 +8127,10 @@ class CurrencyDecimalColfuturoFormatterDirective {
|
|
|
8127
8127
|
onBlur(value) {
|
|
8128
8128
|
this.el.value = this.currencyDecimalPipe.transform(value);
|
|
8129
8129
|
}
|
|
8130
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8131
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
8130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyDecimalColfuturoFormatterDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
8131
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: CurrencyDecimalColfuturoFormatterDirective, selector: "[currencyDecimalColfuturoFormatter]", host: { listeners: { "focus": "onFocus($event.target.value)", "blur": "onBlur($event.target.value)" } }, ngImport: i0 }); }
|
|
8132
8132
|
}
|
|
8133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyDecimalColfuturoFormatterDirective, decorators: [{
|
|
8134
8134
|
type: Directive,
|
|
8135
8135
|
args: [{
|
|
8136
8136
|
selector: '[currencyDecimalColfuturoFormatter]',
|
|
@@ -8165,10 +8165,10 @@ class CurrencyPrintColfuturoPipe {
|
|
|
8165
8165
|
integer = integer.replace(String.fromCharCode(160), '');
|
|
8166
8166
|
return integer == '0' ? '-' : integer;
|
|
8167
8167
|
}
|
|
8168
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8169
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
8168
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyPrintColfuturoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
8169
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: CurrencyPrintColfuturoPipe, name: "currencyPrintColfuturo" }); }
|
|
8170
8170
|
}
|
|
8171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CurrencyPrintColfuturoPipe, decorators: [{
|
|
8172
8172
|
type: Pipe,
|
|
8173
8173
|
args: [{
|
|
8174
8174
|
name: 'currencyPrintColfuturo',
|
|
@@ -8224,10 +8224,10 @@ class ThousandsPipe {
|
|
|
8224
8224
|
strValue += args.prefix;
|
|
8225
8225
|
return strValue;
|
|
8226
8226
|
}
|
|
8227
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8228
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
8227
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ThousandsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
8228
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: ThousandsPipe, name: "thousands" }); }
|
|
8229
8229
|
}
|
|
8230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ThousandsPipe, decorators: [{
|
|
8231
8231
|
type: Pipe,
|
|
8232
8232
|
args: [{
|
|
8233
8233
|
name: 'thousands',
|
|
@@ -8274,10 +8274,10 @@ class ApplicationTagService {
|
|
|
8274
8274
|
removeTags(idApp, idTags) {
|
|
8275
8275
|
return this.httpClient.post(this.environment.host.backend.backoffice + this.serviceName + '/remove-tags', idTags, { params: new HttpParams().set('idApp', idApp) });
|
|
8276
8276
|
}
|
|
8277
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8278
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8277
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationTagService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8278
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationTagService, providedIn: 'root' }); }
|
|
8279
8279
|
}
|
|
8280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationTagService, decorators: [{
|
|
8281
8281
|
type: Injectable,
|
|
8282
8282
|
args: [{
|
|
8283
8283
|
providedIn: 'root'
|
|
@@ -8328,10 +8328,10 @@ class TagManagementService {
|
|
|
8328
8328
|
removeTags(idApp, idTags) {
|
|
8329
8329
|
return this.httpClient.post(this.environment.host.backend.configuration + this.serviceName + '/remove-tags', idTags, { params: new HttpParams().set('idApp', idApp) });
|
|
8330
8330
|
}
|
|
8331
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8332
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8331
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TagManagementService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8332
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TagManagementService, providedIn: 'root' }); }
|
|
8333
8333
|
}
|
|
8334
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8334
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TagManagementService, decorators: [{
|
|
8335
8335
|
type: Injectable,
|
|
8336
8336
|
args: [{
|
|
8337
8337
|
providedIn: 'root'
|
|
@@ -8345,10 +8345,10 @@ class SpinnerService {
|
|
|
8345
8345
|
constructor() {
|
|
8346
8346
|
this.showSpinner = true;
|
|
8347
8347
|
}
|
|
8348
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8349
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8348
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SpinnerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8349
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SpinnerService, providedIn: 'root' }); }
|
|
8350
8350
|
}
|
|
8351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SpinnerService, decorators: [{
|
|
8352
8352
|
type: Injectable,
|
|
8353
8353
|
args: [{
|
|
8354
8354
|
providedIn: 'root'
|
|
@@ -8603,10 +8603,10 @@ class BudgetApplicationService {
|
|
|
8603
8603
|
.set('completed', completed.toString())
|
|
8604
8604
|
});
|
|
8605
8605
|
}
|
|
8606
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8607
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8606
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetApplicationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8607
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetApplicationService }); }
|
|
8608
8608
|
}
|
|
8609
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetApplicationService, decorators: [{
|
|
8610
8610
|
type: Injectable
|
|
8611
8611
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
8612
8612
|
type: Inject,
|
|
@@ -8653,10 +8653,10 @@ class DocumentManagementService {
|
|
|
8653
8653
|
return this.httpClient.get(this.environment.host.backend.backoffice +
|
|
8654
8654
|
'document-management/totalCreditStudyDocuments', { params: new HttpParams().set('promCodigo', promCodigo.toString()) });
|
|
8655
8655
|
}
|
|
8656
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8657
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8656
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentManagementService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8657
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentManagementService, providedIn: 'root' }); }
|
|
8658
8658
|
}
|
|
8659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentManagementService, decorators: [{
|
|
8660
8660
|
type: Injectable,
|
|
8661
8661
|
args: [{
|
|
8662
8662
|
providedIn: 'root'
|
|
@@ -8792,10 +8792,10 @@ class DocumentService {
|
|
|
8792
8792
|
updateSelectionInformation(updateSelectionInformation) {
|
|
8793
8793
|
return this.httpClient.post(this.environment.host.backend.frontoffice + 'document/updateSelectionInformation', updateSelectionInformation, this.headerJson);
|
|
8794
8794
|
}
|
|
8795
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8796
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8795
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8796
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
|
8797
8797
|
}
|
|
8798
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentService, decorators: [{
|
|
8799
8799
|
type: Injectable,
|
|
8800
8800
|
args: [{
|
|
8801
8801
|
providedIn: 'root'
|
|
@@ -8855,10 +8855,10 @@ class DocumentaryTypeService {
|
|
|
8855
8855
|
};
|
|
8856
8856
|
return this.httpClient.post(this.environment.host.backend.plis + 'config/tipo-documental/delete', object, HEADER_JSON);
|
|
8857
8857
|
}
|
|
8858
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8859
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8858
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentaryTypeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8859
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentaryTypeService, providedIn: 'root' }); }
|
|
8860
8860
|
}
|
|
8861
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentaryTypeService, decorators: [{
|
|
8862
8862
|
type: Injectable,
|
|
8863
8863
|
args: [{
|
|
8864
8864
|
providedIn: 'root'
|
|
@@ -8881,10 +8881,10 @@ class EmailService {
|
|
|
8881
8881
|
sendApplicationNotification(noification) {
|
|
8882
8882
|
return this.httpClient.post(this.environment.host.backend.queue + 'email/sendApplicationNotification', noification, this.headerJson);
|
|
8883
8883
|
}
|
|
8884
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8885
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8884
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: EmailService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8885
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: EmailService, providedIn: 'root' }); }
|
|
8886
8886
|
}
|
|
8887
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8887
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: EmailService, decorators: [{
|
|
8888
8888
|
type: Injectable,
|
|
8889
8889
|
args: [{
|
|
8890
8890
|
providedIn: 'root'
|
|
@@ -8904,10 +8904,10 @@ class CubeService {
|
|
|
8904
8904
|
send(lCubeRequestTO) {
|
|
8905
8905
|
return this.httpClient.post(this.environment.host.backend.queue + 'cube/send', lCubeRequestTO, this.headerJson);
|
|
8906
8906
|
}
|
|
8907
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8908
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8907
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CubeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8908
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CubeService, providedIn: 'root' }); }
|
|
8909
8909
|
}
|
|
8910
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8910
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CubeService, decorators: [{
|
|
8911
8911
|
type: Injectable,
|
|
8912
8912
|
args: [{
|
|
8913
8913
|
providedIn: 'root'
|
|
@@ -9081,10 +9081,10 @@ class EvaluationService {
|
|
|
9081
9081
|
saveEssayOutputsByReviewer(essayScores) {
|
|
9082
9082
|
return this.httpClient.post(`${this.environment.host.backend.backoffice}evaluation/saveEssayOutputsByReviewer`, essayScores);
|
|
9083
9083
|
}
|
|
9084
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9085
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9084
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: EvaluationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9085
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: EvaluationService, providedIn: 'root' }); }
|
|
9086
9086
|
}
|
|
9087
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: EvaluationService, decorators: [{
|
|
9088
9088
|
type: Injectable,
|
|
9089
9089
|
args: [{
|
|
9090
9090
|
providedIn: 'root'
|
|
@@ -9112,10 +9112,10 @@ class ExportExcelService {
|
|
|
9112
9112
|
});
|
|
9113
9113
|
FileSaver.saveAs(data, fileName + '_export_' + new Date().getTime() + EXCEL_EXTENSION);
|
|
9114
9114
|
}
|
|
9115
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9116
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9115
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ExportExcelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9116
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ExportExcelService, providedIn: 'root' }); }
|
|
9117
9117
|
}
|
|
9118
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ExportExcelService, decorators: [{
|
|
9119
9119
|
type: Injectable,
|
|
9120
9120
|
args: [{
|
|
9121
9121
|
providedIn: 'root'
|
|
@@ -9142,10 +9142,10 @@ class GlobalShowTaskService {
|
|
|
9142
9142
|
getByReviwerAndTemplateWithDataTablesParameters(dataTableParameters) {
|
|
9143
9143
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'global-show-task/getByReviwerAndTemplateWithDataTablesParameters', dataTableParameters, this.headerJson);
|
|
9144
9144
|
}
|
|
9145
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9146
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9145
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GlobalShowTaskService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9146
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GlobalShowTaskService, providedIn: 'root' }); }
|
|
9147
9147
|
}
|
|
9148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GlobalShowTaskService, decorators: [{
|
|
9149
9149
|
type: Injectable,
|
|
9150
9150
|
args: [{
|
|
9151
9151
|
providedIn: 'root'
|
|
@@ -9165,10 +9165,10 @@ class ImportDataService {
|
|
|
9165
9165
|
save(application) {
|
|
9166
9166
|
return this.httpClient.post(this.environment.host.backend.configuration + 'importData/saveApplication', application, this.headerJson);
|
|
9167
9167
|
}
|
|
9168
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9169
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9168
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ImportDataService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9169
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ImportDataService, providedIn: 'root' }); }
|
|
9170
9170
|
}
|
|
9171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ImportDataService, decorators: [{
|
|
9172
9172
|
type: Injectable,
|
|
9173
9173
|
args: [{
|
|
9174
9174
|
providedIn: 'root'
|
|
@@ -9242,10 +9242,10 @@ class InteractionApplicationUserService {
|
|
|
9242
9242
|
.set('interactionStaticId', interactionStaticId.toString())
|
|
9243
9243
|
});
|
|
9244
9244
|
}
|
|
9245
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9246
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9245
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InteractionApplicationUserService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9246
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InteractionApplicationUserService, providedIn: 'root' }); }
|
|
9247
9247
|
}
|
|
9248
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9248
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InteractionApplicationUserService, decorators: [{
|
|
9249
9249
|
type: Injectable,
|
|
9250
9250
|
args: [{
|
|
9251
9251
|
providedIn: 'root'
|
|
@@ -9363,10 +9363,10 @@ class KeysAssignationService {
|
|
|
9363
9363
|
.set('promCodigoFinal', promCodigoFinal.toString())
|
|
9364
9364
|
});
|
|
9365
9365
|
}
|
|
9366
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9367
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9366
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: KeysAssignationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9367
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: KeysAssignationService, providedIn: 'root' }); }
|
|
9368
9368
|
}
|
|
9369
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: KeysAssignationService, decorators: [{
|
|
9370
9370
|
type: Injectable,
|
|
9371
9371
|
args: [{
|
|
9372
9372
|
providedIn: 'root'
|
|
@@ -9407,10 +9407,10 @@ class LetterCampaingService {
|
|
|
9407
9407
|
delete(id) {
|
|
9408
9408
|
return this.httpClient.delete(this.environment.host.backend.backoffice + 'letter-campaing', { params: new HttpParams().set('id', id) });
|
|
9409
9409
|
}
|
|
9410
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9411
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9410
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LetterCampaingService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9411
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LetterCampaingService, providedIn: 'root' }); }
|
|
9412
9412
|
}
|
|
9413
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LetterCampaingService, decorators: [{
|
|
9414
9414
|
type: Injectable,
|
|
9415
9415
|
args: [{
|
|
9416
9416
|
providedIn: 'root'
|
|
@@ -9444,10 +9444,10 @@ class LogService {
|
|
|
9444
9444
|
.set('proNombre', proNombre.toString())
|
|
9445
9445
|
});
|
|
9446
9446
|
}
|
|
9447
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9448
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LogService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9448
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LogService, providedIn: 'root' }); }
|
|
9449
9449
|
}
|
|
9450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LogService, decorators: [{
|
|
9451
9451
|
type: Injectable,
|
|
9452
9452
|
args: [{
|
|
9453
9453
|
providedIn: 'root'
|
|
@@ -9478,10 +9478,10 @@ class PageService {
|
|
|
9478
9478
|
getPageNameByPageKey(pageKey) {
|
|
9479
9479
|
return this.httpClient.get(this.environment.host.backend.configuration + 'page/getPageNameByPageKey', { params: new HttpParams().set('pageKey', pageKey.toString()) });
|
|
9480
9480
|
}
|
|
9481
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9482
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9481
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9482
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageService, providedIn: 'root' }); }
|
|
9483
9483
|
}
|
|
9484
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PageService, decorators: [{
|
|
9485
9485
|
type: Injectable,
|
|
9486
9486
|
args: [{
|
|
9487
9487
|
providedIn: 'root'
|
|
@@ -9500,10 +9500,10 @@ class PliCnfPageSubProcessService {
|
|
|
9500
9500
|
getAll() {
|
|
9501
9501
|
return this.httpClient.get(this.environment.host.backend.configuration + 'PliCnfPageSubProcess/getAll');
|
|
9502
9502
|
}
|
|
9503
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9504
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9503
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPageSubProcessService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9504
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPageSubProcessService, providedIn: 'root' }); }
|
|
9505
9505
|
}
|
|
9506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPageSubProcessService, decorators: [{
|
|
9507
9507
|
type: Injectable,
|
|
9508
9508
|
args: [{
|
|
9509
9509
|
providedIn: 'root'
|
|
@@ -9526,10 +9526,10 @@ class PermissionService {
|
|
|
9526
9526
|
getAllTypePermission() {
|
|
9527
9527
|
return this.httpClient.get(this.environment.host.backend.configuration + 'permission/getAllTypePermission');
|
|
9528
9528
|
}
|
|
9529
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9530
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9529
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PermissionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9530
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PermissionService, providedIn: 'root' }); }
|
|
9531
9531
|
}
|
|
9532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9532
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PermissionService, decorators: [{
|
|
9533
9533
|
type: Injectable,
|
|
9534
9534
|
args: [{
|
|
9535
9535
|
providedIn: 'root'
|
|
@@ -9562,10 +9562,10 @@ class PliCnfAppCardFilterService {
|
|
|
9562
9562
|
delete(id) {
|
|
9563
9563
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'pliCnfAppCardFilter/delete', { params: new HttpParams().set('id', id) });
|
|
9564
9564
|
}
|
|
9565
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9566
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9565
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAppCardFilterService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9566
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAppCardFilterService, providedIn: 'root' }); }
|
|
9567
9567
|
}
|
|
9568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAppCardFilterService, decorators: [{
|
|
9569
9569
|
type: Injectable,
|
|
9570
9570
|
args: [{
|
|
9571
9571
|
providedIn: 'root'
|
|
@@ -9600,10 +9600,10 @@ class PliCnfCommitteeVisualizationModeService {
|
|
|
9600
9600
|
getConfigCloningCVisualization(lVisualCommitte) {
|
|
9601
9601
|
return this.httpClient.post(`${this.environment.host.backend.configuration}pliCnfCommitteeVisualizationMode/getConfigCloningCVisualization`, lVisualCommitte);
|
|
9602
9602
|
}
|
|
9603
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9604
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9603
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeVisualizationModeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9604
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeVisualizationModeService, providedIn: 'root' }); }
|
|
9605
9605
|
}
|
|
9606
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeVisualizationModeService, decorators: [{
|
|
9607
9607
|
type: Injectable,
|
|
9608
9608
|
args: [{
|
|
9609
9609
|
providedIn: 'root'
|
|
@@ -9691,10 +9691,10 @@ class PliCnfEvaluationTemplateService {
|
|
|
9691
9691
|
saveAll(lEvaluationTemplate, promCodigo) {
|
|
9692
9692
|
return this.httpClient.post(this.environment.host.backend.configuration + 'evaluationtemplate/saveAll', { lEvaluationTemplate, promCodigo }, this.headerJson);
|
|
9693
9693
|
}
|
|
9694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9695
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9694
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTemplateService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9695
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTemplateService, providedIn: 'root' }); }
|
|
9696
9696
|
}
|
|
9697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTemplateService, decorators: [{
|
|
9698
9698
|
type: Injectable,
|
|
9699
9699
|
args: [{
|
|
9700
9700
|
providedIn: 'root'
|
|
@@ -9726,10 +9726,10 @@ class PliCnfHeaderService {
|
|
|
9726
9726
|
.set('promCodigoFinal', promCodigoFinal.toString())
|
|
9727
9727
|
});
|
|
9728
9728
|
}
|
|
9729
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9730
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9729
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfHeaderService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9730
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfHeaderService, providedIn: 'root' }); }
|
|
9731
9731
|
}
|
|
9732
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9732
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfHeaderService, decorators: [{
|
|
9733
9733
|
type: Injectable,
|
|
9734
9734
|
args: [{
|
|
9735
9735
|
providedIn: 'root'
|
|
@@ -9761,10 +9761,10 @@ class PliCnfIndicatorService {
|
|
|
9761
9761
|
delete(id) {
|
|
9762
9762
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'pliCnfIndicator/delete', { params: new HttpParams().set('id', id.toString()) });
|
|
9763
9763
|
}
|
|
9764
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9765
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9764
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfIndicatorService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9765
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfIndicatorService, providedIn: 'root' }); }
|
|
9766
9766
|
}
|
|
9767
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfIndicatorService, decorators: [{
|
|
9768
9768
|
type: Injectable,
|
|
9769
9769
|
args: [{
|
|
9770
9770
|
providedIn: 'root'
|
|
@@ -9835,10 +9835,10 @@ class PliCnfInteractionService {
|
|
|
9835
9835
|
saveAll(pliCnfInteraction) {
|
|
9836
9836
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfInteraction/saveAll', pliCnfInteraction, this.headerJson);
|
|
9837
9837
|
}
|
|
9838
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9839
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9838
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfInteractionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9839
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfInteractionService, providedIn: 'root' }); }
|
|
9840
9840
|
}
|
|
9841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfInteractionService, decorators: [{
|
|
9842
9842
|
type: Injectable,
|
|
9843
9843
|
args: [{
|
|
9844
9844
|
providedIn: 'root'
|
|
@@ -9859,10 +9859,10 @@ class PliCnfLookAndFeelService {
|
|
|
9859
9859
|
save(pliViewConfiguration) {
|
|
9860
9860
|
return this.httpClient.post(this.environment.host.backend.plis + 'config/lookAndFeel/save', pliViewConfiguration);
|
|
9861
9861
|
}
|
|
9862
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9863
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLookAndFeelService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9863
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLookAndFeelService, providedIn: 'root' }); }
|
|
9864
9864
|
}
|
|
9865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLookAndFeelService, decorators: [{
|
|
9866
9866
|
type: Injectable,
|
|
9867
9867
|
args: [{
|
|
9868
9868
|
providedIn: 'root'
|
|
@@ -9904,10 +9904,10 @@ class PliCnfProfileUserService {
|
|
|
9904
9904
|
return this.httpClient.post(this.environment.host.backend.configuration +
|
|
9905
9905
|
'pliCnfProfileUser/deleteByUserIdAndPatCodigoAndProfileId', listProfileUser, this.headerJson);
|
|
9906
9906
|
}
|
|
9907
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9908
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9907
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProfileUserService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9908
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProfileUserService, providedIn: 'root' }); }
|
|
9909
9909
|
}
|
|
9910
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9910
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProfileUserService, decorators: [{
|
|
9911
9911
|
type: Injectable,
|
|
9912
9912
|
args: [{
|
|
9913
9913
|
providedIn: 'root'
|
|
@@ -9947,10 +9947,10 @@ class PliCnfScenarioService {
|
|
|
9947
9947
|
saveAll(pliCnfScenario) {
|
|
9948
9948
|
return this.httpClient.post(this.environment.host.backend.configuration + this.service_path + '/saveAll', pliCnfScenario, this.headerJson);
|
|
9949
9949
|
}
|
|
9950
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9951
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9950
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfScenarioService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9951
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfScenarioService, providedIn: 'root' }); }
|
|
9952
9952
|
}
|
|
9953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfScenarioService, decorators: [{
|
|
9954
9954
|
type: Injectable,
|
|
9955
9955
|
args: [{
|
|
9956
9956
|
providedIn: 'root'
|
|
@@ -10015,10 +10015,10 @@ class PliCnfSegmentationService {
|
|
|
10015
10015
|
return this.httpClient.get(this.environment.host.backend.configuration +
|
|
10016
10016
|
'pliCnfSegmentation/task/getValproValuesAndBestSegmentationTasks', { params: new HttpParams().set('listPromCodigo', listPromCod.toString()) });
|
|
10017
10017
|
}
|
|
10018
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10019
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10018
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSegmentationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10019
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSegmentationService, providedIn: 'root' }); }
|
|
10020
10020
|
}
|
|
10021
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSegmentationService, decorators: [{
|
|
10022
10022
|
type: Injectable,
|
|
10023
10023
|
args: [{
|
|
10024
10024
|
providedIn: 'root'
|
|
@@ -10084,10 +10084,10 @@ class PliCnfStatusFlowInteractionService {
|
|
|
10084
10084
|
saveAll(lPliCnfStatusFlowInteraction) {
|
|
10085
10085
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfStatusFlowInteraction/saveAll', lPliCnfStatusFlowInteraction, HEADER_JSON);
|
|
10086
10086
|
}
|
|
10087
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10088
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10087
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfStatusFlowInteractionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10088
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfStatusFlowInteractionService, providedIn: 'root' }); }
|
|
10089
10089
|
}
|
|
10090
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10090
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfStatusFlowInteractionService, decorators: [{
|
|
10091
10091
|
type: Injectable,
|
|
10092
10092
|
args: [{
|
|
10093
10093
|
providedIn: 'root'
|
|
@@ -10134,10 +10134,10 @@ class PliCnfStatusFlowService {
|
|
|
10134
10134
|
sendEmail(statusFlowId, listApplicationId) {
|
|
10135
10135
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfStatusFlowMailing/sendEmail/' + statusFlowId, listApplicationId, HEADER_JSON);
|
|
10136
10136
|
}
|
|
10137
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10138
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10137
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfStatusFlowService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10138
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfStatusFlowService, providedIn: 'root' }); }
|
|
10139
10139
|
}
|
|
10140
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfStatusFlowService, decorators: [{
|
|
10141
10141
|
type: Injectable,
|
|
10142
10142
|
args: [{
|
|
10143
10143
|
providedIn: 'root'
|
|
@@ -10186,10 +10186,10 @@ class PliCnfSupportDocumentService {
|
|
|
10186
10186
|
params: new HttpParams().set('applicationId', applicationId)
|
|
10187
10187
|
});
|
|
10188
10188
|
}
|
|
10189
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10190
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10189
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSupportDocumentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10190
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSupportDocumentService, providedIn: 'root' }); }
|
|
10191
10191
|
}
|
|
10192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSupportDocumentService, decorators: [{
|
|
10193
10193
|
type: Injectable,
|
|
10194
10194
|
args: [{
|
|
10195
10195
|
providedIn: 'root'
|
|
@@ -10244,10 +10244,10 @@ class PliCnfTextService {
|
|
|
10244
10244
|
.set('newPPP', newPPP.toString())
|
|
10245
10245
|
});
|
|
10246
10246
|
}
|
|
10247
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10248
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10247
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10248
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextService, providedIn: 'root' }); }
|
|
10249
10249
|
}
|
|
10250
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10250
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextService, decorators: [{
|
|
10251
10251
|
type: Injectable,
|
|
10252
10252
|
args: [{
|
|
10253
10253
|
providedIn: 'root'
|
|
@@ -10275,10 +10275,10 @@ class PliCnfUserWorkspaceService {
|
|
|
10275
10275
|
delete(id) {
|
|
10276
10276
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'PliCnfUserWorkspace/delete', { params: new HttpParams().set('id', id) });
|
|
10277
10277
|
}
|
|
10278
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10279
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10278
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUserWorkspaceService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10279
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUserWorkspaceService, providedIn: 'root' }); }
|
|
10280
10280
|
}
|
|
10281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10281
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUserWorkspaceService, decorators: [{
|
|
10282
10282
|
type: Injectable,
|
|
10283
10283
|
args: [{
|
|
10284
10284
|
providedIn: 'root'
|
|
@@ -10306,10 +10306,10 @@ class PliCnfValproKeysService {
|
|
|
10306
10306
|
saveAll(pliCnfValproKeys) {
|
|
10307
10307
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfValProKeys/saveAll', pliCnfValproKeys, this.headerJson);
|
|
10308
10308
|
}
|
|
10309
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10310
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10309
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfValproKeysService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10310
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfValproKeysService, providedIn: 'root' }); }
|
|
10311
10311
|
}
|
|
10312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfValproKeysService, decorators: [{
|
|
10313
10313
|
type: Injectable,
|
|
10314
10314
|
args: [{
|
|
10315
10315
|
providedIn: 'root'
|
|
@@ -10333,10 +10333,10 @@ class PliCnfWorkspaceSegmentationService {
|
|
|
10333
10333
|
getFirst() {
|
|
10334
10334
|
return this.httpClient.get(this.environment.host.backend.configuration + 'pliCnfWorkspaceSegmentation/getFirst');
|
|
10335
10335
|
}
|
|
10336
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10337
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10336
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfWorkspaceSegmentationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10337
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfWorkspaceSegmentationService, providedIn: 'root' }); }
|
|
10338
10338
|
}
|
|
10339
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10339
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfWorkspaceSegmentationService, decorators: [{
|
|
10340
10340
|
type: Injectable,
|
|
10341
10341
|
args: [{
|
|
10342
10342
|
providedIn: 'root'
|
|
@@ -10368,10 +10368,10 @@ class PliMultipleValueFilterService {
|
|
|
10368
10368
|
getAll() {
|
|
10369
10369
|
return this.httpClient.get(this.environment.host.backend.segmentation + 'pliMultipleValueFilter/getAll');
|
|
10370
10370
|
}
|
|
10371
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10372
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10371
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliMultipleValueFilterService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10372
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliMultipleValueFilterService, providedIn: 'root' }); }
|
|
10373
10373
|
}
|
|
10374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10374
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliMultipleValueFilterService, decorators: [{
|
|
10375
10375
|
type: Injectable,
|
|
10376
10376
|
args: [{
|
|
10377
10377
|
providedIn: 'root'
|
|
@@ -10421,10 +10421,10 @@ class PliPromocionUsernameService {
|
|
|
10421
10421
|
deleteMultiple(listId) {
|
|
10422
10422
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'pliPromocionUsername/deleteMultiple', { params: new HttpParams().set('listId', listId.toString()) });
|
|
10423
10423
|
}
|
|
10424
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10425
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10424
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliPromocionUsernameService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10425
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliPromocionUsernameService, providedIn: 'root' }); }
|
|
10426
10426
|
}
|
|
10427
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliPromocionUsernameService, decorators: [{
|
|
10428
10428
|
type: Injectable,
|
|
10429
10429
|
args: [{
|
|
10430
10430
|
providedIn: 'root'
|
|
@@ -10546,10 +10546,10 @@ class PliSegmentationService {
|
|
|
10546
10546
|
return this.httpClient.post(this.environment.host.backend.segmentation +
|
|
10547
10547
|
'PlicSegmentationTableController/changeColor', segmentationColorRequestDto, this.headerJson);
|
|
10548
10548
|
}
|
|
10549
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10550
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10549
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliSegmentationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10550
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliSegmentationService, providedIn: 'root' }); }
|
|
10551
10551
|
}
|
|
10552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10552
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliSegmentationService, decorators: [{
|
|
10553
10553
|
type: Injectable,
|
|
10554
10554
|
args: [{
|
|
10555
10555
|
providedIn: 'root'
|
|
@@ -10597,10 +10597,10 @@ class PliTagService {
|
|
|
10597
10597
|
tagNames: tagNames
|
|
10598
10598
|
});
|
|
10599
10599
|
}
|
|
10600
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10601
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10600
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliTagService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10601
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliTagService, providedIn: 'root' }); }
|
|
10602
10602
|
}
|
|
10603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliTagService, decorators: [{
|
|
10604
10604
|
type: Injectable,
|
|
10605
10605
|
args: [{
|
|
10606
10606
|
providedIn: 'root'
|
|
@@ -10644,10 +10644,10 @@ class PliUserService {
|
|
|
10644
10644
|
.set('listProfileId', listProfileId.toString())
|
|
10645
10645
|
});
|
|
10646
10646
|
}
|
|
10647
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10648
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10647
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliUserService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10648
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliUserService, providedIn: 'root' }); }
|
|
10649
10649
|
}
|
|
10650
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliUserService, decorators: [{
|
|
10651
10651
|
type: Injectable,
|
|
10652
10652
|
args: [{
|
|
10653
10653
|
providedIn: 'root'
|
|
@@ -10700,10 +10700,10 @@ class ProfileService {
|
|
|
10700
10700
|
delete(id) {
|
|
10701
10701
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'profile/delete', { params: new HttpParams().set('id', id) });
|
|
10702
10702
|
}
|
|
10703
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10704
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10703
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ProfileService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10704
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ProfileService, providedIn: 'root' }); }
|
|
10705
10705
|
}
|
|
10706
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ProfileService, decorators: [{
|
|
10707
10707
|
type: Injectable,
|
|
10708
10708
|
args: [{
|
|
10709
10709
|
providedIn: 'root'
|
|
@@ -10790,10 +10790,10 @@ class SegmentationUserService {
|
|
|
10790
10790
|
return this.httpClient.get(this.environment.host.backend.segmentation +
|
|
10791
10791
|
'PlicSegmentationUserController/getDataCutOff', { params: new HttpParams() });
|
|
10792
10792
|
}
|
|
10793
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10794
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10793
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationUserService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10794
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationUserService, providedIn: 'root' }); }
|
|
10795
10795
|
}
|
|
10796
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationUserService, decorators: [{
|
|
10797
10797
|
type: Injectable,
|
|
10798
10798
|
args: [{
|
|
10799
10799
|
providedIn: 'root'
|
|
@@ -10813,10 +10813,10 @@ class OpenKMDocumentService {
|
|
|
10813
10813
|
return this.httpClient.post(this.environment.host.backend.pliOpenkmDocumentSegmentation +
|
|
10814
10814
|
'pli-openkm-document-segmentation/transferIdNumber', lIdNumber, this.headerJson);
|
|
10815
10815
|
}
|
|
10816
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10817
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10816
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: OpenKMDocumentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10817
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: OpenKMDocumentService, providedIn: 'root' }); }
|
|
10818
10818
|
}
|
|
10819
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: OpenKMDocumentService, decorators: [{
|
|
10820
10820
|
type: Injectable,
|
|
10821
10821
|
args: [{
|
|
10822
10822
|
providedIn: 'root'
|
|
@@ -10840,10 +10840,10 @@ class SegmentationService {
|
|
|
10840
10840
|
sendMultiple(listSegmentation) {
|
|
10841
10841
|
return this.httpClient.post(this.environment.host.backend.queue + 'segmentation/sendMassive', listSegmentation, this.headerJson);
|
|
10842
10842
|
}
|
|
10843
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10844
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10843
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
10844
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationService, providedIn: 'root' }); }
|
|
10845
10845
|
}
|
|
10846
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationService, decorators: [{
|
|
10847
10847
|
type: Injectable,
|
|
10848
10848
|
args: [{
|
|
10849
10849
|
providedIn: 'root'
|
|
@@ -11373,10 +11373,10 @@ class SendApplicationService {
|
|
|
11373
11373
|
}
|
|
11374
11374
|
return false;
|
|
11375
11375
|
}
|
|
11376
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11377
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11376
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SendApplicationService, deps: [{ token: 'environment' }, { token: TokenService }, { token: EmailService }, { token: InteractionApplicationUserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11377
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SendApplicationService, providedIn: 'root' }); }
|
|
11378
11378
|
}
|
|
11379
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11379
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SendApplicationService, decorators: [{
|
|
11380
11380
|
type: Injectable,
|
|
11381
11381
|
args: [{
|
|
11382
11382
|
providedIn: 'root'
|
|
@@ -11400,10 +11400,10 @@ class SesionFormService {
|
|
|
11400
11400
|
save(sesionForm) {
|
|
11401
11401
|
return this.httpClient.post(this.environment.host.backend.configuration + 'sesionForm/save', sesionForm, this.headerJson);
|
|
11402
11402
|
}
|
|
11403
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11404
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11403
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SesionFormService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11404
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SesionFormService, providedIn: 'root' }); }
|
|
11405
11405
|
}
|
|
11406
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SesionFormService, decorators: [{
|
|
11407
11407
|
type: Injectable,
|
|
11408
11408
|
args: [{
|
|
11409
11409
|
providedIn: 'root'
|
|
@@ -11462,10 +11462,10 @@ class SponsorshipLetterService {
|
|
|
11462
11462
|
saveAll(sponsorshipLetter) {
|
|
11463
11463
|
return this.httpClient.post(this.environment.host.backend.configuration + 'sponsorship-letter/saveAll', sponsorshipLetter, this.headerJson);
|
|
11464
11464
|
}
|
|
11465
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11466
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SponsorshipLetterService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11466
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SponsorshipLetterService, providedIn: 'root' }); }
|
|
11467
11467
|
}
|
|
11468
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SponsorshipLetterService, decorators: [{
|
|
11469
11469
|
type: Injectable,
|
|
11470
11470
|
args: [{
|
|
11471
11471
|
providedIn: 'root'
|
|
@@ -11560,10 +11560,10 @@ class StatusService {
|
|
|
11560
11560
|
return this.httpClient.put(this.environment.host.backend.configuration +
|
|
11561
11561
|
'pliCnfStatus/putStatusAfterApplicationFinished', lPliCnfStatus, this.headerJson);
|
|
11562
11562
|
}
|
|
11563
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11564
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11563
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: StatusService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11564
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: StatusService, providedIn: 'root' }); }
|
|
11565
11565
|
}
|
|
11566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11566
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: StatusService, decorators: [{
|
|
11567
11567
|
type: Injectable,
|
|
11568
11568
|
args: [{
|
|
11569
11569
|
providedIn: 'root'
|
|
@@ -11584,10 +11584,10 @@ class UserService {
|
|
|
11584
11584
|
params: new HttpParams().set('cargarListas', cargarListas.toString())
|
|
11585
11585
|
});
|
|
11586
11586
|
}
|
|
11587
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11588
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11587
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UserService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11588
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
|
11589
11589
|
}
|
|
11590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UserService, decorators: [{
|
|
11591
11591
|
type: Injectable,
|
|
11592
11592
|
args: [{
|
|
11593
11593
|
providedIn: 'root'
|
|
@@ -11611,10 +11611,10 @@ class PliCnfBudgetService {
|
|
|
11611
11611
|
.set('promCode', promCode.toString())
|
|
11612
11612
|
});
|
|
11613
11613
|
}
|
|
11614
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11615
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11614
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfBudgetService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11615
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfBudgetService, providedIn: 'root' }); }
|
|
11616
11616
|
}
|
|
11617
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfBudgetService, decorators: [{
|
|
11618
11618
|
type: Injectable,
|
|
11619
11619
|
args: [{
|
|
11620
11620
|
providedIn: 'root'
|
|
@@ -11659,10 +11659,10 @@ class ConfigurationService {
|
|
|
11659
11659
|
responseType: 'blob'
|
|
11660
11660
|
});
|
|
11661
11661
|
}
|
|
11662
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11663
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11663
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationService, providedIn: 'root' }); }
|
|
11664
11664
|
}
|
|
11665
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11665
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationService, decorators: [{
|
|
11666
11666
|
type: Injectable,
|
|
11667
11667
|
args: [{
|
|
11668
11668
|
providedIn: 'root'
|
|
@@ -11720,10 +11720,10 @@ class BudgetSimulationService {
|
|
|
11720
11720
|
getTotalInsuranceAmount(budgetSimulations) {
|
|
11721
11721
|
return this.httpClient.post(this.environment.host.backend.frontoffice + this.URLS.getTotalInsuranceAmount, budgetSimulations, this.headerJson);
|
|
11722
11722
|
}
|
|
11723
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11724
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11723
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetSimulationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11724
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetSimulationService, providedIn: 'root' }); }
|
|
11725
11725
|
}
|
|
11726
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetSimulationService, decorators: [{
|
|
11727
11727
|
type: Injectable,
|
|
11728
11728
|
args: [{
|
|
11729
11729
|
providedIn: 'root'
|
|
@@ -11750,10 +11750,10 @@ class PliCnfAcuityFieldsService {
|
|
|
11750
11750
|
save(pliCnfAcuityFields) {
|
|
11751
11751
|
return this.httpClient.post(`${this.environment.host.backend.configuration}pliCnfAcuityFields/save`, pliCnfAcuityFields);
|
|
11752
11752
|
}
|
|
11753
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11754
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11753
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAcuityFieldsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11754
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAcuityFieldsService, providedIn: 'root' }); }
|
|
11755
11755
|
}
|
|
11756
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11756
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAcuityFieldsService, decorators: [{
|
|
11757
11757
|
type: Injectable,
|
|
11758
11758
|
args: [{
|
|
11759
11759
|
providedIn: 'root'
|
|
@@ -11873,10 +11873,10 @@ class GuaranteeService {
|
|
|
11873
11873
|
}
|
|
11874
11874
|
});
|
|
11875
11875
|
}
|
|
11876
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11877
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11876
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
11877
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeService, providedIn: 'root' }); }
|
|
11878
11878
|
}
|
|
11879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeService, decorators: [{
|
|
11880
11880
|
type: Injectable,
|
|
11881
11881
|
args: [{
|
|
11882
11882
|
providedIn: 'root'
|
|
@@ -12160,10 +12160,10 @@ class CreditStudyService {
|
|
|
12160
12160
|
.set('promCodigo', promCodigo.toString())
|
|
12161
12161
|
});
|
|
12162
12162
|
}
|
|
12163
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12164
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12163
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CreditStudyService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12164
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CreditStudyService, providedIn: 'root' }); }
|
|
12165
12165
|
}
|
|
12166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CreditStudyService, decorators: [{
|
|
12167
12167
|
type: Injectable,
|
|
12168
12168
|
args: [{
|
|
12169
12169
|
providedIn: 'root'
|
|
@@ -12208,10 +12208,10 @@ class GuaranteeDocumentService {
|
|
|
12208
12208
|
params: new HttpParams().set('applicationId', String(applicationId))
|
|
12209
12209
|
});
|
|
12210
12210
|
}
|
|
12211
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12212
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12211
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeDocumentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12212
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeDocumentService, providedIn: 'root' }); }
|
|
12213
12213
|
}
|
|
12214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeDocumentService, decorators: [{
|
|
12215
12215
|
type: Injectable,
|
|
12216
12216
|
args: [{
|
|
12217
12217
|
providedIn: 'root'
|
|
@@ -12256,10 +12256,10 @@ class CommonInfoService {
|
|
|
12256
12256
|
getCommunicationPropertyNames() {
|
|
12257
12257
|
return this.httpClient.get(this.environment.host.backend.communication + 'common-info/getPropertyNames');
|
|
12258
12258
|
}
|
|
12259
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12260
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommonInfoService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12260
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommonInfoService, providedIn: 'root' }); }
|
|
12261
12261
|
}
|
|
12262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommonInfoService, decorators: [{
|
|
12263
12263
|
type: Injectable,
|
|
12264
12264
|
args: [{
|
|
12265
12265
|
providedIn: 'root'
|
|
@@ -12285,10 +12285,10 @@ class PliCnfMenuFormService {
|
|
|
12285
12285
|
save(lPliCnfMenuForm) {
|
|
12286
12286
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfMenuForm/save', lPliCnfMenuForm, HEADER_JSON);
|
|
12287
12287
|
}
|
|
12288
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12289
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12288
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMenuFormService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12289
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMenuFormService, providedIn: 'root' }); }
|
|
12290
12290
|
}
|
|
12291
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12291
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMenuFormService, decorators: [{
|
|
12292
12292
|
type: Injectable,
|
|
12293
12293
|
args: [{
|
|
12294
12294
|
providedIn: 'root'
|
|
@@ -12321,10 +12321,10 @@ class PliCnfGuaranteeDocumentsTemplateService {
|
|
|
12321
12321
|
configCloningGDocuments(lGdocs) {
|
|
12322
12322
|
return this.httpClient.post(`${this.environment.host.backend.configuration}pliCnfGuaranteeDocumentsTemplate/configCloningGDocuments`, lGdocs);
|
|
12323
12323
|
}
|
|
12324
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12325
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12324
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfGuaranteeDocumentsTemplateService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12325
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfGuaranteeDocumentsTemplateService, providedIn: 'root' }); }
|
|
12326
12326
|
}
|
|
12327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfGuaranteeDocumentsTemplateService, decorators: [{
|
|
12328
12328
|
type: Injectable,
|
|
12329
12329
|
args: [{
|
|
12330
12330
|
providedIn: 'root'
|
|
@@ -12371,10 +12371,10 @@ class IntegrationADOService {
|
|
|
12371
12371
|
return this.httpClient.post(this.environment.host.backend.frontoffice +
|
|
12372
12372
|
'integrationADO/saveTransactionAndStateManual', body);
|
|
12373
12373
|
}
|
|
12374
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12375
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12374
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: IntegrationADOService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12375
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: IntegrationADOService, providedIn: 'root' }); }
|
|
12376
12376
|
}
|
|
12377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: IntegrationADOService, decorators: [{
|
|
12378
12378
|
type: Injectable,
|
|
12379
12379
|
args: [{
|
|
12380
12380
|
providedIn: 'root'
|
|
@@ -12404,10 +12404,10 @@ class GuaranteeEnrollmentService {
|
|
|
12404
12404
|
return this.httpClient.post(this.environment.host.backend.frontoffice +
|
|
12405
12405
|
'guaranteeEnrollment/updateGuaranteeEnrollment', guaranteeEnrollment);
|
|
12406
12406
|
}
|
|
12407
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12408
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12407
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeEnrollmentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12408
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeEnrollmentService, providedIn: 'root' }); }
|
|
12409
12409
|
}
|
|
12410
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteeEnrollmentService, decorators: [{
|
|
12411
12411
|
type: Injectable,
|
|
12412
12412
|
args: [{
|
|
12413
12413
|
providedIn: 'root'
|
|
@@ -12439,10 +12439,10 @@ class PliCnfTextOptionService {
|
|
|
12439
12439
|
params: new HttpParams().set('id', id.toString())
|
|
12440
12440
|
});
|
|
12441
12441
|
}
|
|
12442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12443
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12442
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextOptionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12443
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextOptionService, providedIn: 'root' }); }
|
|
12444
12444
|
}
|
|
12445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextOptionService, decorators: [{
|
|
12446
12446
|
type: Injectable,
|
|
12447
12447
|
args: [{
|
|
12448
12448
|
providedIn: 'root'
|
|
@@ -12461,10 +12461,10 @@ class ConfigurationMinisiteService {
|
|
|
12461
12461
|
saveMinisiteData(configurationMinisiteTo) {
|
|
12462
12462
|
return this.httpClient.post(this.environment.host.backend.queue + 'configuration-minisite/saveMinisiteData', configurationMinisiteTo, this.headerJson);
|
|
12463
12463
|
}
|
|
12464
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12465
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationMinisiteService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12465
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationMinisiteService, providedIn: 'root' }); }
|
|
12466
12466
|
}
|
|
12467
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConfigurationMinisiteService, decorators: [{
|
|
12468
12468
|
type: Injectable,
|
|
12469
12469
|
args: [{
|
|
12470
12470
|
providedIn: 'root'
|
|
@@ -12493,10 +12493,10 @@ class PliTagAssignmentService {
|
|
|
12493
12493
|
changeToDisabled(pliTagAssignment) {
|
|
12494
12494
|
return this.httpClient.post(this.environment.host.backend.segmentation + 'pliTagAssignment/changeToDisabled', pliTagAssignment);
|
|
12495
12495
|
}
|
|
12496
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12497
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12496
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliTagAssignmentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12497
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliTagAssignmentService, providedIn: 'root' }); }
|
|
12498
12498
|
}
|
|
12499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliTagAssignmentService, decorators: [{
|
|
12500
12500
|
type: Injectable,
|
|
12501
12501
|
args: [{
|
|
12502
12502
|
providedIn: 'root'
|
|
@@ -12538,10 +12538,10 @@ class UniversityService {
|
|
|
12538
12538
|
getByDataTablesParameters(dataTableParameters) {
|
|
12539
12539
|
return this.httpClient.post(this.environment.host.backend.configuration + 'university/getByDataTablesParameters', dataTableParameters, this.headerJson);
|
|
12540
12540
|
}
|
|
12541
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12542
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12541
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UniversityService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12542
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UniversityService, providedIn: 'root' }); }
|
|
12543
12543
|
}
|
|
12544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UniversityService, decorators: [{
|
|
12545
12545
|
type: Injectable,
|
|
12546
12546
|
args: [{
|
|
12547
12547
|
providedIn: 'root'
|
|
@@ -12573,10 +12573,10 @@ class ProgressBarService {
|
|
|
12573
12573
|
.set('processType', processType.toString())
|
|
12574
12574
|
});
|
|
12575
12575
|
}
|
|
12576
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12577
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12576
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ProgressBarService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12577
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ProgressBarService, providedIn: 'root' }); }
|
|
12578
12578
|
}
|
|
12579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12579
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ProgressBarService, decorators: [{
|
|
12580
12580
|
type: Injectable,
|
|
12581
12581
|
args: [{
|
|
12582
12582
|
providedIn: 'root'
|
|
@@ -12650,10 +12650,10 @@ class ProgressBarComponent {
|
|
|
12650
12650
|
ngOnDestroy() {
|
|
12651
12651
|
this.clearActualTimeout();
|
|
12652
12652
|
}
|
|
12653
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12654
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
12653
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ProgressBarComponent, deps: [{ token: i2.ToastrService }, { token: ProgressBarService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12654
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ProgressBarComponent, selector: "pli-progress-bar", inputs: { processId: "processId", processType: "processType", percentage: "percentage", current: "current", end: "end", projectFrom: "projectFrom" }, outputs: { finishProcess: "finishProcess" }, ngImport: i0, template: "<div class=\"progress\">\r\n <div class=\"progress-bar progress-bar-striped active\" role=\"progressbar\" aria-valuemin=\"0\" aria-valuemax=\"100\" [ngStyle]=\"{ width: percentage + '%' }\">\r\n {{ percentage }}%\r\n </div>\r\n</div>", styles: [".progress .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}\n"], dependencies: [{ kind: "directive", type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
12655
12655
|
}
|
|
12656
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
12657
12657
|
type: Component,
|
|
12658
12658
|
args: [{ selector: 'pli-progress-bar', standalone: false, template: "<div class=\"progress\">\r\n <div class=\"progress-bar progress-bar-striped active\" role=\"progressbar\" aria-valuemin=\"0\" aria-valuemax=\"100\" [ngStyle]=\"{ width: percentage + '%' }\">\r\n {{ percentage }}%\r\n </div>\r\n</div>", styles: [".progress .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}\n"] }]
|
|
12659
12659
|
}], ctorParameters: () => [{ type: i2.ToastrService }, { type: ProgressBarService }], propDecorators: { processId: [{
|
|
@@ -12689,10 +12689,10 @@ class PliCnfSurveyPdfService {
|
|
|
12689
12689
|
clone(pliCnfSurveyPdf) {
|
|
12690
12690
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfSurveyPdf/clone', pliCnfSurveyPdf);
|
|
12691
12691
|
}
|
|
12692
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12693
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12692
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyPdfService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12693
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyPdfService, providedIn: 'root' }); }
|
|
12694
12694
|
}
|
|
12695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12695
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyPdfService, decorators: [{
|
|
12696
12696
|
type: Injectable,
|
|
12697
12697
|
args: [{
|
|
12698
12698
|
providedIn: 'root'
|
|
@@ -12729,10 +12729,10 @@ class SegmentationTokensService {
|
|
|
12729
12729
|
transform(sTokenTO) {
|
|
12730
12730
|
return this.httpClient.post(this.environment.host.backend.configuration + `${this.controllerName}/transform`, sTokenTO);
|
|
12731
12731
|
}
|
|
12732
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12733
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
12732
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationTokensService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
12733
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationTokensService, providedIn: 'root' }); }
|
|
12734
12734
|
}
|
|
12735
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationTokensService, decorators: [{
|
|
12736
12736
|
type: Injectable,
|
|
12737
12737
|
args: [{
|
|
12738
12738
|
providedIn: 'root'
|
|
@@ -12850,10 +12850,10 @@ class TokensCalculatorComponent {
|
|
|
12850
12850
|
el.click();
|
|
12851
12851
|
}
|
|
12852
12852
|
}
|
|
12853
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12854
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
12853
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokensCalculatorComponent, deps: [{ token: SegmentationTokensService }, { token: i2.ToastrService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12854
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TokensCalculatorComponent, selector: "app-tokens-calculator", inputs: { comboColumnWorkInput: "comboColumnWorkInput" }, ngImport: i0, template: "<div class=\"flex\" style=\"margin-bottom: 11px; width: fit-content\">\r\n\t<label class=\"radio-inline\">\r\n\t\t<input\r\n\t\t\ttype=\"radio\"\r\n\t\t\t[(ngModel)]=\"tokenType\"\r\n\t\t\t[value]=\"conditionalTokenType\"\r\n\t\t\t(click)=\"resetValues(true)\"\r\n\t\t/>\r\n\t\tCondicional\r\n\t</label>\r\n\t<label class=\"radio-inline\">\r\n\t\t<input\r\n\t\t\ttype=\"radio\"\r\n\t\t\t[(ngModel)]=\"tokenType\"\r\n\t\t\t[value]=\"hierarchicalTokenType\"\r\n\t\t\t(click)=\"resetValues()\"\r\n\t\t/>\r\n\t\tJer\u00E1rquico\r\n\t</label>\r\n</div>\r\n\r\n<ng-container *ngIf=\"isConditionalToken\">\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 15px\">\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"field\">Campo a evaluar</label>\r\n\t\t\t<p-dropdown\r\n\t\t\t\tid=\"field\"\r\n\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t[options]=\"comboColumnWork\"\r\n\t\t\t\t[group]=\"true\"\r\n\t\t\t\t[(ngModel)]=\"keyToCalculate\"\r\n\t\t\t\t[filter]=\"true\"\r\n\t\t\t\t[style]=\"{ width: '250px' }\"\r\n\t\t\t>\r\n\t\t\t</p-dropdown>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"operator\">Operador</label>\r\n\t\t\t<select\r\n\t\t\t\tid=\"operator\"\r\n\t\t\t\tclass=\"form-control input-sm select-operation\"\r\n\t\t\t\tstyle=\"width: 80px\"\r\n\t\t\t\t[(ngModel)]=\"operator\"\r\n\t\t\t>\r\n\t\t\t\t<option [value]=\"EQ_OPERATOR\">Igual a</option>\r\n\t\t\t\t<option [value]=\"NEQ_OPERATOR\">Diferente a</option>\r\n\t\t\t</select>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"compare\">Valor a comparar</label>\r\n\t\t\t<input\r\n\t\t\t\tid=\"compare\"\r\n\t\t\t\ttype=\"text\"\r\n\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t[(ngModel)]=\"valueToCompare\"\r\n\t\t\t\tplaceholder=\"valor\"\r\n\t\t\t\tstyle=\"width: 156px\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 15px\">\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"positive\">Valor positivo</label>\r\n\t\t\t<input\r\n\t\t\t\tid=\"positive\"\r\n\t\t\t\ttype=\"text\"\r\n\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t[(ngModel)]=\"positiveValue\"\r\n\t\t\t\tplaceholder=\"valor\"\r\n\t\t\t\tstyle=\"width: 250px\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"negative\">Valor negativo</label>\r\n\t\t\t<input\r\n\t\t\t\tid=\"negative\"\r\n\t\t\t\ttype=\"text\"\r\n\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t[(ngModel)]=\"negativeValue\"\r\n\t\t\t\tplaceholder=\"valor\"\r\n\t\t\t\tstyle=\"width: 250px\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 15px\" *ngIf=\"valueToCompare\">\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"generate\">Resultado</label>\r\n\t\t\t<button\r\n\t\t\t\tid=\"generate\"\r\n\t\t\t\ttype=\"button\"\r\n\t\t\t\t(click)=\"generateConditionalToken()\"\r\n\t\t\t\ttitle=\"Copiar\"\r\n\t\t\t\tstyle=\"margin-left: 2px; width: 30px\"\r\n\t\t\t>\r\n\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"!isConditionalToken\">\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 13px; margin-bottom: 20px\">\r\n\t\t<div style=\"margin-right: 10px\">\r\n\t\t\t<label for=\"hierarchicalName\">Nombre</label>\r\n\t\t\t<input\r\n\t\t\t\tid=\"hierarchicalName\"\r\n\t\t\t\ttype=\"text\"\r\n\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t[(ngModel)]=\"hierarchicalName\"\r\n\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\tstyle=\"width: 226px\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t\t<div style=\"margin-right: 10px\">\r\n\t\t\t<label for=\"generate\">Acciones</label>\r\n\t\t\t<button\r\n\t\t\t\tid=\"generate\"\r\n\t\t\t\ttype=\"button\"\r\n\t\t\t\t(click)=\"generateHierarchicalTokenType()\"\r\n\t\t\t\ttitle=\"Copiar\"\r\n\t\t\t\tstyle=\"width: 30px\"\r\n\t\t\t>\r\n\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t</button>\r\n\t\t\t \r\n\t\t\t<button\r\n\t\t\t\tid=\"generate\"\r\n\t\t\t\ttype=\"button\"\r\n\t\t\t\t(click)=\"useCondition()\"\r\n\t\t\t\ttitle=\"Volver condicional\"\r\n\t\t\t\tstyle=\"margin-left: -5px; width: 30px\"\r\n\t\t\t>\r\n\t\t\t\t<span class=\"fa fa-plus\"></span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t\t<div class=\"mr-sm\"></div>\r\n\t</div>\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 13px; margin-bottom: 20px\">\r\n\t\t<p-pickList\r\n\t\t\t[dragdrop]=\"true\"\r\n\t\t\tngDefaultControl\r\n\t\t\t[source]=\"source\"\r\n\t\t\t[target]=\"target\"\r\n\t\t\t[responsive]=\"true\"\r\n\t\t\tfilterBy=\"category,label\"\r\n\t\t\t[showSourceControls]=\"false\"\r\n\t\t\ttargetFilterPlaceholder=\" Buscar...\"\r\n\t\t\tsourceFilterPlaceholder=\" Buscar...\"\r\n\t\t>\r\n\t\t\t<!-- [sourceStyle]=\"{ width: '234px' }\"\r\n\t\t\t[targetStyle]=\"{ width: '234px' }\" -->\r\n\t\t\t<ng-template let-field pTemplate=\"item\">\r\n\t\t\t\t<div class=\"ui-helper-clearfix\">\r\n\t\t\t\t\t{{ field.label }} <br />\r\n\t\t\t\t\t<small>\r\n\t\t\t\t\t\t<b> {{ field.category }} </b>\r\n\t\t\t\t\t</small>\r\n\t\t\t\t</div>\r\n\t\t\t</ng-template>\r\n\t\t</p-pickList>\r\n\t</div>\r\n</ng-container>\r\n", styles: [".mr-sm{margin-right:15px}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i6.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i6$1.PickList, selector: "p-pickList", inputs: ["source", "target", "sourceHeader", "tabindex", "rightButtonAriaLabel", "leftButtonAriaLabel", "allRightButtonAriaLabel", "allLeftButtonAriaLabel", "upButtonAriaLabel", "downButtonAriaLabel", "topButtonAriaLabel", "bottomButtonAriaLabel", "targetHeader", "responsive", "filterBy", "filterLocale", "trackBy", "sourceTrackBy", "targetTrackBy", "showSourceFilter", "showTargetFilter", "metaKeySelection", "dragdrop", "style", "styleClass", "sourceStyle", "targetStyle", "showSourceControls", "showTargetControls", "sourceFilterPlaceholder", "targetFilterPlaceholder", "disabled", "ariaSourceFilterLabel", "ariaTargetFilterLabel", "filterMatchMode", "stripedRows", "keepSelection", "breakpoint"], outputs: ["onMoveToSource", "onMoveAllToSource", "onMoveAllToTarget", "onMoveToTarget", "onSourceReorder", "onTargetReorder", "onSourceSelect", "onTargetSelect", "onSourceFilter", "onTargetFilter", "onFocus", "onBlur"] }, { kind: "component", type: i4$1.Dropdown, selector: "p-dropdown", inputs: ["id", "scrollHeight", "filter", "name", "style", "panelStyle", "styleClass", "panelStyleClass", "readonly", "required", "editable", "appendTo", "tabindex", "placeholder", "loadingIcon", "filterPlaceholder", "filterLocale", "variant", "inputId", "dataKey", "filterBy", "filterFields", "autofocus", "resetFilterOnHide", "checkmark", "dropdownIcon", "loading", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "autoDisplayFirst", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "maxlength", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "focusOnHover", "selectOnFocus", "autoOptionFocus", "autofocusFilter", "autoShowPanelOnPrintableCharacterKeyDown", "disabled", "itemSize", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "filterValue", "options"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }] }); }
|
|
12855
12855
|
}
|
|
12856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TokensCalculatorComponent, decorators: [{
|
|
12857
12857
|
type: Component,
|
|
12858
12858
|
args: [{ selector: 'app-tokens-calculator', standalone: false, template: "<div class=\"flex\" style=\"margin-bottom: 11px; width: fit-content\">\r\n\t<label class=\"radio-inline\">\r\n\t\t<input\r\n\t\t\ttype=\"radio\"\r\n\t\t\t[(ngModel)]=\"tokenType\"\r\n\t\t\t[value]=\"conditionalTokenType\"\r\n\t\t\t(click)=\"resetValues(true)\"\r\n\t\t/>\r\n\t\tCondicional\r\n\t</label>\r\n\t<label class=\"radio-inline\">\r\n\t\t<input\r\n\t\t\ttype=\"radio\"\r\n\t\t\t[(ngModel)]=\"tokenType\"\r\n\t\t\t[value]=\"hierarchicalTokenType\"\r\n\t\t\t(click)=\"resetValues()\"\r\n\t\t/>\r\n\t\tJer\u00E1rquico\r\n\t</label>\r\n</div>\r\n\r\n<ng-container *ngIf=\"isConditionalToken\">\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 15px\">\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"field\">Campo a evaluar</label>\r\n\t\t\t<p-dropdown\r\n\t\t\t\tid=\"field\"\r\n\t\t\t\tplaceholder=\"-- Seleccione opci\u00F3n\"\r\n\t\t\t\t[options]=\"comboColumnWork\"\r\n\t\t\t\t[group]=\"true\"\r\n\t\t\t\t[(ngModel)]=\"keyToCalculate\"\r\n\t\t\t\t[filter]=\"true\"\r\n\t\t\t\t[style]=\"{ width: '250px' }\"\r\n\t\t\t>\r\n\t\t\t</p-dropdown>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"operator\">Operador</label>\r\n\t\t\t<select\r\n\t\t\t\tid=\"operator\"\r\n\t\t\t\tclass=\"form-control input-sm select-operation\"\r\n\t\t\t\tstyle=\"width: 80px\"\r\n\t\t\t\t[(ngModel)]=\"operator\"\r\n\t\t\t>\r\n\t\t\t\t<option [value]=\"EQ_OPERATOR\">Igual a</option>\r\n\t\t\t\t<option [value]=\"NEQ_OPERATOR\">Diferente a</option>\r\n\t\t\t</select>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"compare\">Valor a comparar</label>\r\n\t\t\t<input\r\n\t\t\t\tid=\"compare\"\r\n\t\t\t\ttype=\"text\"\r\n\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t[(ngModel)]=\"valueToCompare\"\r\n\t\t\t\tplaceholder=\"valor\"\r\n\t\t\t\tstyle=\"width: 156px\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 15px\">\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"positive\">Valor positivo</label>\r\n\t\t\t<input\r\n\t\t\t\tid=\"positive\"\r\n\t\t\t\ttype=\"text\"\r\n\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t[(ngModel)]=\"positiveValue\"\r\n\t\t\t\tplaceholder=\"valor\"\r\n\t\t\t\tstyle=\"width: 250px\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"negative\">Valor negativo</label>\r\n\t\t\t<input\r\n\t\t\t\tid=\"negative\"\r\n\t\t\t\ttype=\"text\"\r\n\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t[(ngModel)]=\"negativeValue\"\r\n\t\t\t\tplaceholder=\"valor\"\r\n\t\t\t\tstyle=\"width: 250px\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 15px\" *ngIf=\"valueToCompare\">\r\n\t\t<div class=\"mr-sm\">\r\n\t\t\t<label for=\"generate\">Resultado</label>\r\n\t\t\t<button\r\n\t\t\t\tid=\"generate\"\r\n\t\t\t\ttype=\"button\"\r\n\t\t\t\t(click)=\"generateConditionalToken()\"\r\n\t\t\t\ttitle=\"Copiar\"\r\n\t\t\t\tstyle=\"margin-left: 2px; width: 30px\"\r\n\t\t\t>\r\n\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"!isConditionalToken\">\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 13px; margin-bottom: 20px\">\r\n\t\t<div style=\"margin-right: 10px\">\r\n\t\t\t<label for=\"hierarchicalName\">Nombre</label>\r\n\t\t\t<input\r\n\t\t\t\tid=\"hierarchicalName\"\r\n\t\t\t\ttype=\"text\"\r\n\t\t\t\tclass=\"form-control input-value input-sm\"\r\n\t\t\t\t[(ngModel)]=\"hierarchicalName\"\r\n\t\t\t\tplaceholder=\"Nombre\"\r\n\t\t\t\tstyle=\"width: 226px\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t\t<div style=\"margin-right: 10px\">\r\n\t\t\t<label for=\"generate\">Acciones</label>\r\n\t\t\t<button\r\n\t\t\t\tid=\"generate\"\r\n\t\t\t\ttype=\"button\"\r\n\t\t\t\t(click)=\"generateHierarchicalTokenType()\"\r\n\t\t\t\ttitle=\"Copiar\"\r\n\t\t\t\tstyle=\"width: 30px\"\r\n\t\t\t>\r\n\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t</button>\r\n\t\t\t \r\n\t\t\t<button\r\n\t\t\t\tid=\"generate\"\r\n\t\t\t\ttype=\"button\"\r\n\t\t\t\t(click)=\"useCondition()\"\r\n\t\t\t\ttitle=\"Volver condicional\"\r\n\t\t\t\tstyle=\"margin-left: -5px; width: 30px\"\r\n\t\t\t>\r\n\t\t\t\t<span class=\"fa fa-plus\"></span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t\t<div class=\"mr-sm\"></div>\r\n\t</div>\r\n\t<div class=\"flex align-items-center\" style=\"margin-top: 13px; margin-bottom: 20px\">\r\n\t\t<p-pickList\r\n\t\t\t[dragdrop]=\"true\"\r\n\t\t\tngDefaultControl\r\n\t\t\t[source]=\"source\"\r\n\t\t\t[target]=\"target\"\r\n\t\t\t[responsive]=\"true\"\r\n\t\t\tfilterBy=\"category,label\"\r\n\t\t\t[showSourceControls]=\"false\"\r\n\t\t\ttargetFilterPlaceholder=\" Buscar...\"\r\n\t\t\tsourceFilterPlaceholder=\" Buscar...\"\r\n\t\t>\r\n\t\t\t<!-- [sourceStyle]=\"{ width: '234px' }\"\r\n\t\t\t[targetStyle]=\"{ width: '234px' }\" -->\r\n\t\t\t<ng-template let-field pTemplate=\"item\">\r\n\t\t\t\t<div class=\"ui-helper-clearfix\">\r\n\t\t\t\t\t{{ field.label }} <br />\r\n\t\t\t\t\t<small>\r\n\t\t\t\t\t\t<b> {{ field.category }} </b>\r\n\t\t\t\t\t</small>\r\n\t\t\t\t</div>\r\n\t\t\t</ng-template>\r\n\t\t</p-pickList>\r\n\t</div>\r\n</ng-container>\r\n", styles: [".mr-sm{margin-right:15px}\n"] }]
|
|
12859
12859
|
}], ctorParameters: () => [{ type: SegmentationTokensService }, { type: i2.ToastrService }], propDecorators: { comboColumnWorkInput: [{
|
|
@@ -13027,10 +13027,10 @@ class SegmentationTokensComponent {
|
|
|
13027
13027
|
copyMessage(val) {
|
|
13028
13028
|
UtilString.copyMessage(val);
|
|
13029
13029
|
}
|
|
13030
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13031
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
13030
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationTokensComponent, deps: [{ token: SegmentationTokensService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13031
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: SegmentationTokensComponent, selector: "app-segmentation-tokens", inputs: { showTokenCalculatorButton: "showTokenCalculatorButton", showCalculatedTokenButton: "showCalculatedTokenButton", showSurveyTokens: "showSurveyTokens", comboColumnWorkInput: "comboColumnWorkInput", surveyFormio: "surveyFormio", lSegColumn: "lSegColumn" }, usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"ready\">\r\n\t<div class=\"panel panel-default\" class=\"overflow: auto;min-height: 600px; display: block;\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-12 row-margin\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t(click)=\"displayTokenCalculatorDiv()\"\r\n\t\t\t\t\tclass=\"btn btn-primary pull-right\"\r\n\t\t\t\t>\r\n\t\t\t\t\tCalculadora de tokens\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<input\r\n\t\t\t\t\ttype=\"input\"\r\n\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\tstyle=\"margin-bottom: 8px\"\r\n\t\t\t\t\tplaceholder=\"Busqueda de columnas\"\r\n\t\t\t\t\t[(ngModel)]=\"columnSearch\"\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<p-accordion [multiple]=\"true\">\r\n\t\t\t<ng-container *ngFor=\"let category of comboColumnWork\">\r\n\t\t\t\t<p-accordionTab *ngIf=\"isVisibleCategory(category)\" header=\"{{ category.label }}\">\r\n\t\t\t\t\t<div *ngFor=\"let column of category.items\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t*ngIf=\"isVisibleColumn(column.label)\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyToken(column.value)\"\r\n\t\t\t\t\t\t\t\t[title]=\"getTitleToken(column.value)\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ column.label }}\">{{ column.label }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t</ng-container>\r\n\t\t</p-accordion>\r\n\t</div>\r\n\r\n\t<p-dialog\r\n\t\tappendTo=\"body\"\r\n\t\theader=\"Calculadora de tokens\"\r\n\t\t[(visible)]=\"showTokensCalculator\"\r\n\t\t[modal]=\"true\"\r\n\t\t[contentStyle]=\"{\r\n\t\t\t'min-width': '600px',\r\n\t\t\t'max-width': '600px',\r\n\t\t\t'min-height': '420px',\r\n\t\t\t'max-height': '420px',\r\n\t\t\tbackground: 'white',\r\n\t\t\t'overflow-y': 'auto',\r\n\t\t\t'text-align': 'left'\r\n\t\t}\"\r\n\t\theight=\"420\"\r\n\t\twidth=\"600\"\r\n\t\tdismissableMask=\"true\"\r\n\t>\r\n\t\t<div class=\"container-fluid\">\r\n\t\t\t<app-tokens-calculator\r\n\t\t\t\t*ngIf=\"showTokensCalculator\"\r\n\t\t\t\t[comboColumnWorkInput]=\"comboColumnWork\"\r\n\t\t\t></app-tokens-calculator>\r\n\t\t</div>\r\n\t</p-dialog>\r\n</div>\r\n", styles: [".row-margin{margin-top:8px;margin-bottom:8px}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i14.Accordion, selector: "p-accordion", inputs: ["multiple", "style", "styleClass", "expandIcon", "collapseIcon", "activeIndex", "selectOnFocus", "headerAriaLevel"], outputs: ["onClose", "onOpen", "activeIndexChange"] }, { kind: "component", type: i14.AccordionTab, selector: "p-accordionTab", inputs: ["id", "header", "headerStyle", "tabStyle", "contentStyle", "tabStyleClass", "headerStyleClass", "contentStyleClass", "disabled", "cache", "transitionOptions", "iconPos", "selected", "headerAriaLevel"], outputs: ["selectedChange"] }, { kind: "component", type: i8.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "maskStyle", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { kind: "component", type: TokensCalculatorComponent, selector: "app-tokens-calculator", inputs: ["comboColumnWorkInput"] }] }); }
|
|
13032
13032
|
}
|
|
13033
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SegmentationTokensComponent, decorators: [{
|
|
13034
13034
|
type: Component,
|
|
13035
13035
|
args: [{ selector: 'app-segmentation-tokens', standalone: false, template: "<div *ngIf=\"ready\">\r\n\t<div class=\"panel panel-default\" class=\"overflow: auto;min-height: 600px; display: block;\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-12 row-margin\">\r\n\t\t\t\t<button\r\n\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t(click)=\"displayTokenCalculatorDiv()\"\r\n\t\t\t\t\tclass=\"btn btn-primary pull-right\"\r\n\t\t\t\t>\r\n\t\t\t\t\tCalculadora de tokens\r\n\t\t\t\t</button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-md-12\">\r\n\t\t\t\t<input\r\n\t\t\t\t\ttype=\"input\"\r\n\t\t\t\t\tclass=\"form-control\"\r\n\t\t\t\t\tstyle=\"margin-bottom: 8px\"\r\n\t\t\t\t\tplaceholder=\"Busqueda de columnas\"\r\n\t\t\t\t\t[(ngModel)]=\"columnSearch\"\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<p-accordion [multiple]=\"true\">\r\n\t\t\t<ng-container *ngFor=\"let category of comboColumnWork\">\r\n\t\t\t\t<p-accordionTab *ngIf=\"isVisibleCategory(category)\" header=\"{{ category.label }}\">\r\n\t\t\t\t\t<div *ngFor=\"let column of category.items\" class=\"ui-g\">\r\n\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\tclass=\"ui-g-12 ui-md-6 ui-lg-3 cut-line\"\r\n\t\t\t\t\t\t\t*ngIf=\"isVisibleColumn(column.label)\"\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t\ttype=\"button\"\r\n\t\t\t\t\t\t\t\t(click)=\"copyToken(column.value)\"\r\n\t\t\t\t\t\t\t\t[title]=\"getTitleToken(column.value)\"\r\n\t\t\t\t\t\t\t\tstyle=\"margin-right: 8px\"\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t<span class=\"fa fa-clipboard\"></span>\r\n\t\t\t\t\t\t\t</button>\r\n\t\t\t\t\t\t\t<span title=\"{{ column.label }}\">{{ column.label }}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</p-accordionTab>\r\n\t\t\t</ng-container>\r\n\t\t</p-accordion>\r\n\t</div>\r\n\r\n\t<p-dialog\r\n\t\tappendTo=\"body\"\r\n\t\theader=\"Calculadora de tokens\"\r\n\t\t[(visible)]=\"showTokensCalculator\"\r\n\t\t[modal]=\"true\"\r\n\t\t[contentStyle]=\"{\r\n\t\t\t'min-width': '600px',\r\n\t\t\t'max-width': '600px',\r\n\t\t\t'min-height': '420px',\r\n\t\t\t'max-height': '420px',\r\n\t\t\tbackground: 'white',\r\n\t\t\t'overflow-y': 'auto',\r\n\t\t\t'text-align': 'left'\r\n\t\t}\"\r\n\t\theight=\"420\"\r\n\t\twidth=\"600\"\r\n\t\tdismissableMask=\"true\"\r\n\t>\r\n\t\t<div class=\"container-fluid\">\r\n\t\t\t<app-tokens-calculator\r\n\t\t\t\t*ngIf=\"showTokensCalculator\"\r\n\t\t\t\t[comboColumnWorkInput]=\"comboColumnWork\"\r\n\t\t\t></app-tokens-calculator>\r\n\t\t</div>\r\n\t</p-dialog>\r\n</div>\r\n", styles: [".row-margin{margin-top:8px;margin-bottom:8px}\n"] }]
|
|
13036
13036
|
}], ctorParameters: () => [{ type: SegmentationTokensService }], propDecorators: { showTokenCalculatorButton: [{
|
|
@@ -13069,10 +13069,10 @@ class PliCnfProjectSummaryService {
|
|
|
13069
13069
|
update(id, pliCnfProjectSummary) {
|
|
13070
13070
|
return this.httpClient.patch(`${this.environment.host.backend.configuration}${this.service_path}/${id}`, pliCnfProjectSummary);
|
|
13071
13071
|
}
|
|
13072
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13073
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13072
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProjectSummaryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13073
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProjectSummaryService, providedIn: 'root' }); }
|
|
13074
13074
|
}
|
|
13075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProjectSummaryService, decorators: [{
|
|
13076
13076
|
type: Injectable,
|
|
13077
13077
|
args: [{
|
|
13078
13078
|
providedIn: 'root'
|
|
@@ -13099,10 +13099,10 @@ class PartnerService {
|
|
|
13099
13099
|
save(partner) {
|
|
13100
13100
|
return this.httpClient.post(this.environment.host.backend.loginWSRest + 'patrocinador/save', partner);
|
|
13101
13101
|
}
|
|
13102
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13103
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PartnerService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13103
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PartnerService, providedIn: 'root' }); }
|
|
13104
13104
|
}
|
|
13105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PartnerService, decorators: [{
|
|
13106
13106
|
type: Injectable,
|
|
13107
13107
|
args: [{
|
|
13108
13108
|
providedIn: 'root'
|
|
@@ -13125,10 +13125,10 @@ class PartnerSystemService {
|
|
|
13125
13125
|
save(partnerSystem) {
|
|
13126
13126
|
return this.httpClient.post(this.environment.host.backend.loginWSRest + 'patrocinadorSistema/save', partnerSystem);
|
|
13127
13127
|
}
|
|
13128
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13129
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PartnerSystemService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13129
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PartnerSystemService, providedIn: 'root' }); }
|
|
13130
13130
|
}
|
|
13131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PartnerSystemService, decorators: [{
|
|
13132
13132
|
type: Injectable,
|
|
13133
13133
|
args: [{
|
|
13134
13134
|
providedIn: 'root'
|
|
@@ -13154,10 +13154,10 @@ class PdfAnalyzerService {
|
|
|
13154
13154
|
headers: httpOptions.headers
|
|
13155
13155
|
});
|
|
13156
13156
|
}
|
|
13157
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13158
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13157
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfAnalyzerService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13158
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfAnalyzerService, providedIn: 'root' }); }
|
|
13159
13159
|
}
|
|
13160
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfAnalyzerService, decorators: [{
|
|
13161
13161
|
type: Injectable,
|
|
13162
13162
|
args: [{
|
|
13163
13163
|
providedIn: 'root'
|
|
@@ -13298,10 +13298,10 @@ class PdfAnalyzerComponent {
|
|
|
13298
13298
|
// console.log(textDetected);
|
|
13299
13299
|
// });
|
|
13300
13300
|
}
|
|
13301
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13302
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
13301
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfAnalyzerComponent, deps: [{ token: PdfAnalyzerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13302
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PdfAnalyzerComponent, selector: "pli-pdf-analyzer", inputs: { pdfSrc: "pdfSrc", textToCompare: "textToCompare", labelToCompare: "labelToCompare" }, outputs: { documentAnalyzed: "documentAnalyzed" }, ngImport: i0, template: "<div>\r\n\r\n <div class=\"checkInstructivo\">\r\n <label>\r\n <input type=\"checkbox\" [(ngModel)]=\"instructivo\" />Instructivo\r\n </label>\r\n </div>\r\n <div *ngIf=\"!instructivo\" class=\"description\">\r\n Seleccionar la parte del documento donde se encuentra <strong>{{labelToCompare}}</strong>\r\n\r\n </div>\r\n <div *ngIf=\"instructivo\" class=\"description\">\r\n 1. Darle clic en el bot\u00F3n <span class=\"fa fa-crop\"></span>\r\n <br> 2. Seleccionar la parte del documento donde se encuentra <strong>{{labelToCompare}}</strong> con el mouse dando clic y arrastrando hasta completar la selecci\u00F3n o cambiando de tama\u00F1o el recuadro que aparece en pantalla\r\n <br> 3. Una vez seleccionado dar clic en el bot\u00F3n <span class=\"fa fa-camera\"></span> para previsualizarlo mejor\r\n <br> 4. En caso de haberse equivocado puede darle clic al bot\u00F3n rojo \"Reintentar\" o al bot\u00F3n <span class=\"fa fa-undo\"></span> para volver al paso 1\r\n <br> 5. Cuando ya este correcta la selecci\u00F3n darle clic al bot\u00F3n verde \"Guardar Captura\" para proceder con el proceso\r\n </div>\r\n <div class=\"pdf-visualizer-controls\">\r\n <a href=\"Javascript:;\" title=\"Anterior\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" (click)=\"previous()\">\r\n <span class=\"fa fa-angle-left\"></span>\r\n </a>\r\n <span class=\"btn btn-outline-secondary\">P\u00E1gina: {{currentpage}} / {{totalPages}}</span>\r\n <a href=\"Javascript:;\" title=\"Siguiente\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" (click)=\"next()\">\r\n <span class=\"fa fa-angle-right\"></span>\r\n </a>\r\n\r\n <a href=\"Javascript:;\" title=\"Acercar\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"isCropImage && !capture\" (click)=\"zoomOut()\">\r\n <span class=\"fa fa-search-plus\"></span>\r\n </a>\r\n\r\n\r\n <a href=\"Javascript:;\" title=\"Alejar\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"isCropImage && !capture\" (click)=\"zoomIn()\">\r\n <span class=\"fa fa-search-minus\"></span>\r\n </a>\r\n </div>\r\n <div class=\"pdf-visualizer-controls\">\r\n <a href=\"Javascript:;\" title=\"Capturar\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"!isCropImage\" (click)=\"crop()\">\r\n <span class=\"fa fa-crop fa-2x\"></span>\r\n </a>\r\n <a href=\"Javascript:;\" title=\"Guardar Captura\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"isCropImage && !capture\" (click)=\"saveCapture()\">\r\n <span class=\"fa fa-camera fa-2x\"></span>\r\n </a>\r\n <a href=\"Javascript:;\" title=\"Deshacer\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"isCropImage\" (click)=\"reset()\">\r\n <span class=\"fa fa-undo fa-2x\"></span>\r\n </a>\r\n </div>\r\n\r\n\r\n <div class=\"pdf-visualizer-dashboard\" *ngIf=\"!capture\">\r\n <div class=\"pdf-container pdf-visualizer-canvas top-margin\" [hidden]=\"isCropImage\">\r\n <!-- <pdf-viewer [(src)]=\"pdfSrc\" [(render-text)]=\"render_text\" [(page)]=\"currentpage\" [(show-all)]=\"show_all\" [(original-size)]=\"original_size\" [(fit-to-page)]=\"fit_to_page\" (after-load-complete)=\"afterLoadComplete($event)\" style=\"display: block;\">\r\n </pdf-viewer> -->\r\n </div>\r\n\r\n <div class=\"img-container\" [hidden]=\"!isCropImage\">\r\n <img #image src=\"\" id=\"cropper-img\" crossorigin>\r\n </div>\r\n </div>\r\n\r\n <div class=\"img-visualizer-dashboard\" *ngIf=\"capture\">\r\n <img [src]=\"capture\">\r\n </div>\r\n <div class=\"img-visualizer-dashboard\" *ngIf=\"capture\">\r\n <button class=\"btns btn-success btn-lg\" (click)=\"validateImage()\" lang=\"es\">Guardar Captura</button>\r\n\r\n <button class=\"btnr btn-success btn-lg\" (click)=\"reset()\" lang=\"es\">Reintentar</button>\r\n </div>\r\n</div>", styles: [".img-visualizer-dashboard,.pdf-visualizer-dashboard,.pdf-visualizer-controls{background-color:#f5f5f5;padding:15px}.pdf-visualizer-dashboard{border-bottom:1px solid #eee;border-top:1px solid #eee}.img-visualizer-dashboard{text-align:center;border-bottom:1px solid #eee;border-top:1px solid #eee}.pdf-visualizer-canvas{cursor:move}button.btns{background-color:green;color:#fff;position:relative;left:0;margin:15px}button.btns:hover{background-color:#006400}button.btnr{background-color:red;color:#fff;position:relative;left:0;margin:15px}button.btnr:hover{background-color:#8b0000}.description{padding:0 10px;font-size:14px;font-weight:300;font-family:Roboto,sans-serif;margin-bottom:1.5em}.checkInstructivo{float:right;text-align:right}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); }
|
|
13303
13303
|
}
|
|
13304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13304
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PdfAnalyzerComponent, decorators: [{
|
|
13305
13305
|
type: Component,
|
|
13306
13306
|
args: [{ selector: 'pli-pdf-analyzer', standalone: false, template: "<div>\r\n\r\n <div class=\"checkInstructivo\">\r\n <label>\r\n <input type=\"checkbox\" [(ngModel)]=\"instructivo\" />Instructivo\r\n </label>\r\n </div>\r\n <div *ngIf=\"!instructivo\" class=\"description\">\r\n Seleccionar la parte del documento donde se encuentra <strong>{{labelToCompare}}</strong>\r\n\r\n </div>\r\n <div *ngIf=\"instructivo\" class=\"description\">\r\n 1. Darle clic en el bot\u00F3n <span class=\"fa fa-crop\"></span>\r\n <br> 2. Seleccionar la parte del documento donde se encuentra <strong>{{labelToCompare}}</strong> con el mouse dando clic y arrastrando hasta completar la selecci\u00F3n o cambiando de tama\u00F1o el recuadro que aparece en pantalla\r\n <br> 3. Una vez seleccionado dar clic en el bot\u00F3n <span class=\"fa fa-camera\"></span> para previsualizarlo mejor\r\n <br> 4. En caso de haberse equivocado puede darle clic al bot\u00F3n rojo \"Reintentar\" o al bot\u00F3n <span class=\"fa fa-undo\"></span> para volver al paso 1\r\n <br> 5. Cuando ya este correcta la selecci\u00F3n darle clic al bot\u00F3n verde \"Guardar Captura\" para proceder con el proceso\r\n </div>\r\n <div class=\"pdf-visualizer-controls\">\r\n <a href=\"Javascript:;\" title=\"Anterior\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" (click)=\"previous()\">\r\n <span class=\"fa fa-angle-left\"></span>\r\n </a>\r\n <span class=\"btn btn-outline-secondary\">P\u00E1gina: {{currentpage}} / {{totalPages}}</span>\r\n <a href=\"Javascript:;\" title=\"Siguiente\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" (click)=\"next()\">\r\n <span class=\"fa fa-angle-right\"></span>\r\n </a>\r\n\r\n <a href=\"Javascript:;\" title=\"Acercar\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"isCropImage && !capture\" (click)=\"zoomOut()\">\r\n <span class=\"fa fa-search-plus\"></span>\r\n </a>\r\n\r\n\r\n <a href=\"Javascript:;\" title=\"Alejar\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"isCropImage && !capture\" (click)=\"zoomIn()\">\r\n <span class=\"fa fa-search-minus\"></span>\r\n </a>\r\n </div>\r\n <div class=\"pdf-visualizer-controls\">\r\n <a href=\"Javascript:;\" title=\"Capturar\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"!isCropImage\" (click)=\"crop()\">\r\n <span class=\"fa fa-crop fa-2x\"></span>\r\n </a>\r\n <a href=\"Javascript:;\" title=\"Guardar Captura\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"isCropImage && !capture\" (click)=\"saveCapture()\">\r\n <span class=\"fa fa-camera fa-2x\"></span>\r\n </a>\r\n <a href=\"Javascript:;\" title=\"Deshacer\" data-toggle=\"tooltip\" data-placement=\"top\" class=\"btn btn-outline-secondary\" *ngIf=\"isCropImage\" (click)=\"reset()\">\r\n <span class=\"fa fa-undo fa-2x\"></span>\r\n </a>\r\n </div>\r\n\r\n\r\n <div class=\"pdf-visualizer-dashboard\" *ngIf=\"!capture\">\r\n <div class=\"pdf-container pdf-visualizer-canvas top-margin\" [hidden]=\"isCropImage\">\r\n <!-- <pdf-viewer [(src)]=\"pdfSrc\" [(render-text)]=\"render_text\" [(page)]=\"currentpage\" [(show-all)]=\"show_all\" [(original-size)]=\"original_size\" [(fit-to-page)]=\"fit_to_page\" (after-load-complete)=\"afterLoadComplete($event)\" style=\"display: block;\">\r\n </pdf-viewer> -->\r\n </div>\r\n\r\n <div class=\"img-container\" [hidden]=\"!isCropImage\">\r\n <img #image src=\"\" id=\"cropper-img\" crossorigin>\r\n </div>\r\n </div>\r\n\r\n <div class=\"img-visualizer-dashboard\" *ngIf=\"capture\">\r\n <img [src]=\"capture\">\r\n </div>\r\n <div class=\"img-visualizer-dashboard\" *ngIf=\"capture\">\r\n <button class=\"btns btn-success btn-lg\" (click)=\"validateImage()\" lang=\"es\">Guardar Captura</button>\r\n\r\n <button class=\"btnr btn-success btn-lg\" (click)=\"reset()\" lang=\"es\">Reintentar</button>\r\n </div>\r\n</div>", styles: [".img-visualizer-dashboard,.pdf-visualizer-dashboard,.pdf-visualizer-controls{background-color:#f5f5f5;padding:15px}.pdf-visualizer-dashboard{border-bottom:1px solid #eee;border-top:1px solid #eee}.img-visualizer-dashboard{text-align:center;border-bottom:1px solid #eee;border-top:1px solid #eee}.pdf-visualizer-canvas{cursor:move}button.btns{background-color:green;color:#fff;position:relative;left:0;margin:15px}button.btns:hover{background-color:#006400}button.btnr{background-color:red;color:#fff;position:relative;left:0;margin:15px}button.btnr:hover{background-color:#8b0000}.description{padding:0 10px;font-size:14px;font-weight:300;font-family:Roboto,sans-serif;margin-bottom:1.5em}.checkInstructivo{float:right;text-align:right}\n"] }]
|
|
13307
13307
|
}], ctorParameters: () => [{ type: PdfAnalyzerService }], propDecorators: { pdfSrc: [{
|
|
@@ -13337,10 +13337,10 @@ class PliMessageTypeService {
|
|
|
13337
13337
|
.set('promCodigo', promCodigo.toString())
|
|
13338
13338
|
});
|
|
13339
13339
|
}
|
|
13340
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13341
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13340
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliMessageTypeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13341
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliMessageTypeService, providedIn: 'root' }); }
|
|
13342
13342
|
}
|
|
13343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliMessageTypeService, decorators: [{
|
|
13344
13344
|
type: Injectable,
|
|
13345
13345
|
args: [{
|
|
13346
13346
|
providedIn: 'root'
|
|
@@ -13363,10 +13363,10 @@ class AssignTaskService {
|
|
|
13363
13363
|
getBackAppByDataTablesParameters(dataTableParameters) {
|
|
13364
13364
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'assign-task/getByDataTablesParameters', dataTableParameters, this.headerJson);
|
|
13365
13365
|
}
|
|
13366
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13367
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13366
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AssignTaskService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13367
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AssignTaskService, providedIn: 'root' }); }
|
|
13368
13368
|
}
|
|
13369
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AssignTaskService, decorators: [{
|
|
13370
13370
|
type: Injectable,
|
|
13371
13371
|
args: [{
|
|
13372
13372
|
providedIn: 'root'
|
|
@@ -13483,8 +13483,8 @@ class NgPliCommonsModule {
|
|
|
13483
13483
|
]
|
|
13484
13484
|
};
|
|
13485
13485
|
}
|
|
13486
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13487
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
13486
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NgPliCommonsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
13487
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: NgPliCommonsModule, declarations: [SelectPppComponent,
|
|
13488
13488
|
CurrencyColfuturoPipe,
|
|
13489
13489
|
CurrencyPrintColfuturoPipe,
|
|
13490
13490
|
CurrencyDecimalColfuturoPipe,
|
|
@@ -13540,7 +13540,7 @@ class NgPliCommonsModule {
|
|
|
13540
13540
|
PdfConfigComponent,
|
|
13541
13541
|
ProgressBarComponent,
|
|
13542
13542
|
PdfAnalyzerComponent] }); }
|
|
13543
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
13543
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NgPliCommonsModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
|
|
13544
13544
|
AngularFireModule,
|
|
13545
13545
|
AngularFireStorageModule,
|
|
13546
13546
|
EditorModule,
|
|
@@ -13558,7 +13558,7 @@ class NgPliCommonsModule {
|
|
|
13558
13558
|
DialogModule,
|
|
13559
13559
|
NgPliUtilModule.forRoot()] }); }
|
|
13560
13560
|
}
|
|
13561
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NgPliCommonsModule, decorators: [{
|
|
13562
13562
|
type: NgModule,
|
|
13563
13563
|
args: [{ declarations: [
|
|
13564
13564
|
SelectPppComponent,
|
|
@@ -13649,10 +13649,10 @@ class BackofficeCommonsComponent extends CommonListsComponent {
|
|
|
13649
13649
|
}
|
|
13650
13650
|
}
|
|
13651
13651
|
}
|
|
13652
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13653
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
13652
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BackofficeCommonsComponent, deps: [{ token: CommonService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13653
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BackofficeCommonsComponent, selector: "app-backoffice-commons", usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
|
|
13654
13654
|
}
|
|
13655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BackofficeCommonsComponent, decorators: [{
|
|
13656
13656
|
type: Component,
|
|
13657
13657
|
args: [{
|
|
13658
13658
|
selector: 'app-backoffice-commons',
|
|
@@ -13729,10 +13729,10 @@ class DashboardCommonsComponent {
|
|
|
13729
13729
|
buildTimes: buildTimes
|
|
13730
13730
|
};
|
|
13731
13731
|
}
|
|
13732
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13733
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
13732
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DashboardCommonsComponent, deps: [{ token: CommonService }, { token: i0.ChangeDetectorRef }, { token: CommonInfoService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13733
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: DashboardCommonsComponent, selector: "app-dashboard-commons", ngImport: i0, template: '', isInline: true }); }
|
|
13734
13734
|
}
|
|
13735
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DashboardCommonsComponent, decorators: [{
|
|
13736
13736
|
type: Component,
|
|
13737
13737
|
args: [{
|
|
13738
13738
|
selector: 'app-dashboard-commons',
|
|
@@ -13813,10 +13813,10 @@ class FrontofficeCommonsComponent extends CommonListsComponent {
|
|
|
13813
13813
|
resolve(response.userAllowSave);
|
|
13814
13814
|
});
|
|
13815
13815
|
}
|
|
13816
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13817
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
13816
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FrontofficeCommonsComponent, deps: [{ token: CommonService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13817
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FrontofficeCommonsComponent, selector: "app-frontoffice-commons", usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
|
|
13818
13818
|
}
|
|
13819
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FrontofficeCommonsComponent, decorators: [{
|
|
13820
13820
|
type: Component,
|
|
13821
13821
|
args: [{
|
|
13822
13822
|
selector: 'app-frontoffice-commons',
|
|
@@ -13836,10 +13836,10 @@ class DocumentProcessService {
|
|
|
13836
13836
|
formData.append('file', file, file.name);
|
|
13837
13837
|
return this.http.post(apiUrl, formData);
|
|
13838
13838
|
}
|
|
13839
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13840
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13839
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentProcessService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13840
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentProcessService, providedIn: 'root' }); }
|
|
13841
13841
|
}
|
|
13842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentProcessService, decorators: [{
|
|
13843
13843
|
type: Injectable,
|
|
13844
13844
|
args: [{
|
|
13845
13845
|
providedIn: 'root'
|
|
@@ -13893,10 +13893,10 @@ class UploadDocumentsService {
|
|
|
13893
13893
|
return { unsubscribe() { } };
|
|
13894
13894
|
});
|
|
13895
13895
|
}
|
|
13896
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13897
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13896
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UploadDocumentsService, deps: [{ token: FileService }, { token: PppService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13897
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UploadDocumentsService, providedIn: 'root' }); }
|
|
13898
13898
|
}
|
|
13899
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UploadDocumentsService, decorators: [{
|
|
13900
13900
|
type: Injectable,
|
|
13901
13901
|
args: [{
|
|
13902
13902
|
providedIn: 'root'
|
|
@@ -13913,10 +13913,10 @@ class ApplicationPdfFormService {
|
|
|
13913
13913
|
generate(applicationPdfFormRequestTO) {
|
|
13914
13914
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'applicationPdfForm/generate-pdf-form', applicationPdfFormRequestTO, this.headerJson);
|
|
13915
13915
|
}
|
|
13916
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13917
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13916
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationPdfFormService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13917
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationPdfFormService, providedIn: 'root' }); }
|
|
13918
13918
|
}
|
|
13919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationPdfFormService, decorators: [{
|
|
13920
13920
|
type: Injectable,
|
|
13921
13921
|
args: [{
|
|
13922
13922
|
providedIn: 'root'
|
|
@@ -13939,10 +13939,10 @@ class ApplicationFillPercentageService {
|
|
|
13939
13939
|
sendMultiple(applicationFillPercentageTO) {
|
|
13940
13940
|
return this.httpClient.post(this.environment.host.backend.queue + 'applicationFillPercentage/sendMultiple', applicationFillPercentageTO, this.headerJson);
|
|
13941
13941
|
}
|
|
13942
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13943
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13942
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationFillPercentageService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13943
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationFillPercentageService, providedIn: 'root' }); }
|
|
13944
13944
|
}
|
|
13945
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ApplicationFillPercentageService, decorators: [{
|
|
13946
13946
|
type: Injectable,
|
|
13947
13947
|
args: [{
|
|
13948
13948
|
providedIn: 'root'
|
|
@@ -13977,10 +13977,10 @@ class BlockedBeneficiaryService {
|
|
|
13977
13977
|
.set('identification', identification)
|
|
13978
13978
|
});
|
|
13979
13979
|
}
|
|
13980
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13981
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
13980
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BlockedBeneficiaryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
13981
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BlockedBeneficiaryService, providedIn: 'root' }); }
|
|
13982
13982
|
}
|
|
13983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BlockedBeneficiaryService, decorators: [{
|
|
13984
13984
|
type: Injectable,
|
|
13985
13985
|
args: [{
|
|
13986
13986
|
providedIn: 'root'
|
|
@@ -13999,10 +13999,10 @@ class BudgetSetupService {
|
|
|
13999
13999
|
const params = new HttpParams().set('cpreCodigo', cpreCodigo.toString());
|
|
14000
14000
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'budget_setup', presupuestoList, { params });
|
|
14001
14001
|
}
|
|
14002
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14003
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14002
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetSetupService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14003
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetSetupService, providedIn: 'root' }); }
|
|
14004
14004
|
}
|
|
14005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BudgetSetupService, decorators: [{
|
|
14006
14006
|
type: Injectable,
|
|
14007
14007
|
args: [{
|
|
14008
14008
|
providedIn: 'root'
|
|
@@ -14024,10 +14024,10 @@ class CodebtorService {
|
|
|
14024
14024
|
updateEmailAndPhoneCodebtor(applicationCodebtorTO) {
|
|
14025
14025
|
return this.httpClient.put(this.environment.host.backend.backoffice + 'codebtors/updateEmailAndPhoneCodebtor', applicationCodebtorTO);
|
|
14026
14026
|
}
|
|
14027
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14028
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14027
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CodebtorService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14028
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CodebtorService, providedIn: 'root' }); }
|
|
14029
14029
|
}
|
|
14030
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14030
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CodebtorService, decorators: [{
|
|
14031
14031
|
type: Injectable,
|
|
14032
14032
|
args: [{
|
|
14033
14033
|
providedIn: 'root'
|
|
@@ -14059,10 +14059,10 @@ class ClosureWalletService {
|
|
|
14059
14059
|
return this.httpClient.post(this.environment.host.backend.gicBackoffice +
|
|
14060
14060
|
'closure-wallet/creditBalance/getByDataTablesParameters', dataTableParameters, this.headerJson);
|
|
14061
14061
|
}
|
|
14062
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14063
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14062
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ClosureWalletService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14063
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ClosureWalletService, providedIn: 'root' }); }
|
|
14064
14064
|
}
|
|
14065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14065
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ClosureWalletService, decorators: [{
|
|
14066
14066
|
type: Injectable,
|
|
14067
14067
|
args: [{
|
|
14068
14068
|
providedIn: 'root'
|
|
@@ -14110,10 +14110,10 @@ class CommitteeAssistantService {
|
|
|
14110
14110
|
httpParams = httpParams.set('id', String(id));
|
|
14111
14111
|
return this.httpClient.delete(this.environment.host.backend.backoffice + 'committee-assistance', { params: httpParams });
|
|
14112
14112
|
}
|
|
14113
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14114
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14113
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteeAssistantService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14114
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteeAssistantService, providedIn: 'root' }); }
|
|
14115
14115
|
}
|
|
14116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteeAssistantService, decorators: [{
|
|
14117
14117
|
type: Injectable,
|
|
14118
14118
|
args: [{
|
|
14119
14119
|
providedIn: 'root'
|
|
@@ -14134,10 +14134,10 @@ class CommitteePdfService {
|
|
|
14134
14134
|
sendBackoffice(lCommitteePdfDeedTO) {
|
|
14135
14135
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'pdf/getBase64CommitteePdf', lCommitteePdfDeedTO);
|
|
14136
14136
|
}
|
|
14137
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14138
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14137
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteePdfService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14138
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteePdfService, providedIn: 'root' }); }
|
|
14139
14139
|
}
|
|
14140
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteePdfService, decorators: [{
|
|
14141
14141
|
type: Injectable,
|
|
14142
14142
|
args: [{
|
|
14143
14143
|
providedIn: 'root'
|
|
@@ -14174,10 +14174,10 @@ class CommitteMoneyServiceService {
|
|
|
14174
14174
|
httpParams = httpParams.set('negativeStatusId', String(negativeStatusId));
|
|
14175
14175
|
return this.httpClient.get(this.environment.host.backend.backoffice + 'committe-money/getByAllCommittee', { params: (httpParams = httpParams) });
|
|
14176
14176
|
}
|
|
14177
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14178
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14177
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteMoneyServiceService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14178
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteMoneyServiceService, providedIn: 'root' }); }
|
|
14179
14179
|
}
|
|
14180
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteMoneyServiceService, decorators: [{
|
|
14181
14181
|
type: Injectable,
|
|
14182
14182
|
args: [{
|
|
14183
14183
|
providedIn: 'root'
|
|
@@ -14231,10 +14231,10 @@ class CommitteeSnapshotService {
|
|
|
14231
14231
|
deleteByCommitteeId(committeeId) {
|
|
14232
14232
|
return this.httpClient.delete(`${this.environment.host.backend.backoffice}committee-snapshot/deleteByCommitteeId?committeeId=${committeeId}`);
|
|
14233
14233
|
}
|
|
14234
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14235
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14234
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteeSnapshotService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14235
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteeSnapshotService, providedIn: 'root' }); }
|
|
14236
14236
|
}
|
|
14237
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CommitteeSnapshotService, decorators: [{
|
|
14238
14238
|
type: Injectable,
|
|
14239
14239
|
args: [{
|
|
14240
14240
|
providedIn: 'root'
|
|
@@ -14275,10 +14275,10 @@ class CreditScoreService {
|
|
|
14275
14275
|
.set('identification', identification)
|
|
14276
14276
|
});
|
|
14277
14277
|
}
|
|
14278
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14279
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14278
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CreditScoreService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14279
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CreditScoreService, providedIn: 'root' }); }
|
|
14280
14280
|
}
|
|
14281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14281
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CreditScoreService, decorators: [{
|
|
14282
14282
|
type: Injectable,
|
|
14283
14283
|
args: [{
|
|
14284
14284
|
providedIn: 'root'
|
|
@@ -14297,10 +14297,10 @@ class DataFormHistoryService {
|
|
|
14297
14297
|
getApplicationsByDataTableParameters(dataTableParameters) {
|
|
14298
14298
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'data-form-history/getByDataTableParameters', dataTableParameters);
|
|
14299
14299
|
}
|
|
14300
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14301
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14300
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataFormHistoryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14301
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataFormHistoryService, providedIn: 'root' }); }
|
|
14302
14302
|
}
|
|
14303
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataFormHistoryService, decorators: [{
|
|
14304
14304
|
type: Injectable,
|
|
14305
14305
|
args: [{
|
|
14306
14306
|
providedIn: 'root'
|
|
@@ -14357,10 +14357,10 @@ class DataLetterSegmentationService {
|
|
|
14357
14357
|
'data-letter/paragraphs?promCodigo=' +
|
|
14358
14358
|
promCodigo);
|
|
14359
14359
|
}
|
|
14360
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14361
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14360
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataLetterSegmentationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14361
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataLetterSegmentationService, providedIn: 'root' }); }
|
|
14362
14362
|
}
|
|
14363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DataLetterSegmentationService, decorators: [{
|
|
14364
14364
|
type: Injectable,
|
|
14365
14365
|
args: [{
|
|
14366
14366
|
providedIn: 'root'
|
|
@@ -14380,10 +14380,10 @@ class DocumentAnalysisAutoService {
|
|
|
14380
14380
|
send(sendDocAnalysisAutoDto) {
|
|
14381
14381
|
return this.httpClient.post(this.environment.host.backend.queue + 'docAnalysisAuto/send', sendDocAnalysisAutoDto);
|
|
14382
14382
|
}
|
|
14383
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14384
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14383
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentAnalysisAutoService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14384
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentAnalysisAutoService, providedIn: 'root' }); }
|
|
14385
14385
|
}
|
|
14386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14386
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentAnalysisAutoService, decorators: [{
|
|
14387
14387
|
type: Injectable,
|
|
14388
14388
|
args: [{
|
|
14389
14389
|
providedIn: 'root'
|
|
@@ -14408,10 +14408,10 @@ class DocumentValidationAttemptService {
|
|
|
14408
14408
|
save(documentValidationAttempt) {
|
|
14409
14409
|
return this.httpClient.post(this.environment.host.backend.frontoffice + 'save', documentValidationAttempt);
|
|
14410
14410
|
}
|
|
14411
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14412
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14411
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentValidationAttemptService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14412
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentValidationAttemptService, providedIn: 'root' }); }
|
|
14413
14413
|
}
|
|
14414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentValidationAttemptService, decorators: [{
|
|
14415
14415
|
type: Injectable,
|
|
14416
14416
|
args: [{
|
|
14417
14417
|
providedIn: 'root'
|
|
@@ -14435,10 +14435,10 @@ class GicClientDisbursementMetadataService {
|
|
|
14435
14435
|
.set('identification', String(identification))
|
|
14436
14436
|
});
|
|
14437
14437
|
}
|
|
14438
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14439
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14438
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicClientDisbursementMetadataService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14439
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicClientDisbursementMetadataService, providedIn: 'root' }); }
|
|
14440
14440
|
}
|
|
14441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicClientDisbursementMetadataService, decorators: [{
|
|
14442
14442
|
type: Injectable,
|
|
14443
14443
|
args: [{
|
|
14444
14444
|
providedIn: 'root'
|
|
@@ -14462,10 +14462,10 @@ class GicCnfBankvisionTransactionService {
|
|
|
14462
14462
|
save(gicCnfBankvisionTransaction) {
|
|
14463
14463
|
return this.httpClient.post(this.environment.host.backend.gicConfiguration + 'gic_cnf_bankvision_transaction/save', gicCnfBankvisionTransaction);
|
|
14464
14464
|
}
|
|
14465
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14466
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfBankvisionTransactionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14466
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfBankvisionTransactionService, providedIn: 'root' }); }
|
|
14467
14467
|
}
|
|
14468
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfBankvisionTransactionService, decorators: [{
|
|
14469
14469
|
type: Injectable,
|
|
14470
14470
|
args: [{
|
|
14471
14471
|
providedIn: 'root'
|
|
@@ -14492,10 +14492,10 @@ class GicCnfClosingDateService {
|
|
|
14492
14492
|
getClosingDate() {
|
|
14493
14493
|
return this.httpClient.get(this.environment.host.backend.gicConfiguration + 'gic_cnf_closing_date/getClosingDate');
|
|
14494
14494
|
}
|
|
14495
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14496
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14495
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfClosingDateService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14496
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfClosingDateService, providedIn: 'root' }); }
|
|
14497
14497
|
}
|
|
14498
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfClosingDateService, decorators: [{
|
|
14499
14499
|
type: Injectable,
|
|
14500
14500
|
args: [{
|
|
14501
14501
|
providedIn: 'root'
|
|
@@ -14537,10 +14537,10 @@ class GicClientService {
|
|
|
14537
14537
|
saveCeaMonths(identification, promCodigo, ceaMonths) {
|
|
14538
14538
|
return this.httpClient.post(this.environment.host.backend.gicBackoffice + 'gic-client/saveCeaMonths?identification=' + identification + '&promCodigo=' + promCodigo + '&ceaMonths=' + ceaMonths, null);
|
|
14539
14539
|
}
|
|
14540
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14541
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14540
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicClientService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14541
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicClientService, providedIn: 'root' }); }
|
|
14542
14542
|
}
|
|
14543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicClientService, decorators: [{
|
|
14544
14544
|
type: Injectable,
|
|
14545
14545
|
args: [{
|
|
14546
14546
|
providedIn: 'root'
|
|
@@ -14572,10 +14572,10 @@ class GicDisbursementService {
|
|
|
14572
14572
|
body: listIds
|
|
14573
14573
|
});
|
|
14574
14574
|
}
|
|
14575
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14576
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicDisbursementService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14576
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicDisbursementService, providedIn: 'root' }); }
|
|
14577
14577
|
}
|
|
14578
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicDisbursementService, decorators: [{
|
|
14579
14579
|
type: Injectable,
|
|
14580
14580
|
args: [{
|
|
14581
14581
|
providedIn: 'root'
|
|
@@ -14621,10 +14621,10 @@ class GicCollectionService {
|
|
|
14621
14621
|
queueSendToBankVision(listIds) {
|
|
14622
14622
|
return this.httpClient.post(this.environment.host.backend.gicQueuePublisher + 'collection/sendCollectionsToBv', listIds, this.headerJson);
|
|
14623
14623
|
}
|
|
14624
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14625
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14624
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCollectionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14625
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCollectionService, providedIn: 'root' }); }
|
|
14626
14626
|
}
|
|
14627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCollectionService, decorators: [{
|
|
14628
14628
|
type: Injectable,
|
|
14629
14629
|
args: [{
|
|
14630
14630
|
providedIn: 'root'
|
|
@@ -14658,10 +14658,10 @@ class GicExtractService {
|
|
|
14658
14658
|
.set('anio', anio)
|
|
14659
14659
|
});
|
|
14660
14660
|
}
|
|
14661
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14662
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14661
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicExtractService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14662
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicExtractService, providedIn: 'root' }); }
|
|
14663
14663
|
}
|
|
14664
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicExtractService, decorators: [{
|
|
14665
14665
|
type: Injectable,
|
|
14666
14666
|
args: [{
|
|
14667
14667
|
providedIn: 'root'
|
|
@@ -14695,10 +14695,10 @@ class GicLogService {
|
|
|
14695
14695
|
.set('typeEventId', String(typeEventId))
|
|
14696
14696
|
});
|
|
14697
14697
|
}
|
|
14698
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14699
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14698
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicLogService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14699
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicLogService, providedIn: 'root' }); }
|
|
14700
14700
|
}
|
|
14701
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14701
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicLogService, decorators: [{
|
|
14702
14702
|
type: Injectable,
|
|
14703
14703
|
args: [{
|
|
14704
14704
|
providedIn: 'root'
|
|
@@ -14718,10 +14718,10 @@ class GicTRMService {
|
|
|
14718
14718
|
getByDateList(dateList) {
|
|
14719
14719
|
return this.httpClient.post(this.environment.host.backend.gicBackoffice + 'gic-trm/getByDateList', dateList);
|
|
14720
14720
|
}
|
|
14721
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14722
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14721
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicTRMService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14722
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicTRMService, providedIn: 'root' }); }
|
|
14723
14723
|
}
|
|
14724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicTRMService, decorators: [{
|
|
14725
14725
|
type: Injectable,
|
|
14726
14726
|
args: [{
|
|
14727
14727
|
providedIn: 'root'
|
|
@@ -14749,10 +14749,10 @@ class GicPaymentApplicationService {
|
|
|
14749
14749
|
return this.httpClient.put(this.environment.host.backend.gicBackoffice +
|
|
14750
14750
|
'gic-payment-application/updateGicPaymentApplication', gicPaymentApplication);
|
|
14751
14751
|
}
|
|
14752
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14753
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14752
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentApplicationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14753
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentApplicationService, providedIn: 'root' }); }
|
|
14754
14754
|
}
|
|
14755
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14755
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentApplicationService, decorators: [{
|
|
14756
14756
|
type: Injectable,
|
|
14757
14757
|
args: [{
|
|
14758
14758
|
providedIn: 'root'
|
|
@@ -14796,10 +14796,10 @@ class InitialConfigurationGicParametersService {
|
|
|
14796
14796
|
return this.httpClient.post(this.environment.host.backend.gicConfiguration +
|
|
14797
14797
|
`gic-initial-configuration/cloningConfigByPromCodigo?promCodigoOfCloning=${promCodigoOfCloning}&promCodigoOfCloningDestination=${promCodigoOfCloningDestination}`, this.headerJson);
|
|
14798
14798
|
}
|
|
14799
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14800
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14799
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InitialConfigurationGicParametersService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14800
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InitialConfigurationGicParametersService, providedIn: 'root' }); }
|
|
14801
14801
|
}
|
|
14802
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14802
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InitialConfigurationGicParametersService, decorators: [{
|
|
14803
14803
|
type: Injectable,
|
|
14804
14804
|
args: [{
|
|
14805
14805
|
providedIn: 'root'
|
|
@@ -14843,10 +14843,10 @@ class InitialRecordService {
|
|
|
14843
14843
|
save(initialRecord) {
|
|
14844
14844
|
return this.httpClient.post(this.environment.host.backend.frontoffice + 'initialRecord/save', initialRecord);
|
|
14845
14845
|
}
|
|
14846
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14847
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14846
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InitialRecordService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14847
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InitialRecordService, providedIn: 'root' }); }
|
|
14848
14848
|
}
|
|
14849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InitialRecordService, decorators: [{
|
|
14850
14850
|
type: Injectable,
|
|
14851
14851
|
args: [{
|
|
14852
14852
|
providedIn: 'root'
|
|
@@ -14879,10 +14879,10 @@ class LetterTaskMappingService {
|
|
|
14879
14879
|
saveAll(letterTaskCampaing) {
|
|
14880
14880
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfLetterTaskMapping/saveAll', letterTaskCampaing, this.headerJson);
|
|
14881
14881
|
}
|
|
14882
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
14883
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
14882
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LetterTaskMappingService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14883
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LetterTaskMappingService, providedIn: 'root' }); }
|
|
14884
14884
|
}
|
|
14885
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14885
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LetterTaskMappingService, decorators: [{
|
|
14886
14886
|
type: Injectable,
|
|
14887
14887
|
args: [{
|
|
14888
14888
|
providedIn: 'root'
|
|
@@ -15023,10 +15023,10 @@ class LegalizationService {
|
|
|
15023
15023
|
acceptConsultation(applicationId, response) {
|
|
15024
15024
|
return this.httpClient.put(`${this.environment.host.backend.backoffice}legalization/acceptConsultation?response=${response}`, applicationId);
|
|
15025
15025
|
}
|
|
15026
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15027
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15026
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LegalizationService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15027
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LegalizationService, providedIn: 'root' }); }
|
|
15028
15028
|
}
|
|
15029
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15029
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LegalizationService, decorators: [{
|
|
15030
15030
|
type: Injectable,
|
|
15031
15031
|
args: [{
|
|
15032
15032
|
providedIn: 'root'
|
|
@@ -15046,10 +15046,10 @@ class MigrationPlisService {
|
|
|
15046
15046
|
send(arrMigrationPlisRequestTo) {
|
|
15047
15047
|
return this.httpClient.post(this.environment.host.backend.queue + 'migration-plis/send', arrMigrationPlisRequestTo, this.headerJson);
|
|
15048
15048
|
}
|
|
15049
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15050
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15049
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MigrationPlisService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15050
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MigrationPlisService, providedIn: 'root' }); }
|
|
15051
15051
|
}
|
|
15052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MigrationPlisService, decorators: [{
|
|
15053
15053
|
type: Injectable,
|
|
15054
15054
|
args: [{
|
|
15055
15055
|
providedIn: 'root'
|
|
@@ -15067,10 +15067,10 @@ class MigrationSurveyQueueService {
|
|
|
15067
15067
|
send(lSurveyTO) {
|
|
15068
15068
|
return this.httpClient.post(this.environment.host.backend.queue + 'migration-segmentation-survey/send', lSurveyTO);
|
|
15069
15069
|
}
|
|
15070
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15071
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15070
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MigrationSurveyQueueService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15071
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MigrationSurveyQueueService, providedIn: 'root' }); }
|
|
15072
15072
|
}
|
|
15073
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15073
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MigrationSurveyQueueService, decorators: [{
|
|
15074
15074
|
type: Injectable,
|
|
15075
15075
|
args: [{
|
|
15076
15076
|
providedIn: 'root'
|
|
@@ -15088,10 +15088,10 @@ class SummaryBudgetService {
|
|
|
15088
15088
|
sendSummaryBudgetQueue(budgetRequest) {
|
|
15089
15089
|
return this.httpClient.post(`${this.environment.host.backend.queue}summary-budget/send`, budgetRequest);
|
|
15090
15090
|
}
|
|
15091
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15092
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15091
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SummaryBudgetService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15092
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SummaryBudgetService, providedIn: 'root' }); }
|
|
15093
15093
|
}
|
|
15094
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SummaryBudgetService, decorators: [{
|
|
15095
15095
|
type: Injectable,
|
|
15096
15096
|
args: [{
|
|
15097
15097
|
providedIn: 'root'
|
|
@@ -15125,10 +15125,10 @@ class PliCnfAppointmentTypeService {
|
|
|
15125
15125
|
.set('newPPP', newPPP.toString())
|
|
15126
15126
|
});
|
|
15127
15127
|
}
|
|
15128
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15129
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAppointmentTypeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15129
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAppointmentTypeService, providedIn: 'root' }); }
|
|
15130
15130
|
}
|
|
15131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfAppointmentTypeService, decorators: [{
|
|
15132
15132
|
type: Injectable,
|
|
15133
15133
|
args: [{
|
|
15134
15134
|
providedIn: 'root'
|
|
@@ -15175,10 +15175,10 @@ class PliCnfBudgetProgramTypeService {
|
|
|
15175
15175
|
const params = new HttpParams().set('oldPPP', String(oldPPP)).set('newPPP', String(newPPP));
|
|
15176
15176
|
return this.httpClient.get(`${this.url}getConfigCloningBudgetProgram`, { params });
|
|
15177
15177
|
}
|
|
15178
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15179
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15178
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfBudgetProgramTypeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15179
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfBudgetProgramTypeService, providedIn: 'root' }); }
|
|
15180
15180
|
}
|
|
15181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfBudgetProgramTypeService, decorators: [{
|
|
15182
15182
|
type: Injectable,
|
|
15183
15183
|
args: [{
|
|
15184
15184
|
providedIn: 'root'
|
|
@@ -15260,10 +15260,10 @@ class PliCnfConfigMinisiteService {
|
|
|
15260
15260
|
return this.httpClient.get(this.environment.host.backend.configuration +
|
|
15261
15261
|
'PliDatatableSearchListController/getDatatableSearchListById', { params: new HttpParams().set('id', id) });
|
|
15262
15262
|
}
|
|
15263
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15264
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15263
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfConfigMinisiteService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15264
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfConfigMinisiteService, providedIn: 'root' }); }
|
|
15265
15265
|
}
|
|
15266
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfConfigMinisiteService, decorators: [{
|
|
15267
15267
|
type: Injectable,
|
|
15268
15268
|
args: [{
|
|
15269
15269
|
providedIn: 'root'
|
|
@@ -15304,10 +15304,10 @@ class PliCnfCommitteePdfConfigTableConfigService {
|
|
|
15304
15304
|
return this.httpClient.post(this.environment.host.backend.configuration +
|
|
15305
15305
|
'pliCnfCommitteePdfConfigTableConfig/updatePdfConfigForApplication', pdfConfig);
|
|
15306
15306
|
}
|
|
15307
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15308
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15307
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteePdfConfigTableConfigService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15308
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteePdfConfigTableConfigService, providedIn: 'root' }); }
|
|
15309
15309
|
}
|
|
15310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteePdfConfigTableConfigService, decorators: [{
|
|
15311
15311
|
type: Injectable,
|
|
15312
15312
|
args: [{
|
|
15313
15313
|
providedIn: 'root'
|
|
@@ -15330,10 +15330,10 @@ class PliCnfCommitteePdfGenStatusService {
|
|
|
15330
15330
|
save(pliCnfCommitteePdfGenerationStatus) {
|
|
15331
15331
|
return this.httpClient.post(this.environment.host.backend.configuration + 'committee-pdf-generation-status/save', pliCnfCommitteePdfGenerationStatus);
|
|
15332
15332
|
}
|
|
15333
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15334
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15333
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteePdfGenStatusService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15334
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteePdfGenStatusService, providedIn: 'root' }); }
|
|
15335
15335
|
}
|
|
15336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteePdfGenStatusService, decorators: [{
|
|
15337
15337
|
type: Injectable,
|
|
15338
15338
|
args: [{
|
|
15339
15339
|
providedIn: 'root'
|
|
@@ -15392,10 +15392,10 @@ class PliCnfCommitteeService {
|
|
|
15392
15392
|
params: new HttpParams().set('promCodigo', promCodigo.toString())
|
|
15393
15393
|
});
|
|
15394
15394
|
}
|
|
15395
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15396
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15395
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15396
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeService, providedIn: 'root' }); }
|
|
15397
15397
|
}
|
|
15398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeService, decorators: [{
|
|
15399
15399
|
type: Injectable,
|
|
15400
15400
|
args: [{
|
|
15401
15401
|
providedIn: 'root'
|
|
@@ -15430,10 +15430,10 @@ class PliCnfCommitteeValproColumnsService {
|
|
|
15430
15430
|
params: new HttpParams().set('pliCnfColumnId', pliCnfColumnId.toString())
|
|
15431
15431
|
});
|
|
15432
15432
|
}
|
|
15433
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15434
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15433
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeValproColumnsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15434
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeValproColumnsService, providedIn: 'root' }); }
|
|
15435
15435
|
}
|
|
15436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCommitteeValproColumnsService, decorators: [{
|
|
15437
15437
|
type: Injectable,
|
|
15438
15438
|
args: [{
|
|
15439
15439
|
providedIn: 'root'
|
|
@@ -15478,10 +15478,10 @@ class PliCnfDynamicKeysAssignService {
|
|
|
15478
15478
|
saveAll(dynamicKeysAssignData) {
|
|
15479
15479
|
return this.httpClient.post(`${this.environment.host.backend.configuration}pliCnfDynamicKeysAssign/saveAll`, dynamicKeysAssignData);
|
|
15480
15480
|
}
|
|
15481
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15482
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15481
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfDynamicKeysAssignService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15482
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfDynamicKeysAssignService, providedIn: 'root' }); }
|
|
15483
15483
|
}
|
|
15484
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfDynamicKeysAssignService, decorators: [{
|
|
15485
15485
|
type: Injectable,
|
|
15486
15486
|
args: [{
|
|
15487
15487
|
providedIn: 'root'
|
|
@@ -15514,10 +15514,10 @@ class PliCnfDocumentManagementService {
|
|
|
15514
15514
|
.set('newPromCodigo', newPromCodigo.toString())
|
|
15515
15515
|
});
|
|
15516
15516
|
}
|
|
15517
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15518
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15517
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfDocumentManagementService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15518
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfDocumentManagementService, providedIn: 'root' }); }
|
|
15519
15519
|
}
|
|
15520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfDocumentManagementService, decorators: [{
|
|
15521
15521
|
type: Injectable,
|
|
15522
15522
|
args: [{
|
|
15523
15523
|
providedIn: 'root'
|
|
@@ -15550,10 +15550,10 @@ class PliCnfEvaluationTaskTemplateService {
|
|
|
15550
15550
|
saveAll(pliCnfEvaluationTaskTemplate) {
|
|
15551
15551
|
return this.httpClient.post(this.environment.host.backend.configuration + 'evaluationTaskTemplate/saveAll', pliCnfEvaluationTaskTemplate);
|
|
15552
15552
|
}
|
|
15553
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15554
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15553
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskTemplateService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15554
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskTemplateService, providedIn: 'root' }); }
|
|
15555
15555
|
}
|
|
15556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskTemplateService, decorators: [{
|
|
15557
15557
|
type: Injectable,
|
|
15558
15558
|
args: [{
|
|
15559
15559
|
providedIn: 'root'
|
|
@@ -15571,10 +15571,10 @@ class PliCnfInformationSystemService {
|
|
|
15571
15571
|
getAll() {
|
|
15572
15572
|
return this.httpClient.get(`${this.environment.host.backend.configuration}pli_cnf_information_system/getAll`);
|
|
15573
15573
|
}
|
|
15574
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15575
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15574
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfInformationSystemService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15575
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfInformationSystemService, providedIn: 'root' }); }
|
|
15576
15576
|
}
|
|
15577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfInformationSystemService, decorators: [{
|
|
15578
15578
|
type: Injectable,
|
|
15579
15579
|
args: [{
|
|
15580
15580
|
providedIn: 'root'
|
|
@@ -15614,10 +15614,10 @@ class PliCnfLetterTemplateService {
|
|
|
15614
15614
|
.set('newPPP', newPPP.toString())
|
|
15615
15615
|
});
|
|
15616
15616
|
}
|
|
15617
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15618
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15617
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLetterTemplateService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15618
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLetterTemplateService, providedIn: 'root' }); }
|
|
15619
15619
|
}
|
|
15620
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15620
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLetterTemplateService, decorators: [{
|
|
15621
15621
|
type: Injectable,
|
|
15622
15622
|
args: [{
|
|
15623
15623
|
providedIn: 'root'
|
|
@@ -15638,10 +15638,10 @@ class PliCnfLetterTemplateTypeService {
|
|
|
15638
15638
|
getAll() {
|
|
15639
15639
|
return this.httpClient.get(this.environment.host.backend.configuration + 'pliCnfLetterTemplateType/getAll');
|
|
15640
15640
|
}
|
|
15641
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15642
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15641
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLetterTemplateTypeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15642
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLetterTemplateTypeService, providedIn: 'root' }); }
|
|
15643
15643
|
}
|
|
15644
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfLetterTemplateTypeService, decorators: [{
|
|
15645
15645
|
type: Injectable,
|
|
15646
15646
|
args: [{
|
|
15647
15647
|
providedIn: 'root'
|
|
@@ -15677,10 +15677,10 @@ class PliCnfMigrationStatusPlisService {
|
|
|
15677
15677
|
params: new HttpParams().set('id', id.toString())
|
|
15678
15678
|
});
|
|
15679
15679
|
}
|
|
15680
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15681
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15680
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationStatusPlisService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15681
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationStatusPlisService, providedIn: 'root' }); }
|
|
15682
15682
|
}
|
|
15683
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationStatusPlisService, decorators: [{
|
|
15684
15684
|
type: Injectable,
|
|
15685
15685
|
args: [{
|
|
15686
15686
|
providedIn: 'root'
|
|
@@ -15720,10 +15720,10 @@ class PliCnfMigrationPlisFieldService {
|
|
|
15720
15720
|
configCloningMigrationConf(lMigration) {
|
|
15721
15721
|
return this.httpClient.post(`${this.environment.host.backend.configuration}pliCnfMigrationPlisField/configCloningMigrationConf`, lMigration);
|
|
15722
15722
|
}
|
|
15723
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15724
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15723
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationPlisFieldService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15724
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationPlisFieldService, providedIn: 'root' }); }
|
|
15725
15725
|
}
|
|
15726
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationPlisFieldService, decorators: [{
|
|
15727
15727
|
type: Injectable,
|
|
15728
15728
|
args: [{
|
|
15729
15729
|
providedIn: 'root'
|
|
@@ -15782,10 +15782,10 @@ class PliCnfPageSectionFormService {
|
|
|
15782
15782
|
saveAll(pliCnfPageSectionForm) {
|
|
15783
15783
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfPageSectionForm/saveAll', pliCnfPageSectionForm, this.headerJson);
|
|
15784
15784
|
}
|
|
15785
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15786
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15785
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPageSectionFormService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15786
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPageSectionFormService, providedIn: 'root' }); }
|
|
15787
15787
|
}
|
|
15788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPageSectionFormService, decorators: [{
|
|
15789
15789
|
type: Injectable,
|
|
15790
15790
|
args: [{
|
|
15791
15791
|
providedIn: 'root'
|
|
@@ -15809,10 +15809,10 @@ class PliCnfPdfsService {
|
|
|
15809
15809
|
save(pdfCnf) {
|
|
15810
15810
|
return this.httpClient.post(`${this.environment.host.backend.configuration}pliCnfFormsPdf`, pdfCnf, HEADER_JSON);
|
|
15811
15811
|
}
|
|
15812
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15813
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15812
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPdfsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15813
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPdfsService, providedIn: 'root' }); }
|
|
15814
15814
|
}
|
|
15815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15815
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfPdfsService, decorators: [{
|
|
15816
15816
|
type: Injectable,
|
|
15817
15817
|
args: [{
|
|
15818
15818
|
providedIn: 'root'
|
|
@@ -15873,10 +15873,10 @@ class PliCnfFormEditService {
|
|
|
15873
15873
|
saveAll(pliCnfFormEdit) {
|
|
15874
15874
|
return this.httpClient.post(this.environment.host.backend.configuration + 'formEdit/saveAll', pliCnfFormEdit, this.headerJson);
|
|
15875
15875
|
}
|
|
15876
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15877
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15876
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfFormEditService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15877
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfFormEditService, providedIn: 'root' }); }
|
|
15878
15878
|
}
|
|
15879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfFormEditService, decorators: [{
|
|
15880
15880
|
type: Injectable,
|
|
15881
15881
|
args: [{
|
|
15882
15882
|
providedIn: 'root'
|
|
@@ -15915,10 +15915,10 @@ class PliCnfFormMultiaplicacionService {
|
|
|
15915
15915
|
params: new HttpParams().set('id', id.toString())
|
|
15916
15916
|
});
|
|
15917
15917
|
}
|
|
15918
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15919
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15918
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfFormMultiaplicacionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15919
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfFormMultiaplicacionService, providedIn: 'root' }); }
|
|
15920
15920
|
}
|
|
15921
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfFormMultiaplicacionService, decorators: [{
|
|
15922
15922
|
type: Injectable,
|
|
15923
15923
|
args: [{
|
|
15924
15924
|
providedIn: 'root'
|
|
@@ -15951,10 +15951,10 @@ class PliCnfProfileFormService {
|
|
|
15951
15951
|
deleteByListId(lProfileForm) {
|
|
15952
15952
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfProfileForm/deleteByListId', lProfileForm, this.headerJson);
|
|
15953
15953
|
}
|
|
15954
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15955
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15954
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProfileFormService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15955
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProfileFormService, providedIn: 'root' }); }
|
|
15956
15956
|
}
|
|
15957
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfProfileFormService, decorators: [{
|
|
15958
15958
|
type: Injectable,
|
|
15959
15959
|
args: [{
|
|
15960
15960
|
providedIn: 'root'
|
|
@@ -15993,10 +15993,10 @@ class PliCnfSurveyService {
|
|
|
15993
15993
|
delete(id) {
|
|
15994
15994
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'pliCnfSurvey', { params: new HttpParams().set('id', String(id)) });
|
|
15995
15995
|
}
|
|
15996
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15997
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
15996
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15997
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyService, providedIn: 'root' }); }
|
|
15998
15998
|
}
|
|
15999
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
15999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyService, decorators: [{
|
|
16000
16000
|
type: Injectable,
|
|
16001
16001
|
args: [{
|
|
16002
16002
|
providedIn: 'root'
|
|
@@ -16026,10 +16026,10 @@ class PliCnfSurveyDocumentService {
|
|
|
16026
16026
|
delete(id) {
|
|
16027
16027
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'pliCnfSurveyDocument', { params: new HttpParams().set('id', String(id)) });
|
|
16028
16028
|
}
|
|
16029
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16030
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16029
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyDocumentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16030
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyDocumentService, providedIn: 'root' }); }
|
|
16031
16031
|
}
|
|
16032
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16032
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSurveyDocumentService, decorators: [{
|
|
16033
16033
|
type: Injectable,
|
|
16034
16034
|
args: [{
|
|
16035
16035
|
providedIn: 'root'
|
|
@@ -16056,10 +16056,10 @@ class PliCnfTaskGroupService {
|
|
|
16056
16056
|
deleteAllByPromCode(promCodigo) {
|
|
16057
16057
|
return this.httpClient.delete(`${this.environment.host.backend.configuration}pliCnfTaskGroup/deleteAllByPromCode?promCodigo=${promCodigo}`);
|
|
16058
16058
|
}
|
|
16059
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16060
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16059
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTaskGroupService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16060
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTaskGroupService, providedIn: 'root' }); }
|
|
16061
16061
|
}
|
|
16062
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTaskGroupService, decorators: [{
|
|
16063
16063
|
type: Injectable,
|
|
16064
16064
|
args: [{
|
|
16065
16065
|
providedIn: 'root'
|
|
@@ -16090,10 +16090,10 @@ class PliCnfTextCategoryService {
|
|
|
16090
16090
|
return this.httpClient.get(this.environment.host.backend.configuration +
|
|
16091
16091
|
'pliCnfTextCategory/findAll');
|
|
16092
16092
|
}
|
|
16093
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16094
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16093
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextCategoryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16094
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextCategoryService, providedIn: 'root' }); }
|
|
16095
16095
|
}
|
|
16096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTextCategoryService, decorators: [{
|
|
16097
16097
|
type: Injectable,
|
|
16098
16098
|
args: [{
|
|
16099
16099
|
providedIn: 'root'
|
|
@@ -16131,10 +16131,10 @@ class PliCnfTypeTextService {
|
|
|
16131
16131
|
return this.httpClient.get(this.environment.host.backend.configuration +
|
|
16132
16132
|
'pliCnfTypeText/findAll');
|
|
16133
16133
|
}
|
|
16134
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16135
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16134
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTypeTextService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16135
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTypeTextService, providedIn: 'root' }); }
|
|
16136
16136
|
}
|
|
16137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfTypeTextService, decorators: [{
|
|
16138
16138
|
type: Injectable,
|
|
16139
16139
|
args: [{
|
|
16140
16140
|
providedIn: 'root'
|
|
@@ -16164,10 +16164,10 @@ class PliCnfUserCalendarService {
|
|
|
16164
16164
|
save(pliCnfUserCalendar) {
|
|
16165
16165
|
return this.httpClient.post(`${this.environment.host.backend.configuration}pliCnfUserCalendar/save`, pliCnfUserCalendar);
|
|
16166
16166
|
}
|
|
16167
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16168
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16167
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUserCalendarService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16168
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUserCalendarService, providedIn: 'root' }); }
|
|
16169
16169
|
}
|
|
16170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUserCalendarService, decorators: [{
|
|
16171
16171
|
type: Injectable,
|
|
16172
16172
|
args: [{
|
|
16173
16173
|
providedIn: 'root'
|
|
@@ -16194,10 +16194,10 @@ class PliCnfMigrationPlisFieldBudgetService {
|
|
|
16194
16194
|
saveEquivalencePLICtoPLIS(equivalences) {
|
|
16195
16195
|
return this.httpClient.post(`${this.environment.host.backend.configuration}pliCnfMigrationPlisFieldBudget/saveEquivalencePlicToPlis`, equivalences);
|
|
16196
16196
|
}
|
|
16197
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16198
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16197
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationPlisFieldBudgetService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16198
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationPlisFieldBudgetService, providedIn: 'root' }); }
|
|
16199
16199
|
}
|
|
16200
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMigrationPlisFieldBudgetService, decorators: [{
|
|
16201
16201
|
type: Injectable,
|
|
16202
16202
|
args: [{
|
|
16203
16203
|
providedIn: 'root'
|
|
@@ -16226,10 +16226,10 @@ class PliSegActionUserService {
|
|
|
16226
16226
|
saveAll(pliSegActionsUse) {
|
|
16227
16227
|
return this.httpClient.post(this.environment.host.backend.segmentation + 'PlicMassiveAction/saveAll', pliSegActionsUse);
|
|
16228
16228
|
}
|
|
16229
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16230
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16229
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliSegActionUserService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: AuthenticationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16230
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliSegActionUserService, providedIn: 'root' }); }
|
|
16231
16231
|
}
|
|
16232
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliSegActionUserService, decorators: [{
|
|
16233
16233
|
type: Injectable,
|
|
16234
16234
|
args: [{
|
|
16235
16235
|
providedIn: 'root'
|
|
@@ -16251,10 +16251,10 @@ class PlisBeneficiarioService {
|
|
|
16251
16251
|
.set('patCodigo', patCodigo)
|
|
16252
16252
|
});
|
|
16253
16253
|
}
|
|
16254
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16255
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16254
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PlisBeneficiarioService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16255
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PlisBeneficiarioService, providedIn: 'root' }); }
|
|
16256
16256
|
}
|
|
16257
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PlisBeneficiarioService, decorators: [{
|
|
16258
16258
|
type: Injectable,
|
|
16259
16259
|
args: [{
|
|
16260
16260
|
providedIn: 'root'
|
|
@@ -16291,10 +16291,10 @@ class PromotionScoreService {
|
|
|
16291
16291
|
return this.httpClient.get(this.environment.host.backend.backoffice +
|
|
16292
16292
|
'promotionScoreController/getCreditStudyGroup', { params });
|
|
16293
16293
|
}
|
|
16294
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16295
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16294
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PromotionScoreService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16295
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PromotionScoreService, providedIn: 'root' }); }
|
|
16296
16296
|
}
|
|
16297
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PromotionScoreService, decorators: [{
|
|
16298
16298
|
type: Injectable,
|
|
16299
16299
|
args: [{
|
|
16300
16300
|
providedIn: 'root'
|
|
@@ -16339,10 +16339,10 @@ class SurveyService {
|
|
|
16339
16339
|
reactivateSurvey(parameters) {
|
|
16340
16340
|
return this.httpClient.post(this.environment.host.backend.frontoffice + 'survey/reactivateSurvey', parameters);
|
|
16341
16341
|
}
|
|
16342
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16343
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16342
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16343
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyService, providedIn: 'root' }); }
|
|
16344
16344
|
}
|
|
16345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyService, decorators: [{
|
|
16346
16346
|
type: Injectable,
|
|
16347
16347
|
args: [{
|
|
16348
16348
|
providedIn: 'root'
|
|
@@ -16363,10 +16363,10 @@ class SurveyMetadataService {
|
|
|
16363
16363
|
getById(id) {
|
|
16364
16364
|
return this.httpClient.get(this.environment.host.backend.configuration + 'survey-metadata/getByPliCnfSurveyId', { params: new HttpParams().set('id', String(id)) });
|
|
16365
16365
|
}
|
|
16366
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16367
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16366
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyMetadataService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16367
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyMetadataService, providedIn: 'root' }); }
|
|
16368
16368
|
}
|
|
16369
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyMetadataService, decorators: [{
|
|
16370
16370
|
type: Injectable,
|
|
16371
16371
|
args: [{
|
|
16372
16372
|
providedIn: 'root'
|
|
@@ -16384,10 +16384,10 @@ class SurveyQueueService {
|
|
|
16384
16384
|
send(segmentationSurveyTO) {
|
|
16385
16385
|
return this.httpClient.post(this.environment.host.backend.queue + 'survey/send', segmentationSurveyTO);
|
|
16386
16386
|
}
|
|
16387
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16388
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16387
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyQueueService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16388
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyQueueService, providedIn: 'root' }); }
|
|
16389
16389
|
}
|
|
16390
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SurveyQueueService, decorators: [{
|
|
16391
16391
|
type: Injectable,
|
|
16392
16392
|
args: [{
|
|
16393
16393
|
providedIn: 'root'
|
|
@@ -16429,10 +16429,10 @@ class RegistryIdentifierService {
|
|
|
16429
16429
|
headers: this.headerJson.headers
|
|
16430
16430
|
});
|
|
16431
16431
|
}
|
|
16432
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16433
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16432
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RegistryIdentifierService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16433
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RegistryIdentifierService, providedIn: 'root' }); }
|
|
16434
16434
|
}
|
|
16435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RegistryIdentifierService, decorators: [{
|
|
16436
16436
|
type: Injectable,
|
|
16437
16437
|
args: [{
|
|
16438
16438
|
providedIn: 'root'
|
|
@@ -16515,10 +16515,10 @@ class VisualizationCommitteeService {
|
|
|
16515
16515
|
setDataCutlineName(name) {
|
|
16516
16516
|
return this.subjectCutlineName.next(name);
|
|
16517
16517
|
}
|
|
16518
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16519
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16518
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: VisualizationCommitteeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16519
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: VisualizationCommitteeService, providedIn: 'root' }); }
|
|
16520
16520
|
}
|
|
16521
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: VisualizationCommitteeService, decorators: [{
|
|
16522
16522
|
type: Injectable,
|
|
16523
16523
|
args: [{
|
|
16524
16524
|
providedIn: 'root'
|
|
@@ -16552,10 +16552,10 @@ class PliCnfConfigurationCreditStudyService {
|
|
|
16552
16552
|
.set('newPPP', newPPP.toString())
|
|
16553
16553
|
});
|
|
16554
16554
|
}
|
|
16555
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16556
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16555
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfConfigurationCreditStudyService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16556
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfConfigurationCreditStudyService, providedIn: 'root' }); }
|
|
16557
16557
|
}
|
|
16558
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfConfigurationCreditStudyService, decorators: [{
|
|
16559
16559
|
type: Injectable,
|
|
16560
16560
|
args: [{
|
|
16561
16561
|
providedIn: 'root'
|
|
@@ -16587,10 +16587,10 @@ class PliCnfUniversityArticleService {
|
|
|
16587
16587
|
save(article) {
|
|
16588
16588
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfUniversityArticle/', article, this.headerJson);
|
|
16589
16589
|
}
|
|
16590
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16591
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16590
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUniversityArticleService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16591
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUniversityArticleService, providedIn: 'root' }); }
|
|
16592
16592
|
}
|
|
16593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16593
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfUniversityArticleService, decorators: [{
|
|
16594
16594
|
type: Injectable,
|
|
16595
16595
|
args: [{
|
|
16596
16596
|
providedIn: 'root'
|
|
@@ -16611,10 +16611,10 @@ class PliCnfCloningService {
|
|
|
16611
16611
|
validateFormsAndStatusForCloning(promCodigo) {
|
|
16612
16612
|
return this.httpClient.get(`${this.environment.host.backend.configuration}pliCnfCloning/validateFormsAndStatusForCloning?promCodigo=${promCodigo}`);
|
|
16613
16613
|
}
|
|
16614
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16615
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16614
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCloningService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16615
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCloningService, providedIn: 'root' }); }
|
|
16616
16616
|
}
|
|
16617
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfCloningService, decorators: [{
|
|
16618
16618
|
type: Injectable,
|
|
16619
16619
|
args: [{
|
|
16620
16620
|
providedIn: 'root'
|
|
@@ -16722,9 +16722,9 @@ class CustomValidator {
|
|
|
16722
16722
|
/* tslint:disable */
|
|
16723
16723
|
const VERSION = {
|
|
16724
16724
|
"dirty": true,
|
|
16725
|
-
"raw": "v0.0.18-
|
|
16726
|
-
"hash": "
|
|
16727
|
-
"distance":
|
|
16725
|
+
"raw": "v0.0.18-2688-g57b18f71-dirty",
|
|
16726
|
+
"hash": "g57b18f71",
|
|
16727
|
+
"distance": 2688,
|
|
16728
16728
|
"tag": "v0.0.18",
|
|
16729
16729
|
"semver": {
|
|
16730
16730
|
"options": {
|
|
@@ -16740,10 +16740,10 @@ const VERSION = {
|
|
|
16740
16740
|
"build": [],
|
|
16741
16741
|
"version": "0.0.18"
|
|
16742
16742
|
},
|
|
16743
|
-
"suffix": "
|
|
16744
|
-
"semverString": "0.0.18+
|
|
16745
|
-
"version": "1.0.
|
|
16746
|
-
"buildTimestamp": "2025-
|
|
16743
|
+
"suffix": "2688-g57b18f71-dirty",
|
|
16744
|
+
"semverString": "0.0.18+2688.g57b18f71",
|
|
16745
|
+
"version": "1.0.137",
|
|
16746
|
+
"buildTimestamp": "2025-12-03T22:16:41.431Z"
|
|
16747
16747
|
};
|
|
16748
16748
|
/* tslint:enable */
|
|
16749
16749
|
|
|
@@ -16782,10 +16782,10 @@ class DocumentHistoryService {
|
|
|
16782
16782
|
save(documentHistory) {
|
|
16783
16783
|
return this.httpClient.post(this.environment.host.backend.frontoffice + 'documentHistory/save', documentHistory, this.headerJson);
|
|
16784
16784
|
}
|
|
16785
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16786
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16785
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentHistoryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16786
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentHistoryService, providedIn: 'root' }); }
|
|
16787
16787
|
}
|
|
16788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DocumentHistoryService, decorators: [{
|
|
16789
16789
|
type: Injectable,
|
|
16790
16790
|
args: [{
|
|
16791
16791
|
providedIn: 'root'
|
|
@@ -16825,10 +16825,10 @@ class PliCnfSupportDocumentCategoryService {
|
|
|
16825
16825
|
.set('idCategory', idCategory.toString())
|
|
16826
16826
|
});
|
|
16827
16827
|
}
|
|
16828
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16829
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16828
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSupportDocumentCategoryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16829
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSupportDocumentCategoryService, providedIn: 'root' }); }
|
|
16830
16830
|
}
|
|
16831
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16831
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfSupportDocumentCategoryService, decorators: [{
|
|
16832
16832
|
type: Injectable,
|
|
16833
16833
|
args: [{
|
|
16834
16834
|
providedIn: 'root'
|
|
@@ -16852,10 +16852,10 @@ class PliCnfEvaluationTaskMailingService {
|
|
|
16852
16852
|
save(pliCnfEvaluationTaskMailing) {
|
|
16853
16853
|
return this.httpClient.post(this.urlBase + 'pliCnfEvaluationTaskMailing/save', pliCnfEvaluationTaskMailing);
|
|
16854
16854
|
}
|
|
16855
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16856
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16855
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskMailingService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16856
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskMailingService, providedIn: 'root' }); }
|
|
16857
16857
|
}
|
|
16858
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfEvaluationTaskMailingService, decorators: [{
|
|
16859
16859
|
type: Injectable,
|
|
16860
16860
|
args: [{
|
|
16861
16861
|
providedIn: 'root'
|
|
@@ -16901,10 +16901,10 @@ class ReturnRefundService {
|
|
|
16901
16901
|
updateBankvisionState(updateBankvisionRequestTO) {
|
|
16902
16902
|
return this.httpClient.put(this.environment.host.backend.gicBackoffice + 'gic-return-refund/updateBankvisionState', updateBankvisionRequestTO);
|
|
16903
16903
|
}
|
|
16904
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16905
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16904
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ReturnRefundService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16905
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ReturnRefundService, providedIn: 'root' }); }
|
|
16906
16906
|
}
|
|
16907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16907
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ReturnRefundService, decorators: [{
|
|
16908
16908
|
type: Injectable,
|
|
16909
16909
|
args: [{
|
|
16910
16910
|
providedIn: 'root'
|
|
@@ -16931,10 +16931,10 @@ class InterestAdjustmentService {
|
|
|
16931
16931
|
updateBankvisionState(updateBankvisionRequestTO) {
|
|
16932
16932
|
return this.httpClient.put(this.environment.host.backend.gicBackoffice + 'interest_adjustment/updateBankvisionState', updateBankvisionRequestTO);
|
|
16933
16933
|
}
|
|
16934
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16935
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16934
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InterestAdjustmentService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16935
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InterestAdjustmentService, providedIn: 'root' }); }
|
|
16936
16936
|
}
|
|
16937
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InterestAdjustmentService, decorators: [{
|
|
16938
16938
|
type: Injectable,
|
|
16939
16939
|
args: [{
|
|
16940
16940
|
providedIn: 'root'
|
|
@@ -16980,10 +16980,10 @@ class ImportExcelGICService {
|
|
|
16980
16980
|
return this.httpClient.post(this.environment.host.backend.gicBackoffice +
|
|
16981
16981
|
'/plis-status-change/savePlisEstatusChangeFromPlis', null, this.headerJson);
|
|
16982
16982
|
}
|
|
16983
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
16984
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
16983
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ImportExcelGICService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
16984
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ImportExcelGICService, providedIn: 'root' }); }
|
|
16985
16985
|
}
|
|
16986
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
16986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ImportExcelGICService, decorators: [{
|
|
16987
16987
|
type: Injectable,
|
|
16988
16988
|
args: [{
|
|
16989
16989
|
providedIn: 'root'
|
|
@@ -17006,10 +17006,10 @@ class GicCnfMaintenaceService {
|
|
|
17006
17006
|
save(gicCnfMaintenance) {
|
|
17007
17007
|
return this.httpClient.post(this.environment.host.backend.gicConfiguration + 'gic-cnf-maintenance/save', gicCnfMaintenance);
|
|
17008
17008
|
}
|
|
17009
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17010
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17009
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfMaintenaceService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17010
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfMaintenaceService, providedIn: 'root' }); }
|
|
17011
17011
|
}
|
|
17012
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17012
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicCnfMaintenaceService, decorators: [{
|
|
17013
17013
|
type: Injectable,
|
|
17014
17014
|
args: [{
|
|
17015
17015
|
providedIn: 'root'
|
|
@@ -17029,10 +17029,10 @@ class GicPaymentPlanCubeService {
|
|
|
17029
17029
|
return this.httpClient.post(this.environment.host.backend.gicBackoffice +
|
|
17030
17030
|
'gic-payment-plan-cube/getByDataTablesParameters', dataTableParameters, this.headerJson);
|
|
17031
17031
|
}
|
|
17032
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17033
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17032
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentPlanCubeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17033
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentPlanCubeService, providedIn: 'root' }); }
|
|
17034
17034
|
}
|
|
17035
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17035
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentPlanCubeService, decorators: [{
|
|
17036
17036
|
type: Injectable,
|
|
17037
17037
|
args: [{
|
|
17038
17038
|
providedIn: 'root'
|
|
@@ -17111,10 +17111,10 @@ class MaintenanceService {
|
|
|
17111
17111
|
};
|
|
17112
17112
|
return this.httpClient.post(this.environment.host.backend.plis + 'plisEstatusChange/updateByUuid', request, this.headerJson);
|
|
17113
17113
|
}
|
|
17114
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17115
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MaintenanceService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17115
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MaintenanceService, providedIn: 'root' }); }
|
|
17116
17116
|
}
|
|
17117
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MaintenanceService, decorators: [{
|
|
17118
17118
|
type: Injectable,
|
|
17119
17119
|
args: [{
|
|
17120
17120
|
providedIn: 'root'
|
|
@@ -17139,10 +17139,10 @@ class GicPaymentPlanService {
|
|
|
17139
17139
|
generatePaymentPlansCubos(dateGenerate) {
|
|
17140
17140
|
return this.httpClient.post(this.environment.host.backend.gicBackoffice + 'payment-plan/generatePaymentPlansCubos', dateGenerate, this.headerJson);
|
|
17141
17141
|
}
|
|
17142
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17143
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentPlanService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17143
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentPlanService, providedIn: 'root' }); }
|
|
17144
17144
|
}
|
|
17145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GicPaymentPlanService, decorators: [{
|
|
17146
17146
|
type: Injectable,
|
|
17147
17147
|
args: [{
|
|
17148
17148
|
providedIn: 'root'
|
|
@@ -17165,10 +17165,10 @@ class PlisEstatusChangeService {
|
|
|
17165
17165
|
params: new HttpParams().set('dateGenerate', dateGenerate)
|
|
17166
17166
|
});
|
|
17167
17167
|
}
|
|
17168
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17169
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17168
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PlisEstatusChangeService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17169
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PlisEstatusChangeService, providedIn: 'root' }); }
|
|
17170
17170
|
}
|
|
17171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PlisEstatusChangeService, decorators: [{
|
|
17172
17172
|
type: Injectable,
|
|
17173
17173
|
args: [{
|
|
17174
17174
|
providedIn: 'root'
|
|
@@ -17191,10 +17191,10 @@ class PliCnfMailService {
|
|
|
17191
17191
|
params: new HttpParams().set('promCodigo', promCodigo.toString())
|
|
17192
17192
|
});
|
|
17193
17193
|
}
|
|
17194
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17195
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17194
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMailService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17195
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMailService, providedIn: 'root' }); }
|
|
17196
17196
|
}
|
|
17197
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PliCnfMailService, decorators: [{
|
|
17198
17198
|
type: Injectable,
|
|
17199
17199
|
args: [{
|
|
17200
17200
|
providedIn: 'root'
|
|
@@ -17266,10 +17266,10 @@ class MasterUniversityService {
|
|
|
17266
17266
|
delete(id) {
|
|
17267
17267
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'master-university/' + id);
|
|
17268
17268
|
}
|
|
17269
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17270
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17269
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterUniversityService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17270
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterUniversityService, providedIn: 'root' }); }
|
|
17271
17271
|
}
|
|
17272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterUniversityService, decorators: [{
|
|
17273
17273
|
type: Injectable,
|
|
17274
17274
|
args: [{
|
|
17275
17275
|
providedIn: 'root'
|
|
@@ -17340,10 +17340,10 @@ class MasterProgramService {
|
|
|
17340
17340
|
getAllProgramType() {
|
|
17341
17341
|
return this.httpClient.get(this.environment.host.backend.configuration + 'master-program/getAllProgramType');
|
|
17342
17342
|
}
|
|
17343
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17344
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17343
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterProgramService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17344
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterProgramService, providedIn: 'root' }); }
|
|
17345
17345
|
}
|
|
17346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterProgramService, decorators: [{
|
|
17347
17347
|
type: Injectable,
|
|
17348
17348
|
args: [{
|
|
17349
17349
|
providedIn: 'root'
|
|
@@ -17402,10 +17402,10 @@ class MasterCategoryService {
|
|
|
17402
17402
|
delete(id) {
|
|
17403
17403
|
return this.httpClient.delete(this.environment.host.backend.configuration + 'master-category/' + id);
|
|
17404
17404
|
}
|
|
17405
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17406
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17405
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterCategoryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17406
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterCategoryService, providedIn: 'root' }); }
|
|
17407
17407
|
}
|
|
17408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MasterCategoryService, decorators: [{
|
|
17409
17409
|
type: Injectable,
|
|
17410
17410
|
args: [{
|
|
17411
17411
|
providedIn: 'root'
|
|
@@ -17440,10 +17440,10 @@ class PeopleMasterService {
|
|
|
17440
17440
|
params: new HttpParams().set('find', find)
|
|
17441
17441
|
});
|
|
17442
17442
|
}
|
|
17443
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17444
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17443
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PeopleMasterService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17444
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PeopleMasterService, providedIn: 'root' }); }
|
|
17445
17445
|
}
|
|
17446
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PeopleMasterService, decorators: [{
|
|
17447
17447
|
type: Injectable,
|
|
17448
17448
|
args: [{
|
|
17449
17449
|
providedIn: 'root'
|
|
@@ -17510,10 +17510,10 @@ class CorrespondenceManagerService {
|
|
|
17510
17510
|
return this.httpClient.post(this.environment.host.backend.backoffice +
|
|
17511
17511
|
'correspondence-manager/getByDatatableParameters', dataTableParameters);
|
|
17512
17512
|
}
|
|
17513
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17514
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17513
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CorrespondenceManagerService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17514
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CorrespondenceManagerService, providedIn: 'root' }); }
|
|
17515
17515
|
}
|
|
17516
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CorrespondenceManagerService, decorators: [{
|
|
17517
17517
|
type: Injectable,
|
|
17518
17518
|
args: [{
|
|
17519
17519
|
providedIn: 'root'
|
|
@@ -17537,10 +17537,10 @@ class CorrespondenceDocumentCategoryService {
|
|
|
17537
17537
|
params: new HttpParams().set('find', find)
|
|
17538
17538
|
});
|
|
17539
17539
|
}
|
|
17540
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17541
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17540
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CorrespondenceDocumentCategoryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17541
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CorrespondenceDocumentCategoryService, providedIn: 'root' }); }
|
|
17542
17542
|
}
|
|
17543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CorrespondenceDocumentCategoryService, decorators: [{
|
|
17544
17544
|
type: Injectable,
|
|
17545
17545
|
args: [{
|
|
17546
17546
|
providedIn: 'root'
|
|
@@ -17572,10 +17572,10 @@ class CnfCorrespondenceDocumentManagerService {
|
|
|
17572
17572
|
.set('categoryName', categoryName)
|
|
17573
17573
|
});
|
|
17574
17574
|
}
|
|
17575
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17576
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CnfCorrespondenceDocumentManagerService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17576
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CnfCorrespondenceDocumentManagerService, providedIn: 'root' }); }
|
|
17577
17577
|
}
|
|
17578
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CnfCorrespondenceDocumentManagerService, decorators: [{
|
|
17579
17579
|
type: Injectable,
|
|
17580
17580
|
args: [{
|
|
17581
17581
|
providedIn: 'root'
|
|
@@ -17593,10 +17593,10 @@ class PostSelectionService {
|
|
|
17593
17593
|
sendMail(promCodigo) {
|
|
17594
17594
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'post-selection/sendMail', null, { params: new HttpParams().set('promCodigo', promCodigo) });
|
|
17595
17595
|
}
|
|
17596
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17597
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17596
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PostSelectionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17597
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PostSelectionService, providedIn: 'root' }); }
|
|
17598
17598
|
}
|
|
17599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17599
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PostSelectionService, decorators: [{
|
|
17600
17600
|
type: Injectable,
|
|
17601
17601
|
args: [{
|
|
17602
17602
|
providedIn: 'root'
|
|
@@ -17615,10 +17615,10 @@ class GuaranteesSummaryService {
|
|
|
17615
17615
|
updateGuaranteeFlags(guaranteesSummaryTO) {
|
|
17616
17616
|
return this.httpClient.post(this.environment.host.backend.backoffice + 'guarantees-summary/updateGuaranteeFlags', guaranteesSummaryTO, this.headerJson);
|
|
17617
17617
|
}
|
|
17618
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17619
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
17618
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteesSummaryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17619
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteesSummaryService, providedIn: 'root' }); }
|
|
17620
17620
|
}
|
|
17621
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
17621
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: GuaranteesSummaryService, decorators: [{
|
|
17622
17622
|
type: Injectable,
|
|
17623
17623
|
args: [{
|
|
17624
17624
|
providedIn: 'root'
|