@colijnit/transaction 256.1.64 → 256.1.65
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 = "256.1.
|
|
37
|
-
this.publishDate = "
|
|
36
|
+
this.symVer = "256.1.65";
|
|
37
|
+
this.publishDate = "11-3-2025 14:52:07";
|
|
38
38
|
}
|
|
39
39
|
return Version;
|
|
40
40
|
}());
|
|
@@ -24613,17 +24613,13 @@
|
|
|
24613
24613
|
}
|
|
24614
24614
|
TransactionQuickAccessSendMethodBaseComponent.prototype.ngOnInit = function () {
|
|
24615
24615
|
_super.prototype.ngOnInit.call(this);
|
|
24616
|
-
this.
|
|
24617
|
-
this._getDefaultSendMethod();
|
|
24618
|
-
this._getEmailLayouts();
|
|
24619
|
-
this._getPrintLayouts();
|
|
24620
|
-
this.isDocSignEnabled = this.screenConfigService.getObjectConfigurationFor(this.cfgNames.IsDocSignEnabled).immediatelyVisible();
|
|
24621
|
-
this.isAdditionalDocEnabled = this.screenConfigService.getObjectConfigurationFor(this.cfgNames.IsAdditionalDocEnabled).immediatelyVisible();
|
|
24616
|
+
this._prepareData();
|
|
24622
24617
|
};
|
|
24623
24618
|
TransactionQuickAccessSendMethodBaseComponent.prototype.transactionSet = function () {
|
|
24624
24619
|
this.reportDocumentEmailRequest.transId = this.transactionInfo.id;
|
|
24625
24620
|
this.reportDocumentPrintRequest.transId = this.transactionInfo.id;
|
|
24626
24621
|
this.reportDocumentPdfRequest.transId = this.transactionInfo.id;
|
|
24622
|
+
this._prepareData();
|
|
24627
24623
|
};
|
|
24628
24624
|
TransactionQuickAccessSendMethodBaseComponent.prototype.relationSet = function () {
|
|
24629
24625
|
var _this = this;
|
|
@@ -24771,6 +24767,15 @@
|
|
|
24771
24767
|
});
|
|
24772
24768
|
}
|
|
24773
24769
|
};
|
|
24770
|
+
TransactionQuickAccessSendMethodBaseComponent.prototype._prepareData = function () {
|
|
24771
|
+
this._getPrinters();
|
|
24772
|
+
this._getDefaultSendMethod();
|
|
24773
|
+
this._getEmailLayouts();
|
|
24774
|
+
this._getPrintLayouts();
|
|
24775
|
+
this.isDocSignEnabled = this.screenConfigService.getObjectConfigurationFor(this.cfgNames.IsDocSignEnabled).immediatelyVisible();
|
|
24776
|
+
this.isAdditionalDocEnabled = this.screenConfigService.getObjectConfigurationFor(this.cfgNames.IsAdditionalDocEnabled).immediatelyVisible();
|
|
24777
|
+
this.getHistoricDocuments();
|
|
24778
|
+
};
|
|
24774
24779
|
TransactionQuickAccessSendMethodBaseComponent.prototype._getPrinters = function () {
|
|
24775
24780
|
var _this = this;
|
|
24776
24781
|
this.transactionService.getPrinters().then(function (printerList) {
|