@adins/ucsearch 2.9.13 → 2.9.14

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.
@@ -168,7 +168,8 @@ ExportTypeConstant.EXP_TYPE_PDF = 0;
168
168
  ExportTypeConstant.EXP_TYPE_XLS = 1;
169
169
  ExportTypeConstant.EXP_TYPE_XLSX = 2;
170
170
  ExportTypeConstant.EXP_TYPE_DOC = 3;
171
- ExportTypeConstant.EXP_TYPE_DOCX = 4;
171
+ ExportTypeConstant.EXP_TYPE_DOCX = 4;
172
+ ExportTypeConstant.EXP_TYPE_JPDF = 5;
172
173
 
173
174
  class KeyValueUCSearchObj {
174
175
  constructor() {
@@ -251,22 +252,18 @@ class UCSearchComponent {
251
252
  key: ExportTypeConstant.EXP_TYPE_PDF,
252
253
  value: "PDF"
253
254
  },
254
- {
255
- key: ExportTypeConstant.EXP_TYPE_XLS,
256
- value: "Excel 2003"
257
- },
258
255
  {
259
256
  key: ExportTypeConstant.EXP_TYPE_XLSX,
260
257
  value: "Excel 2007"
261
258
  },
262
- {
263
- key: ExportTypeConstant.EXP_TYPE_DOC,
264
- value: "Document"
265
- },
266
259
  {
267
260
  key: ExportTypeConstant.EXP_TYPE_DOCX,
268
261
  value: "Document XML"
269
262
  },
263
+ {
264
+ key: ExportTypeConstant.EXP_TYPE_JPDF,
265
+ value: "Justify PDF"
266
+ }
270
267
  ];
271
268
  this.ListOfMonth = new ListKeyValueMonth();
272
269
  this.ListOfYear = new Array();
@@ -779,10 +776,8 @@ class UCSearchComponent {
779
776
  }
780
777
  }
781
778
  request.criteria = arrCrit;
782
- if (!this.searchInput.isJoinExAPI) {
783
- request.integrationObj = null;
784
- }
785
- else {
779
+ request.integrationObj = null;
780
+ if (this.searchInput.isJoinExAPI) {
786
781
  request.integrationObj = this.searchInput.integrationObj;
787
782
  }
788
783
  this.http.post(apiUrl, request).subscribe((response) => {