tnx-shared 5.1.608 → 5.1.609
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/bundles/tnx-shared.umd.js +3 -2
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/esm2015/services/templateinstance.service.js +3 -3
- package/fesm2015/tnx-shared.js +2 -2
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/templateinstance.service.d.ts +1 -1
- package/services/templateinstance.service.d.ts.map +1 -1
|
@@ -9939,13 +9939,14 @@
|
|
|
9939
9939
|
});
|
|
9940
9940
|
}); });
|
|
9941
9941
|
};
|
|
9942
|
-
TemplateInstanceService.prototype.fillWordByTemplateCodeMultiData = function (templateCode, data, onLoadingDataPdf, onEndLoadingDataPdf, isPrint, fileName) {
|
|
9942
|
+
TemplateInstanceService.prototype.fillWordByTemplateCodeMultiData = function (templateCode, data, onLoadingDataPdf, onEndLoadingDataPdf, isPrint, fileName, isClearHeader) {
|
|
9943
9943
|
var _this = this;
|
|
9944
9944
|
if (onLoadingDataPdf === void 0) { onLoadingDataPdf = null; }
|
|
9945
9945
|
if (onEndLoadingDataPdf === void 0) { onEndLoadingDataPdf = null; }
|
|
9946
9946
|
if (isPrint === void 0) { isPrint = true; }
|
|
9947
9947
|
if (fileName === void 0) { fileName = 'Export'; }
|
|
9948
|
-
|
|
9948
|
+
if (isClearHeader === void 0) { isClearHeader = false; }
|
|
9949
|
+
var url = this.serviceUri + "/fillWordByTemplateCodeMultiData/" + templateCode + "?isPrint=" + (isPrint ? 'true' : 'false') + "&isClearHeader=" + isClearHeader;
|
|
9949
9950
|
if (isPrint) {
|
|
9950
9951
|
return this._httpClient
|
|
9951
9952
|
.post(url, data)
|