@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.
- package/README.md +4 -0
- package/esm2020/lib/model/key-value-report.model.mjs +2 -1
- package/esm2020/lib/ucsearch.component.mjs +7 -13
- package/fesm2015/adins-ucsearch.mjs +8 -13
- package/fesm2015/adins-ucsearch.mjs.map +1 -1
- package/fesm2020/adins-ucsearch.mjs +8 -13
- package/fesm2020/adins-ucsearch.mjs.map +1 -1
- package/lib/model/key-value-report.model.d.ts +1 -0
- package/package.json +2 -2
|
@@ -167,7 +167,8 @@ ExportTypeConstant.EXP_TYPE_PDF = 0;
|
|
|
167
167
|
ExportTypeConstant.EXP_TYPE_XLS = 1;
|
|
168
168
|
ExportTypeConstant.EXP_TYPE_XLSX = 2;
|
|
169
169
|
ExportTypeConstant.EXP_TYPE_DOC = 3;
|
|
170
|
-
ExportTypeConstant.EXP_TYPE_DOCX = 4;
|
|
170
|
+
ExportTypeConstant.EXP_TYPE_DOCX = 4;
|
|
171
|
+
ExportTypeConstant.EXP_TYPE_JPDF = 5;
|
|
171
172
|
|
|
172
173
|
class KeyValueUCSearchObj {
|
|
173
174
|
constructor() {
|
|
@@ -250,22 +251,18 @@ class UCSearchComponent {
|
|
|
250
251
|
key: ExportTypeConstant.EXP_TYPE_PDF,
|
|
251
252
|
value: "PDF"
|
|
252
253
|
},
|
|
253
|
-
{
|
|
254
|
-
key: ExportTypeConstant.EXP_TYPE_XLS,
|
|
255
|
-
value: "Excel 2003"
|
|
256
|
-
},
|
|
257
254
|
{
|
|
258
255
|
key: ExportTypeConstant.EXP_TYPE_XLSX,
|
|
259
256
|
value: "Excel 2007"
|
|
260
257
|
},
|
|
261
|
-
{
|
|
262
|
-
key: ExportTypeConstant.EXP_TYPE_DOC,
|
|
263
|
-
value: "Document"
|
|
264
|
-
},
|
|
265
258
|
{
|
|
266
259
|
key: ExportTypeConstant.EXP_TYPE_DOCX,
|
|
267
260
|
value: "Document XML"
|
|
268
261
|
},
|
|
262
|
+
{
|
|
263
|
+
key: ExportTypeConstant.EXP_TYPE_JPDF,
|
|
264
|
+
value: "Justify PDF"
|
|
265
|
+
}
|
|
269
266
|
];
|
|
270
267
|
this.ListOfMonth = new ListKeyValueMonth();
|
|
271
268
|
this.ListOfYear = new Array();
|
|
@@ -772,10 +769,8 @@ class UCSearchComponent {
|
|
|
772
769
|
}
|
|
773
770
|
}
|
|
774
771
|
request.criteria = arrCrit;
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
}
|
|
778
|
-
else {
|
|
772
|
+
request.integrationObj = null;
|
|
773
|
+
if (this.searchInput.isJoinExAPI) {
|
|
779
774
|
request.integrationObj = this.searchInput.integrationObj;
|
|
780
775
|
}
|
|
781
776
|
this.http.post(apiUrl, request).subscribe((response) => {
|