@colijnit/transaction 257.1.24 → 257.1.25
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/colijnit-transaction.umd.js +13 -8
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-send-method-base.component.js +12 -7
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +13 -8
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-send-method-base.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
function Version() {
|
|
34
34
|
this.name = "@colijnit/transaction";
|
|
35
35
|
this.description = "Colijn IT transaction package";
|
|
36
|
-
this.symVer = "257.1.
|
|
37
|
-
this.publishDate = "11-3-2025
|
|
36
|
+
this.symVer = "257.1.25";
|
|
37
|
+
this.publishDate = "11-3-2025 14:52:03";
|
|
38
38
|
}
|
|
39
39
|
return Version;
|
|
40
40
|
}());
|
|
@@ -24701,17 +24701,13 @@
|
|
|
24701
24701
|
}
|
|
24702
24702
|
TransactionQuickAccessSendMethodBaseComponent.prototype.ngOnInit = function () {
|
|
24703
24703
|
_super.prototype.ngOnInit.call(this);
|
|
24704
|
-
this.
|
|
24705
|
-
this._getDefaultSendMethod();
|
|
24706
|
-
this._getEmailLayouts();
|
|
24707
|
-
this._getPrintLayouts();
|
|
24708
|
-
this.isDocSignEnabled = this.screenConfigService.getObjectConfigurationFor(this.cfgNames.IsDocSignEnabled).immediatelyVisible();
|
|
24709
|
-
this.isAdditionalDocEnabled = this.screenConfigService.getObjectConfigurationFor(this.cfgNames.IsAdditionalDocEnabled).immediatelyVisible();
|
|
24704
|
+
this._prepareData();
|
|
24710
24705
|
};
|
|
24711
24706
|
TransactionQuickAccessSendMethodBaseComponent.prototype.transactionSet = function () {
|
|
24712
24707
|
this.reportDocumentEmailRequest.transId = this.transactionInfo.id;
|
|
24713
24708
|
this.reportDocumentPrintRequest.transId = this.transactionInfo.id;
|
|
24714
24709
|
this.reportDocumentPdfRequest.transId = this.transactionInfo.id;
|
|
24710
|
+
this._prepareData();
|
|
24715
24711
|
};
|
|
24716
24712
|
TransactionQuickAccessSendMethodBaseComponent.prototype.relationSet = function () {
|
|
24717
24713
|
var _this = this;
|
|
@@ -24872,6 +24868,15 @@
|
|
|
24872
24868
|
});
|
|
24873
24869
|
}
|
|
24874
24870
|
};
|
|
24871
|
+
TransactionQuickAccessSendMethodBaseComponent.prototype._prepareData = function () {
|
|
24872
|
+
this._getPrinters();
|
|
24873
|
+
this._getDefaultSendMethod();
|
|
24874
|
+
this._getEmailLayouts();
|
|
24875
|
+
this._getPrintLayouts();
|
|
24876
|
+
this.isDocSignEnabled = this.screenConfigService.getObjectConfigurationFor(this.cfgNames.IsDocSignEnabled).immediatelyVisible();
|
|
24877
|
+
this.isAdditionalDocEnabled = this.screenConfigService.getObjectConfigurationFor(this.cfgNames.IsAdditionalDocEnabled).immediatelyVisible();
|
|
24878
|
+
this.getHistoricDocuments();
|
|
24879
|
+
};
|
|
24875
24880
|
TransactionQuickAccessSendMethodBaseComponent.prototype._getPrinters = function () {
|
|
24876
24881
|
var _this = this;
|
|
24877
24882
|
this.transactionService.getPrinters().then(function (printerList) {
|