@colijnit/transaction 12.1.141 → 12.1.142
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 +38 -3
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/service/transaction-connector-adapter.service.js +6 -2
- package/esm2015/lib/service/transaction-connector.service.js +6 -1
- package/esm2015/lib/service/transaction.service.js +6 -1
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +17 -3
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/service/transaction-connector-adapter.service.d.ts +1 -1
- package/lib/service/transaction-connector.service.d.ts +1 -0
- package/lib/service/transaction.service.d.ts +1 -0
- package/package.json +3 -3
- package/lib/component/transaction-document-button/style/_layout.scss +0 -59
- package/lib/component/transaction-document-button/style/_material-definition.scss +0 -9
- package/lib/component/transaction-document-button/style/_theme.scss +0 -5
- package/lib/component/transaction-document-button/style/material.scss +0 -4
|
@@ -3,8 +3,8 @@ export class Version {
|
|
|
3
3
|
constructor() {
|
|
4
4
|
this.name = "@colijnit/transaction";
|
|
5
5
|
this.description = "Colijn IT transaction package";
|
|
6
|
-
this.symVer = "12.1.
|
|
7
|
-
this.publishDate = "
|
|
6
|
+
this.symVer = "12.1.142";
|
|
7
|
+
this.publishDate = "6-9-2023 09:31:37";
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tdmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvdHJhbnNhY3Rpb24tdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSx1REFBdUQ7QUFDdkQsTUFBTSxPQUFPLE9BQU87SUFBcEI7UUFDUyxTQUFJLEdBQUcsdUJBQXVCLENBQUM7UUFDL0IsZ0JBQVcsR0FBRywrQkFBK0IsQ0FBQztRQUM5QyxXQUFNLEdBQUcsVUFBVSxDQUFDO1FBQ3BCLGdCQUFXLEdBQUcsbUJBQW1CLENBQUM7SUFDM0MsQ0FBQztDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiLy8gdGhpcyBmaWxlIGlzIGR5bmFtaWNhbGx5IGNyZWF0ZWQsIGRvIG5vdCBjaGFuZ2UgdGhpc1xuZXhwb3J0IGNsYXNzIFZlcnNpb24ge1xuICBwdWJsaWMgbmFtZSA9IFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uXCI7XG4gIHB1YmxpYyBkZXNjcmlwdGlvbiA9IFwiQ29saWpuIElUIHRyYW5zYWN0aW9uIHBhY2thZ2VcIjtcbiAgcHVibGljIHN5bVZlciA9IFwiMTIuMS4xNDJcIjtcbiAgcHVibGljIHB1Ymxpc2hEYXRlID0gXCI2LTktMjAyMyAwOTozMTozN1wiO1xufSJdfQ==
|
|
@@ -195,8 +195,8 @@ class Version {
|
|
|
195
195
|
constructor() {
|
|
196
196
|
this.name = "@colijnit/transaction";
|
|
197
197
|
this.description = "Colijn IT transaction package";
|
|
198
|
-
this.symVer = "12.1.
|
|
199
|
-
this.publishDate = "
|
|
198
|
+
this.symVer = "12.1.142";
|
|
199
|
+
this.publishDate = "6-9-2023 09:31:37";
|
|
200
200
|
}
|
|
201
201
|
}
|
|
202
202
|
|
|
@@ -1404,7 +1404,6 @@ class TransactionConnectorAdapterService {
|
|
|
1404
1404
|
this._errorService = _errorService;
|
|
1405
1405
|
this.controllerInitialized = new BehaviorSubject(false);
|
|
1406
1406
|
this._boFactory = new BusinessObjectFactory();
|
|
1407
|
-
this._internalParameterCache = new Map();
|
|
1408
1407
|
}
|
|
1409
1408
|
connect() {
|
|
1410
1409
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1415,6 +1414,11 @@ class TransactionConnectorAdapterService {
|
|
|
1415
1414
|
this.controllerInitialized.next(true);
|
|
1416
1415
|
});
|
|
1417
1416
|
}
|
|
1417
|
+
logOut() {
|
|
1418
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1419
|
+
yield this.connector.logOut();
|
|
1420
|
+
});
|
|
1421
|
+
}
|
|
1418
1422
|
getArticleFullObject(goodId) {
|
|
1419
1423
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1420
1424
|
const result = yield this.connector.getArticleFullObject(goodId);
|
|
@@ -4284,6 +4288,11 @@ class TransactionConnectorService {
|
|
|
4284
4288
|
yield this._adapterService.connect();
|
|
4285
4289
|
});
|
|
4286
4290
|
}
|
|
4291
|
+
logOut() {
|
|
4292
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4293
|
+
yield this._adapterService.logOut();
|
|
4294
|
+
});
|
|
4295
|
+
}
|
|
4287
4296
|
getArticleFullObject(goodId) {
|
|
4288
4297
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4289
4298
|
return this._selectSingleCacheService.requestCache(ArticleFullObject, goodId, () => {
|
|
@@ -7215,6 +7224,11 @@ class TransactionService extends PendingReasonService {
|
|
|
7215
7224
|
this.internalParameterPartialInvoice = false;
|
|
7216
7225
|
this.internalParameterReceiveGoodsWithDataTerminal = false;
|
|
7217
7226
|
}
|
|
7227
|
+
logOut() {
|
|
7228
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
7229
|
+
yield this.connector.logOut();
|
|
7230
|
+
});
|
|
7231
|
+
}
|
|
7218
7232
|
prepareDropShipmentInternalParam() {
|
|
7219
7233
|
this.getInternalParameter(InternalParam.DropShipment).then((value) => this.internalParameterAllowsDropShipment = value);
|
|
7220
7234
|
}
|