@colijnit/transaction 12.1.56 → 12.1.57
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 +4 -2
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/core/base/transaction-base.component.js +5 -3
- package/fesm2015/colijnit-transaction.js +4 -2
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +1 -1
|
@@ -11112,7 +11112,7 @@
|
|
|
11112
11112
|
},
|
|
11113
11113
|
set: function (value) {
|
|
11114
11114
|
this._transaction = value;
|
|
11115
|
-
if (this._transaction
|
|
11115
|
+
if (this._transaction) {
|
|
11116
11116
|
if (this._transaction.transactionInfo) {
|
|
11117
11117
|
this.transactionInfo = this._transaction.transactionInfo;
|
|
11118
11118
|
this.isService = this._transaction.transactionInfo.transactionKind === transactionKind_enum.TransactionKind.ServiceOrder;
|
|
@@ -11126,7 +11126,9 @@
|
|
|
11126
11126
|
if (this._transaction.lineOperationStatuses) {
|
|
11127
11127
|
this.lineOperationStatuses = this._transaction.lineOperationStatuses;
|
|
11128
11128
|
}
|
|
11129
|
-
this.
|
|
11129
|
+
if (this._transaction.transactionInfo && this._transaction.transactionInfo.uuid) {
|
|
11130
|
+
this.transactionSet();
|
|
11131
|
+
}
|
|
11130
11132
|
}
|
|
11131
11133
|
},
|
|
11132
11134
|
enumerable: false,
|