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.
@@ -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
- var url = this.serviceUri + "/fillWordByTemplateCodeMultiData/" + templateCode + "?isPrint=" + (isPrint ? 'true' : 'false');
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)