@colijnit/transaction 12.1.186 → 12.1.187
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 +300 -204
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +177 -175
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +178 -176
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.component.js +1 -16
- package/esm2015/lib/component/transaction-line-side-panel-planning/transaction-line-side-panel-planning.component.js +63 -54
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.js +4 -2
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-planning/transaction-quick-access-planning.component.js +67 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-planning/transaction-quick-access-planning.module.js +35 -0
- package/esm2015/lib/service/transaction-connector-adapter.service.js +2 -2
- package/esm2015/lib/service/transaction-mapping.service.js +3 -1
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +150 -73
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-button-bar/transaction-button-bar.component.d.ts +0 -3
- package/lib/component/transaction-line-side-panel-planning/style/_layout.scss +47 -5
- package/lib/component/transaction-line-side-panel-planning/style/_material-definition.scss +6 -0
- package/lib/component/transaction-line-side-panel-planning/transaction-line-side-panel-planning.component.d.ts +3 -2
- package/lib/component/transaction-quick-access/transaction-quick-access-planning/style/_layout.scss +27 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-planning/style/_material-definition.scss +3 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-planning/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-planning/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-planning/transaction-quick-access-planning.component.d.ts +28 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-planning/transaction-quick-access-planning.module.d.ts +2 -0
- package/package.json +4 -4
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
function Version() {
|
|
32
32
|
this.name = "@colijnit/transaction";
|
|
33
33
|
this.description = "Colijn IT transaction package";
|
|
34
|
-
this.symVer = "12.1.
|
|
35
|
-
this.publishDate = "22-1-2024
|
|
34
|
+
this.symVer = "12.1.187";
|
|
35
|
+
this.publishDate = "22-1-2024 17:19:59";
|
|
36
36
|
}
|
|
37
37
|
return Version;
|
|
38
38
|
}());
|
|
@@ -7055,7 +7055,7 @@
|
|
|
7055
7055
|
case 1:
|
|
7056
7056
|
response = _a.sent();
|
|
7057
7057
|
if (response && response.validationResult && response.validationResult.success) {
|
|
7058
|
-
return [2 /*return*/, this._boFactory.makeBOArrayFromRawBackendDataArray(packageLsp_bo.PackageLSP, response.
|
|
7058
|
+
return [2 /*return*/, this._boFactory.makeBOArrayFromRawBackendDataArray(packageLsp_bo.PackageLSP, response.resultObject)];
|
|
7059
7059
|
}
|
|
7060
7060
|
else {
|
|
7061
7061
|
this._handleExceptionFromResponse(response);
|
|
@@ -22419,6 +22419,65 @@
|
|
|
22419
22419
|
handleMouseLeave: [{ type: i0.HostListener, args: ["mouseleave", ["$event"],] }]
|
|
22420
22420
|
};
|
|
22421
22421
|
|
|
22422
|
+
var TransactionQuickAccessPlanningComponent = /** @class */ (function (_super) {
|
|
22423
|
+
__extends(TransactionQuickAccessPlanningComponent, _super);
|
|
22424
|
+
function TransactionQuickAccessPlanningComponent(transactionEventService, service, iconCacheService, transactionScreenConfigurationService, dictionaryService, imageService, changeDetector, _purchaseConfirmationService, _transactionService) {
|
|
22425
|
+
var _this = _super.call(this, transactionEventService, iconCacheService, transactionScreenConfigurationService, imageService, dictionaryService, service, changeDetector) || this;
|
|
22426
|
+
_this.transactionEventService = transactionEventService;
|
|
22427
|
+
_this.service = service;
|
|
22428
|
+
_this.iconCacheService = iconCacheService;
|
|
22429
|
+
_this.transactionScreenConfigurationService = transactionScreenConfigurationService;
|
|
22430
|
+
_this.dictionaryService = dictionaryService;
|
|
22431
|
+
_this.imageService = imageService;
|
|
22432
|
+
_this.changeDetector = changeDetector;
|
|
22433
|
+
_this._purchaseConfirmationService = _purchaseConfirmationService;
|
|
22434
|
+
_this._transactionService = _transactionService;
|
|
22435
|
+
_this.lspMode = false;
|
|
22436
|
+
return _this;
|
|
22437
|
+
}
|
|
22438
|
+
TransactionQuickAccessPlanningComponent.prototype.showClass = function () {
|
|
22439
|
+
return true;
|
|
22440
|
+
};
|
|
22441
|
+
TransactionQuickAccessPlanningComponent.prototype.toggleLspMode = function () {
|
|
22442
|
+
this.lspMode = !this.lspMode;
|
|
22443
|
+
};
|
|
22444
|
+
TransactionQuickAccessPlanningComponent.prototype.openPlanningSideBar = function () {
|
|
22445
|
+
if (this.lspMode && this.selectedLines.length > 0) {
|
|
22446
|
+
this.transactionEventService.openSidePanel.next(this.selectedLines[0]);
|
|
22447
|
+
}
|
|
22448
|
+
};
|
|
22449
|
+
Object.defineProperty(TransactionQuickAccessPlanningComponent.prototype, "selectedLines", {
|
|
22450
|
+
get: function () {
|
|
22451
|
+
return this._transactionService.currentTransaction.transactionLines.filter(function (line) { return line.selected; });
|
|
22452
|
+
},
|
|
22453
|
+
enumerable: false,
|
|
22454
|
+
configurable: true
|
|
22455
|
+
});
|
|
22456
|
+
return TransactionQuickAccessPlanningComponent;
|
|
22457
|
+
}(TransactionBaseComponent));
|
|
22458
|
+
TransactionQuickAccessPlanningComponent.decorators = [
|
|
22459
|
+
{ type: i0.Component, args: [{
|
|
22460
|
+
selector: "co-transaction-quick-access-planning",
|
|
22461
|
+
template: "\n <div class=\"planning-buttons\">\n <co-transaction-button-bar-button [class.selected]=\"lspMode\" [iconName]=\"icons.BoxesPackingRegular\" (click)=\"toggleLspMode()\"></co-transaction-button-bar-button>\n <co-transaction-button-bar-button [iconName]=\"icons.RegularBoxesPackingCircleCheck\" (click)=\"openPlanningSideBar()\"></co-transaction-button-bar-button>\n </div>\n ",
|
|
22462
|
+
encapsulation: i0.ViewEncapsulation.None
|
|
22463
|
+
},] }
|
|
22464
|
+
];
|
|
22465
|
+
TransactionQuickAccessPlanningComponent.ctorParameters = function () { return [
|
|
22466
|
+
{ type: TransactionEventService },
|
|
22467
|
+
{ type: TransactionService },
|
|
22468
|
+
{ type: IconCacheService },
|
|
22469
|
+
{ type: TransactionScreenConfigurationService },
|
|
22470
|
+
{ type: DictionaryService },
|
|
22471
|
+
{ type: TransactionImageService },
|
|
22472
|
+
{ type: i0.ChangeDetectorRef },
|
|
22473
|
+
{ type: PurchaseConfirmationService },
|
|
22474
|
+
{ type: TransactionService }
|
|
22475
|
+
]; };
|
|
22476
|
+
TransactionQuickAccessPlanningComponent.propDecorators = {
|
|
22477
|
+
sendDocumentsComponent: [{ type: i0.ViewChild, args: [TransactionSendDocumentsComponent,] }],
|
|
22478
|
+
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-quick-access-planning",] }]
|
|
22479
|
+
};
|
|
22480
|
+
|
|
22422
22481
|
var TransactionMappingService = /** @class */ (function () {
|
|
22423
22482
|
function TransactionMappingService(_transactionService) {
|
|
22424
22483
|
this._transactionService = _transactionService;
|
|
@@ -22455,6 +22514,7 @@
|
|
|
22455
22514
|
[{ type: transactionKind_enum.TransactionKind.SalesOrder, category: TransactionTypeCategory.SalesOrderInvoice }, TransactionQuickAccessInvoiceComponent],
|
|
22456
22515
|
[{ type: transactionKind_enum.TransactionKind.SalesOrder, category: TransactionTypeCategory.SalesOrderToBePicked }, TransactionQuickAccessToBePickedComponent],
|
|
22457
22516
|
[{ type: transactionKind_enum.TransactionKind.SalesOrder, category: TransactionTypeCategory.SalesOrderPicked }, TransactionQuickAccessPickedComponent],
|
|
22517
|
+
[{ type: transactionKind_enum.TransactionKind.SalesOrder, category: TransactionTypeCategory.SalesOrderPlanning }, TransactionQuickAccessPlanningComponent],
|
|
22458
22518
|
[{ type: transactionKind_enum.TransactionKind.SalesQuotation, category: TransactionTypeCategory.SalesOrderQuotation }, TransactionQuickAccessSalesQuotationComponent]
|
|
22459
22519
|
]);
|
|
22460
22520
|
this._transactionGridComponent = new Map([
|
|
@@ -34975,13 +35035,6 @@
|
|
|
34975
35035
|
enumerable: false,
|
|
34976
35036
|
configurable: true
|
|
34977
35037
|
});
|
|
34978
|
-
Object.defineProperty(TransactionButtonBarComponent.prototype, "selectedLines", {
|
|
34979
|
-
get: function () {
|
|
34980
|
-
return this._transactionService.currentTransaction.transactionLines.filter(function (line) { return line.selected; });
|
|
34981
|
-
},
|
|
34982
|
-
enumerable: false,
|
|
34983
|
-
configurable: true
|
|
34984
|
-
});
|
|
34985
35038
|
TransactionButtonBarComponent.prototype.showClass = function () {
|
|
34986
35039
|
return true;
|
|
34987
35040
|
};
|
|
@@ -35008,20 +35061,12 @@
|
|
|
35008
35061
|
TransactionButtonBarComponent.prototype.trackButton = function (index, button) {
|
|
35009
35062
|
return button.category;
|
|
35010
35063
|
};
|
|
35011
|
-
TransactionButtonBarComponent.prototype.toggleLspMode = function () {
|
|
35012
|
-
this.lspMode = !this.lspMode;
|
|
35013
|
-
};
|
|
35014
|
-
TransactionButtonBarComponent.prototype.openPlanningSideBar = function () {
|
|
35015
|
-
if (this.lspMode && this.selectedLines.length > 0) {
|
|
35016
|
-
this._transactionEventService.openSidePanel.next(this.selectedLines[0]);
|
|
35017
|
-
}
|
|
35018
|
-
};
|
|
35019
35064
|
return TransactionButtonBarComponent;
|
|
35020
35065
|
}());
|
|
35021
35066
|
TransactionButtonBarComponent.decorators = [
|
|
35022
35067
|
{ type: i0.Component, args: [{
|
|
35023
35068
|
selector: "co-transaction-button-bar",
|
|
35024
|
-
template: "\n <div class=\"button-bar-wrapper\">\n <
|
|
35069
|
+
template: "\n <div class=\"button-bar-wrapper\">\n <co-transaction-button-bar-button *ngFor=\"let button of buttons; let index = index; trackBy: trackButton\"\n [screenConfigurationObject]=\"button.cfgName\"\n [transactionInfoResponse]=\"transactionInfoResponse\"\n [component]=\"button.component\"\n [class.selected]=\"selectedCategory === button.category\"\n [title]=\"button.title\"\n [iconName]=\"button.icon\"\n (buttonClicked)=\"handleButtonClicked($event)\"\n (click)=\"selectCategory(index)\"\n ></co-transaction-button-bar-button>\n </div>\n ",
|
|
35025
35070
|
encapsulation: i0.ViewEncapsulation.None
|
|
35026
35071
|
},] }
|
|
35027
35072
|
];
|
|
@@ -35406,6 +35451,33 @@
|
|
|
35406
35451
|
},] }
|
|
35407
35452
|
];
|
|
35408
35453
|
|
|
35454
|
+
var TransactionQuickAccessPlanningModule = /** @class */ (function () {
|
|
35455
|
+
function TransactionQuickAccessPlanningModule() {
|
|
35456
|
+
}
|
|
35457
|
+
return TransactionQuickAccessPlanningModule;
|
|
35458
|
+
}());
|
|
35459
|
+
TransactionQuickAccessPlanningModule.decorators = [
|
|
35460
|
+
{ type: i0.NgModule, args: [{
|
|
35461
|
+
imports: [
|
|
35462
|
+
common.CommonModule,
|
|
35463
|
+
corecomponents_v12.InputSearchModule,
|
|
35464
|
+
PipeModule,
|
|
35465
|
+
DialogCatalogModule,
|
|
35466
|
+
QuickSendButtonModule,
|
|
35467
|
+
sharedcomponents.SendMethodDialogModule,
|
|
35468
|
+
TransactionSendDocumentsModule,
|
|
35469
|
+
DigitalSignatureModule,
|
|
35470
|
+
TransactionButtonBarModule
|
|
35471
|
+
],
|
|
35472
|
+
declarations: [
|
|
35473
|
+
TransactionQuickAccessPlanningComponent
|
|
35474
|
+
],
|
|
35475
|
+
exports: [
|
|
35476
|
+
TransactionQuickAccessPlanningComponent
|
|
35477
|
+
]
|
|
35478
|
+
},] }
|
|
35479
|
+
];
|
|
35480
|
+
|
|
35409
35481
|
var TransactionQuickAccessModule = /** @class */ (function () {
|
|
35410
35482
|
function TransactionQuickAccessModule() {
|
|
35411
35483
|
}
|
|
@@ -35430,7 +35502,8 @@
|
|
|
35430
35502
|
TransactionQuickAccessInvoiceModule,
|
|
35431
35503
|
TransactionQuickAccessToBePickedModule,
|
|
35432
35504
|
TransactionQuickAccessPickedModule,
|
|
35433
|
-
TransactionQuickAccessSalesQuotationModule
|
|
35505
|
+
TransactionQuickAccessSalesQuotationModule,
|
|
35506
|
+
TransactionQuickAccessPlanningModule
|
|
35434
35507
|
],
|
|
35435
35508
|
declarations: [
|
|
35436
35509
|
TransactionQuickAccessComponent
|
|
@@ -38309,13 +38382,34 @@
|
|
|
38309
38382
|
TransactionLineSidePanelPlanningComponent.prototype.showClass = function () {
|
|
38310
38383
|
return true;
|
|
38311
38384
|
};
|
|
38385
|
+
Object.defineProperty(TransactionLineSidePanelPlanningComponent.prototype, "packageLSP", {
|
|
38386
|
+
get: function () {
|
|
38387
|
+
return this._packageLSP;
|
|
38388
|
+
},
|
|
38389
|
+
enumerable: false,
|
|
38390
|
+
configurable: true
|
|
38391
|
+
});
|
|
38312
38392
|
TransactionLineSidePanelPlanningComponent.prototype.ngOnInit = function () {
|
|
38313
|
-
|
|
38314
|
-
|
|
38315
|
-
|
|
38316
|
-
|
|
38317
|
-
|
|
38318
|
-
|
|
38393
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
38394
|
+
var _this = this;
|
|
38395
|
+
return __generator(this, function (_a) {
|
|
38396
|
+
switch (_a.label) {
|
|
38397
|
+
case 0: return [4 /*yield*/, this._transaction.getPackageInformation(this.transactionInfo.transactionInfo.uuid, this.transactionLine.uuid).then(function (result) {
|
|
38398
|
+
if (result.length) {
|
|
38399
|
+
_this._packageLSP = result[0];
|
|
38400
|
+
}
|
|
38401
|
+
else {
|
|
38402
|
+
_this._transaction.getLogisticsPartners().then(function (result) {
|
|
38403
|
+
_this.deliveryMethods = result;
|
|
38404
|
+
_this.selectedMethod = _this.deliveryMethods[0];
|
|
38405
|
+
});
|
|
38406
|
+
}
|
|
38407
|
+
})];
|
|
38408
|
+
case 1:
|
|
38409
|
+
_a.sent();
|
|
38410
|
+
return [2 /*return*/];
|
|
38411
|
+
}
|
|
38412
|
+
});
|
|
38319
38413
|
});
|
|
38320
38414
|
};
|
|
38321
38415
|
TransactionLineSidePanelPlanningComponent.prototype.deliveryMethodChange = function (method) {
|
|
@@ -38341,21 +38435,21 @@
|
|
|
38341
38435
|
_a = this;
|
|
38342
38436
|
return [4 /*yield*/, this._transaction.sendPackageInformationToLSP(request)];
|
|
38343
38437
|
case 1:
|
|
38344
|
-
_a.
|
|
38438
|
+
_a._packageLSP = _b.sent();
|
|
38345
38439
|
return [2 /*return*/];
|
|
38346
38440
|
}
|
|
38347
38441
|
});
|
|
38348
38442
|
});
|
|
38349
38443
|
};
|
|
38350
38444
|
TransactionLineSidePanelPlanningComponent.prototype.openTrackAndTraceURL = function () {
|
|
38351
|
-
window.open(this.
|
|
38445
|
+
window.open(this._packageLSP.trackAndTraceUrl, "_blank");
|
|
38352
38446
|
};
|
|
38353
38447
|
return TransactionLineSidePanelPlanningComponent;
|
|
38354
38448
|
}());
|
|
38355
38449
|
TransactionLineSidePanelPlanningComponent.decorators = [
|
|
38356
38450
|
{ type: i0.Component, args: [{
|
|
38357
38451
|
selector: "co-transaction-line-side-panel-planning",
|
|
38358
|
-
template: "\n
|
|
38452
|
+
template: "\n <div class=\"wrapper\">\n <div class=\"delivery-method-wrapper\" *ngIf=\"!packageLSP\">\n <span [textContent]=\"'LOGISTICS_SERVICE_PROVIDER_CHOICE' | localize\"></span>\n <div class=\"methods-wrapper\">\n <div class=\"method\" [class.selected]=\"selectedMethod === method\" *ngFor=\"let method of deliveryMethods\">\n <div class=\"radio-wrapper\">\n <co-input-radio-button [model]=\"selectedMethod === method\"\n (modelChange)=\"deliveryMethodChange($event)\"></co-input-radio-button>\n </div>\n <div class=\"body-wrapper\">\n <co-image\n [source]=\"method.image.documentBody\"></co-image>\n <span class=\"body-text\" [textContent]=\"method.description\"></span>\n </div>\n </div>\n </div>\n </div>\n <div class=\"header-info-wrapper\">\n <div class=\"block\">\n <span class=\"header\" [textContent]=\"'LINES_AMOUNT' | localize\"></span>\n <span class=\"text\" [textContent]=\"selectedLines?.length\"></span>\n </div>\n\n <div class=\"block\">\n <span class=\"header\" [textContent]=\"'ARTICLES_AMOUNT' | localize\"></span>\n <span class=\"text\" [textContent]=\"'?'\"></span>\n </div>\n\n <div class=\"block\">\n <span class=\"header\" [textContent]=\"'TOTAL_WEIGHT' | localize\"></span>\n <span class=\"text\" [textContent]=\"'?'\"></span>\n </div>\n\n <div class=\"block\">\n <span class=\"header\" [textContent]=\"'DELIVERY_BATCH' | localize\"></span>\n <span class=\"text\" [textContent]=\"'?'\"></span>\n </div>\n </div>\n\n <div class=\"send-button-wrapper\" *ngIf=\"!packageLSP\">\n <co-button (click)=\"createTrackAndTrace()\" [label]=\"'SEND' | localize\"></co-button>\n </div>\n\n <div class=\"track-and-trace-wrapper\">\n <span class=\"track-and-trace-header\" [textContent]=\"'INFORMATION_LOGISTIC_SERVICE_PROVIDER' | localize\"></span>\n <div class=\"track-and-trace-body-wrapper\">\n <div class=\"code-wrapper\">\n <span [textContent]=\"'TRACK_AND_TRACE' | localize\"></span>\n <span [textContent]=\"packageLSP ? packageLSP['trackAndTraceCode'] : '--'\"></span>\n </div>\n <a (click)=\"openTrackAndTraceURL()\" [textContent]=\"packageLSP ? packageLSP['trackAndTraceUrl'] : '--'\"></a>\n </div>\n </div>\n </div>\n ",
|
|
38359
38453
|
encapsulation: i0.ViewEncapsulation.None
|
|
38360
38454
|
},] }
|
|
38361
38455
|
];
|
|
@@ -43856,188 +43950,190 @@
|
|
|
43856
43950
|
exports["ɵnt"] = TransactionQuickAccessSalesQuotationModule;
|
|
43857
43951
|
exports["ɵnu"] = TransactionQuickAccessSalesQuotationComponent;
|
|
43858
43952
|
exports["ɵnv"] = TransactionCreationService;
|
|
43859
|
-
exports["ɵnw"] =
|
|
43860
|
-
exports["ɵnx"] =
|
|
43861
|
-
exports["ɵny"] =
|
|
43862
|
-
exports["ɵnz"] =
|
|
43953
|
+
exports["ɵnw"] = TransactionQuickAccessPlanningModule;
|
|
43954
|
+
exports["ɵnx"] = TransactionQuickAccessPlanningComponent;
|
|
43955
|
+
exports["ɵny"] = TransactionCardModule;
|
|
43956
|
+
exports["ɵnz"] = TransactionCardPurchaseOverviewModule;
|
|
43863
43957
|
exports["ɵo"] = DeliveryTimePipe;
|
|
43864
|
-
exports["ɵoa"] =
|
|
43865
|
-
exports["ɵob"] =
|
|
43866
|
-
exports["ɵoc"] =
|
|
43867
|
-
exports["ɵod"] =
|
|
43868
|
-
exports["ɵoe"] =
|
|
43869
|
-
exports["ɵof"] =
|
|
43870
|
-
exports["ɵog"] =
|
|
43871
|
-
exports["ɵoh"] =
|
|
43872
|
-
exports["ɵoi"] =
|
|
43873
|
-
exports["ɵoj"] =
|
|
43874
|
-
exports["ɵok"] =
|
|
43875
|
-
exports["ɵol"] =
|
|
43876
|
-
exports["ɵom"] =
|
|
43877
|
-
exports["ɵon"] =
|
|
43878
|
-
exports["ɵoo"] =
|
|
43879
|
-
exports["ɵop"] =
|
|
43880
|
-
exports["ɵoq"] =
|
|
43881
|
-
exports["ɵor"] =
|
|
43882
|
-
exports["ɵos"] =
|
|
43883
|
-
exports["ɵot"] =
|
|
43884
|
-
exports["ɵou"] =
|
|
43885
|
-
exports["ɵov"] =
|
|
43886
|
-
exports["ɵow"] =
|
|
43887
|
-
exports["ɵox"] =
|
|
43888
|
-
exports["ɵoy"] =
|
|
43889
|
-
exports["ɵoz"] =
|
|
43958
|
+
exports["ɵoa"] = TransactionCardHeaderModule;
|
|
43959
|
+
exports["ɵob"] = TransactionCardHeaderComponent;
|
|
43960
|
+
exports["ɵoc"] = TransactionCardFooterModule;
|
|
43961
|
+
exports["ɵod"] = TransactionCardFooterComponent;
|
|
43962
|
+
exports["ɵoe"] = TransactionCardPurchaseOverviewComponent;
|
|
43963
|
+
exports["ɵof"] = TransactionCardSalesOverviewModule;
|
|
43964
|
+
exports["ɵog"] = TransactionCardSalesOverviewComponent;
|
|
43965
|
+
exports["ɵoh"] = TransactionCardReceiveGoodsModule;
|
|
43966
|
+
exports["ɵoi"] = TransactionCardReceiveGoodsComponent;
|
|
43967
|
+
exports["ɵoj"] = TransactionCardInvoiceModule;
|
|
43968
|
+
exports["ɵok"] = TransactionCardInvoiceComponent;
|
|
43969
|
+
exports["ɵol"] = TransactionCardOrderDeliveryModule;
|
|
43970
|
+
exports["ɵom"] = TransactionCardOrderDeliveryComponent;
|
|
43971
|
+
exports["ɵon"] = TransactionCardPurchaseModule;
|
|
43972
|
+
exports["ɵoo"] = TransactionCardPurchaseComponent;
|
|
43973
|
+
exports["ɵop"] = TransactionCardGoodsAllocationModule;
|
|
43974
|
+
exports["ɵoq"] = TransactionCardGoodsAllocationComponent;
|
|
43975
|
+
exports["ɵor"] = TransactionCardToBePickedModule;
|
|
43976
|
+
exports["ɵos"] = TransactionCardToBePickedComponent;
|
|
43977
|
+
exports["ɵot"] = TransactionCardPickedModule;
|
|
43978
|
+
exports["ɵou"] = TransactionCardPickedComponent;
|
|
43979
|
+
exports["ɵov"] = TransactionCardComponent;
|
|
43980
|
+
exports["ɵow"] = TransactionLineSidePanelModule;
|
|
43981
|
+
exports["ɵox"] = TransactionLineSidePanelDefaultModule;
|
|
43982
|
+
exports["ɵoy"] = TransactionLineQuantityModule;
|
|
43983
|
+
exports["ɵoz"] = TransactionLineQuantityComponent;
|
|
43890
43984
|
exports["ɵp"] = DateDurationPipe;
|
|
43891
|
-
exports["ɵpa"] =
|
|
43892
|
-
exports["ɵpb"] =
|
|
43893
|
-
exports["ɵpc"] =
|
|
43894
|
-
exports["ɵpd"] =
|
|
43895
|
-
exports["ɵpe"] =
|
|
43896
|
-
exports["ɵpf"] =
|
|
43897
|
-
exports["ɵpg"] =
|
|
43898
|
-
exports["ɵph"] =
|
|
43899
|
-
exports["ɵpi"] =
|
|
43900
|
-
exports["ɵpj"] =
|
|
43901
|
-
exports["ɵpk"] =
|
|
43902
|
-
exports["ɵpl"] =
|
|
43903
|
-
exports["ɵpm"] =
|
|
43904
|
-
exports["ɵpn"] =
|
|
43905
|
-
exports["ɵpo"] =
|
|
43906
|
-
exports["ɵpp"] =
|
|
43907
|
-
exports["ɵpq"] =
|
|
43908
|
-
exports["ɵpr"] =
|
|
43909
|
-
exports["ɵps"] =
|
|
43910
|
-
exports["ɵpt"] =
|
|
43911
|
-
exports["ɵpu"] =
|
|
43912
|
-
exports["ɵpv"] =
|
|
43913
|
-
exports["ɵpw"] =
|
|
43914
|
-
exports["ɵpx"] =
|
|
43915
|
-
exports["ɵpy"] =
|
|
43916
|
-
exports["ɵpz"] =
|
|
43985
|
+
exports["ɵpa"] = TransactionLineReferenceModule;
|
|
43986
|
+
exports["ɵpb"] = TransactionLineReferenceComponent;
|
|
43987
|
+
exports["ɵpc"] = TransactionLineSidePanelDefaultComponent;
|
|
43988
|
+
exports["ɵpd"] = TransactionReceivingGoodsHistoryModule;
|
|
43989
|
+
exports["ɵpe"] = TransactionHistoryGridModule;
|
|
43990
|
+
exports["ɵpf"] = TransactionHistoryGridStatusModule;
|
|
43991
|
+
exports["ɵpg"] = TransactionHistoryGridStatusComponent;
|
|
43992
|
+
exports["ɵph"] = TransactionHistoryGridComponent;
|
|
43993
|
+
exports["ɵpi"] = TransactionReceivingGoodsHistoryComponent;
|
|
43994
|
+
exports["ɵpj"] = TransactionLineSidePanelPurchaseModule;
|
|
43995
|
+
exports["ɵpk"] = TransactionAvailableStockGridModule;
|
|
43996
|
+
exports["ɵpl"] = TransactionAvailableStockGridComponent;
|
|
43997
|
+
exports["ɵpm"] = TransactionLinePurchaseReceiveGoodsModule;
|
|
43998
|
+
exports["ɵpn"] = TransactionLinePurchaseReceiveGoodsComponent;
|
|
43999
|
+
exports["ɵpo"] = TransactionLinePurchaseConfirmationModule;
|
|
44000
|
+
exports["ɵpp"] = DefaultOkCancelButtonsModule;
|
|
44001
|
+
exports["ɵpq"] = DefaultOkCancelButtonsComponent;
|
|
44002
|
+
exports["ɵpr"] = TransactionLabeledPriceInputModule;
|
|
44003
|
+
exports["ɵps"] = TransactionLabeledPriceInputComponent;
|
|
44004
|
+
exports["ɵpt"] = PurchaseConfirmationLinesModule;
|
|
44005
|
+
exports["ɵpu"] = TransactionLinesPopupModule;
|
|
44006
|
+
exports["ɵpv"] = TransactionLinesPopupComponent;
|
|
44007
|
+
exports["ɵpw"] = PurchaseConfirmationLinesComponent;
|
|
44008
|
+
exports["ɵpx"] = TransactionLinePurchaseConfirmationComponent;
|
|
44009
|
+
exports["ɵpy"] = TransactionLineSidePanelPurchaseComponent;
|
|
44010
|
+
exports["ɵpz"] = TransactionLineSidePanelSalesModule;
|
|
43917
44011
|
exports["ɵq"] = LocalizePipe;
|
|
43918
|
-
exports["ɵqa"] =
|
|
43919
|
-
exports["ɵqb"] =
|
|
43920
|
-
exports["ɵqc"] =
|
|
43921
|
-
exports["ɵqd"] =
|
|
43922
|
-
exports["ɵqe"] =
|
|
43923
|
-
exports["ɵqf"] =
|
|
43924
|
-
exports["ɵqg"] =
|
|
43925
|
-
exports["ɵqh"] =
|
|
43926
|
-
exports["ɵqi"] =
|
|
43927
|
-
exports["ɵqj"] =
|
|
43928
|
-
exports["ɵqk"] =
|
|
43929
|
-
exports["ɵql"] =
|
|
43930
|
-
exports["ɵqm"] =
|
|
43931
|
-
exports["ɵqn"] =
|
|
43932
|
-
exports["ɵqo"] =
|
|
43933
|
-
exports["ɵqp"] =
|
|
43934
|
-
exports["ɵqq"] =
|
|
43935
|
-
exports["ɵqr"] =
|
|
43936
|
-
exports["ɵqs"] =
|
|
43937
|
-
exports["ɵqt"] =
|
|
43938
|
-
exports["ɵqu"] =
|
|
43939
|
-
exports["ɵqv"] =
|
|
43940
|
-
exports["ɵqw"] =
|
|
43941
|
-
exports["ɵqx"] =
|
|
43942
|
-
exports["ɵqy"] =
|
|
43943
|
-
exports["ɵqz"] =
|
|
44012
|
+
exports["ɵqa"] = TransactionAllocateGoodsHistoryModule;
|
|
44013
|
+
exports["ɵqb"] = TransactionAllocateGoodsHistoryComponent;
|
|
44014
|
+
exports["ɵqc"] = TransactionLineSalesAllocationModule;
|
|
44015
|
+
exports["ɵqd"] = TransactionLineSalesAllocationComponent;
|
|
44016
|
+
exports["ɵqe"] = TransactionLineSalesDeliveryModule;
|
|
44017
|
+
exports["ɵqf"] = TransactionLineDeliveryHistoryModule;
|
|
44018
|
+
exports["ɵqg"] = TransactionLineDeliveryHistoryComponent;
|
|
44019
|
+
exports["ɵqh"] = TransactionLineSalesDeliveryComponent;
|
|
44020
|
+
exports["ɵqi"] = TransactionLineSalesInvoiceModule;
|
|
44021
|
+
exports["ɵqj"] = TransactionLineInvoiceHistoryModule;
|
|
44022
|
+
exports["ɵqk"] = TransactionLineInvoiceHistoryComponent;
|
|
44023
|
+
exports["ɵql"] = TransactionLineSalesInvoiceComponent;
|
|
44024
|
+
exports["ɵqm"] = TransactionLineSidePanelToBePickedModule;
|
|
44025
|
+
exports["ɵqn"] = TransactionPickingHistoryModule;
|
|
44026
|
+
exports["ɵqo"] = TransactionPickingHistoryComponent;
|
|
44027
|
+
exports["ɵqp"] = TransactionLineSidePanelToBePickedComponent;
|
|
44028
|
+
exports["ɵqq"] = TransactionLineSidePanelPickedModule;
|
|
44029
|
+
exports["ɵqr"] = TransactionLineSidePanelPickedComponent;
|
|
44030
|
+
exports["ɵqs"] = TransactionLineSidePanelPlanningModule;
|
|
44031
|
+
exports["ɵqt"] = TransactionLineSidePanelPlanningComponent;
|
|
44032
|
+
exports["ɵqu"] = TransactionLineSidePanelSalesComponent;
|
|
44033
|
+
exports["ɵqv"] = TransactionLineSidePanelComponent;
|
|
44034
|
+
exports["ɵqw"] = TransactionCopyOrderModule;
|
|
44035
|
+
exports["ɵqx"] = DefaultConfirmCancelButtonsModule;
|
|
44036
|
+
exports["ɵqy"] = DefaultConfirmCancelButtonsComponent;
|
|
44037
|
+
exports["ɵqz"] = TransactionCopyOrderComponent;
|
|
43944
44038
|
exports["ɵr"] = CoCurrencyPipe;
|
|
43945
|
-
exports["ɵra"] =
|
|
43946
|
-
exports["ɵrb"] =
|
|
43947
|
-
exports["ɵrc"] =
|
|
43948
|
-
exports["ɵrd"] =
|
|
43949
|
-
exports["ɵre"] =
|
|
43950
|
-
exports["ɵrf"] =
|
|
43951
|
-
exports["ɵrg"] =
|
|
43952
|
-
exports["ɵrh"] =
|
|
43953
|
-
exports["ɵri"] =
|
|
43954
|
-
exports["ɵrj"] =
|
|
43955
|
-
exports["ɵrk"] =
|
|
43956
|
-
exports["ɵrl"] =
|
|
43957
|
-
exports["ɵrm"] =
|
|
43958
|
-
exports["ɵrn"] =
|
|
43959
|
-
exports["ɵro"] =
|
|
43960
|
-
exports["ɵrp"] =
|
|
43961
|
-
exports["ɵrq"] =
|
|
43962
|
-
exports["ɵrr"] =
|
|
43963
|
-
exports["ɵrs"] =
|
|
43964
|
-
exports["ɵrt"] =
|
|
43965
|
-
exports["ɵru"] =
|
|
43966
|
-
exports["ɵrv"] =
|
|
43967
|
-
exports["ɵrw"] =
|
|
43968
|
-
exports["ɵrx"] =
|
|
43969
|
-
exports["ɵry"] =
|
|
43970
|
-
exports["ɵrz"] =
|
|
44039
|
+
exports["ɵra"] = TransactionLinesSidePanelModule;
|
|
44040
|
+
exports["ɵrb"] = TransactionLinesSidePanelCashDeskModule;
|
|
44041
|
+
exports["ɵrc"] = TransactionCashRegisterPaymentDialogModule;
|
|
44042
|
+
exports["ɵrd"] = TransactionCashRegisterPaymentPinModule;
|
|
44043
|
+
exports["ɵre"] = TransactionCashRegisterPaymentButtonsModule;
|
|
44044
|
+
exports["ɵrf"] = TransactionCashRegisterPaymentButtonsComponent;
|
|
44045
|
+
exports["ɵrg"] = TransactionCashRegisterPaymentPinComponent;
|
|
44046
|
+
exports["ɵrh"] = TransactionCashRegisterPaymentCashModule;
|
|
44047
|
+
exports["ɵri"] = RegisteredPaymentModule;
|
|
44048
|
+
exports["ɵrj"] = RegisteredPaymentComponent;
|
|
44049
|
+
exports["ɵrk"] = TransactionCashRegisterPaymentCashComponent;
|
|
44050
|
+
exports["ɵrl"] = TransactionCashRegisterPaymentDoneModule;
|
|
44051
|
+
exports["ɵrm"] = TransactionCashRegisterPaymentDoneComponent;
|
|
44052
|
+
exports["ɵrn"] = TransactionCashRegisterPaymentMethodModule;
|
|
44053
|
+
exports["ɵro"] = TransactionCashRegisterPaymentMethodComponent;
|
|
44054
|
+
exports["ɵrp"] = TransactionCashRegisterPaymentQrCodeModule;
|
|
44055
|
+
exports["ɵrq"] = TransactionCashRegisterPaymentQrCodeComponent;
|
|
44056
|
+
exports["ɵrr"] = TransactionCashRegisterPaymentDialogComponent;
|
|
44057
|
+
exports["ɵrs"] = TransactionLinesSidePanelCashDeskComponent;
|
|
44058
|
+
exports["ɵrt"] = TransactionLinesSidePanelComponent;
|
|
44059
|
+
exports["ɵru"] = TransactionInternalComponent;
|
|
44060
|
+
exports["ɵrv"] = LineSelectionService;
|
|
44061
|
+
exports["ɵrw"] = TransactionGridModule;
|
|
44062
|
+
exports["ɵrx"] = TransactionLinesGridModule;
|
|
44063
|
+
exports["ɵry"] = TransactionBaseGridModule;
|
|
44064
|
+
exports["ɵrz"] = TransactionBaseGridComponent;
|
|
43971
44065
|
exports["ɵs"] = SafeStylePipe;
|
|
43972
|
-
exports["ɵsa"] =
|
|
43973
|
-
exports["ɵsb"] =
|
|
43974
|
-
exports["ɵsc"] =
|
|
43975
|
-
exports["ɵsd"] =
|
|
43976
|
-
exports["ɵse"] =
|
|
43977
|
-
exports["ɵsf"] =
|
|
43978
|
-
exports["ɵsg"] =
|
|
43979
|
-
exports["ɵsh"] =
|
|
43980
|
-
exports["ɵsi"] =
|
|
43981
|
-
exports["ɵsj"] =
|
|
43982
|
-
exports["ɵsk"] =
|
|
43983
|
-
exports["ɵsl"] =
|
|
43984
|
-
exports["ɵsm"] =
|
|
43985
|
-
exports["ɵsn"] =
|
|
43986
|
-
exports["ɵso"] =
|
|
43987
|
-
exports["ɵsp"] =
|
|
43988
|
-
exports["ɵsq"] =
|
|
43989
|
-
exports["ɵsr"] =
|
|
43990
|
-
exports["ɵss"] =
|
|
43991
|
-
exports["ɵst"] =
|
|
43992
|
-
exports["ɵsu"] =
|
|
43993
|
-
exports["ɵsv"] =
|
|
43994
|
-
exports["ɵsw"] =
|
|
43995
|
-
exports["ɵsx"] =
|
|
43996
|
-
exports["ɵsy"] =
|
|
43997
|
-
exports["ɵsz"] =
|
|
44066
|
+
exports["ɵsa"] = TransactionGridBaseComponent;
|
|
44067
|
+
exports["ɵsb"] = DialogTransactionLineWarehouseCcModule;
|
|
44068
|
+
exports["ɵsc"] = DialogTransactionLineWarehouseCcComponent;
|
|
44069
|
+
exports["ɵsd"] = DialogTransactionHeaderBranchModule;
|
|
44070
|
+
exports["ɵse"] = DialogTransactionHeaderBranchComponent;
|
|
44071
|
+
exports["ɵsf"] = TransactionLinesGridComponent;
|
|
44072
|
+
exports["ɵsg"] = TransactionOrderConfirmationGridModule;
|
|
44073
|
+
exports["ɵsh"] = TransactionOrderConfirmationGridComponent;
|
|
44074
|
+
exports["ɵsi"] = TransactionGridComponent;
|
|
44075
|
+
exports["ɵsj"] = SearchViewModeService;
|
|
44076
|
+
exports["ɵsk"] = TransactionSearchSalesOrderTileModule;
|
|
44077
|
+
exports["ɵsl"] = TransactionSearchSalesOrderTileComponent;
|
|
44078
|
+
exports["ɵsm"] = TransactionSearchTileBaseComponent;
|
|
44079
|
+
exports["ɵsn"] = TransactionSearchPurchaseOrderTileModule;
|
|
44080
|
+
exports["ɵso"] = TransactionSearchPurchaseOrderTileComponent;
|
|
44081
|
+
exports["ɵsp"] = TransactionSearchSalesOrderGridModule;
|
|
44082
|
+
exports["ɵsq"] = TransactionSearchSalesOrderGridComponent;
|
|
44083
|
+
exports["ɵsr"] = TransactionSearchGridBaseComponent;
|
|
44084
|
+
exports["ɵss"] = TransactionSearchPurchaseOrderGridModule;
|
|
44085
|
+
exports["ɵst"] = TransactionSearchPurchaseOrderGridComponent;
|
|
44086
|
+
exports["ɵsu"] = TransactionSearchSalesQuotationGridModule;
|
|
44087
|
+
exports["ɵsv"] = TransactionSearchSalesQuotationGridComponent;
|
|
44088
|
+
exports["ɵsw"] = TransactionSearchPosGridModule;
|
|
44089
|
+
exports["ɵsx"] = TransactionSearchPosGridComponent;
|
|
44090
|
+
exports["ɵsy"] = TransactionSearchSalesQuotationTileModule;
|
|
44091
|
+
exports["ɵsz"] = TransactionSearchSalesQuotationTileComponent;
|
|
43998
44092
|
exports["ɵt"] = SafeHtmlPipe;
|
|
43999
|
-
exports["ɵta"] =
|
|
44000
|
-
exports["ɵtb"] =
|
|
44001
|
-
exports["ɵtc"] =
|
|
44002
|
-
exports["ɵtd"] =
|
|
44003
|
-
exports["ɵte"] =
|
|
44004
|
-
exports["ɵtf"] =
|
|
44005
|
-
exports["ɵtg"] =
|
|
44006
|
-
exports["ɵth"] =
|
|
44007
|
-
exports["ɵti"] =
|
|
44008
|
-
exports["ɵtj"] =
|
|
44009
|
-
exports["ɵtk"] =
|
|
44010
|
-
exports["ɵtl"] =
|
|
44011
|
-
exports["ɵtm"] =
|
|
44012
|
-
exports["ɵtn"] =
|
|
44013
|
-
exports["ɵto"] =
|
|
44014
|
-
exports["ɵtp"] =
|
|
44015
|
-
exports["ɵtq"] =
|
|
44016
|
-
exports["ɵtr"] =
|
|
44017
|
-
exports["ɵts"] =
|
|
44018
|
-
exports["ɵtt"] =
|
|
44019
|
-
exports["ɵtu"] =
|
|
44020
|
-
exports["ɵtv"] =
|
|
44021
|
-
exports["ɵtw"] =
|
|
44022
|
-
exports["ɵtx"] =
|
|
44023
|
-
exports["ɵty"] =
|
|
44024
|
-
exports["ɵtz"] =
|
|
44093
|
+
exports["ɵta"] = TransactionSearchPosOrderTileModule;
|
|
44094
|
+
exports["ɵtb"] = TransactionSearchPosOrderTileComponent;
|
|
44095
|
+
exports["ɵtc"] = TransactionSearchGridModule;
|
|
44096
|
+
exports["ɵtd"] = TransactionSearchGridComponent;
|
|
44097
|
+
exports["ɵte"] = TransactionSearchTileModule;
|
|
44098
|
+
exports["ɵtf"] = TransactionSearchTileComponent;
|
|
44099
|
+
exports["ɵtg"] = TransactionSalesOrderFilterModule;
|
|
44100
|
+
exports["ɵth"] = TransactionSalesOrderFilterContentOrderModule;
|
|
44101
|
+
exports["ɵti"] = TransactionFilterItemModule;
|
|
44102
|
+
exports["ɵtj"] = TransactionFilterItemComponent;
|
|
44103
|
+
exports["ɵtk"] = TransactionSalesOrderFilterContentOrderComponent;
|
|
44104
|
+
exports["ɵtl"] = TransactionFilterContentBaseComponent;
|
|
44105
|
+
exports["ɵtm"] = TransactionSalesOrderFilterContentLogisticsModule;
|
|
44106
|
+
exports["ɵtn"] = TransactionFilterHistoricStateModule;
|
|
44107
|
+
exports["ɵto"] = TransactionFilterHistoricStateComponent;
|
|
44108
|
+
exports["ɵtp"] = TransactionSalesOrderFilterContentLogisticsComponent;
|
|
44109
|
+
exports["ɵtq"] = TransactionSalesOrderFilterContentArticleModule;
|
|
44110
|
+
exports["ɵtr"] = TransactionSalesOrderFilterContentArticleComponent;
|
|
44111
|
+
exports["ɵts"] = TransactionSalesOrderFilterComponent;
|
|
44112
|
+
exports["ɵtt"] = TransactionFilterBaseComponent;
|
|
44113
|
+
exports["ɵtu"] = TransactionPurchaseOrderFilterModule;
|
|
44114
|
+
exports["ɵtv"] = TransactionPurchaseOrderFilterContentOrderModule;
|
|
44115
|
+
exports["ɵtw"] = TransactionPurchaseOrderFilterContentOrderComponent;
|
|
44116
|
+
exports["ɵtx"] = TransactionPurchaseOrderFilterContentLogisticsModule;
|
|
44117
|
+
exports["ɵty"] = TransactionPurchaseOrderFilterContentLogisticsComponent;
|
|
44118
|
+
exports["ɵtz"] = TransactionPurchaseOrderFilterContentArticleModule;
|
|
44025
44119
|
exports["ɵu"] = PrependPipe;
|
|
44026
|
-
exports["ɵua"] =
|
|
44027
|
-
exports["ɵub"] =
|
|
44028
|
-
exports["ɵuc"] =
|
|
44029
|
-
exports["ɵud"] =
|
|
44030
|
-
exports["ɵue"] =
|
|
44031
|
-
exports["ɵuf"] =
|
|
44032
|
-
exports["ɵug"] =
|
|
44033
|
-
exports["ɵuh"] =
|
|
44034
|
-
exports["ɵui"] =
|
|
44035
|
-
exports["ɵuj"] =
|
|
44036
|
-
exports["ɵuk"] =
|
|
44037
|
-
exports["ɵul"] =
|
|
44038
|
-
exports["ɵum"] =
|
|
44039
|
-
exports["ɵun"] =
|
|
44040
|
-
exports["ɵuo"] =
|
|
44120
|
+
exports["ɵua"] = TransactionPurchaseOrderFilterContentArticleComponent;
|
|
44121
|
+
exports["ɵub"] = TransactionPurchaseOrderFilterComponent;
|
|
44122
|
+
exports["ɵuc"] = TransactionSalesQuotationFilterModule;
|
|
44123
|
+
exports["ɵud"] = TransactionSalesQuotationFilterContentOrderModule;
|
|
44124
|
+
exports["ɵue"] = TransactionSalesQuotationFilterContentOrderComponent;
|
|
44125
|
+
exports["ɵuf"] = TransactionSalesQuotationFilterContentLogisticsModule;
|
|
44126
|
+
exports["ɵug"] = TransactionSalesQuotationFilterContentLogisticsComponent;
|
|
44127
|
+
exports["ɵuh"] = TransactionSalesQuotationFilterContentArticleModule;
|
|
44128
|
+
exports["ɵui"] = TransactionSalesQuotationFilterContentArticleComponent;
|
|
44129
|
+
exports["ɵuj"] = TransactionSalesQuotationFilterComponent;
|
|
44130
|
+
exports["ɵuk"] = SearchFeatureModule;
|
|
44131
|
+
exports["ɵul"] = SearchHeaderButtonsModule;
|
|
44132
|
+
exports["ɵum"] = SearchHeaderButtonsComponent;
|
|
44133
|
+
exports["ɵun"] = SearchFilterPanelModule;
|
|
44134
|
+
exports["ɵuo"] = SearchFilterPanelComponent;
|
|
44135
|
+
exports["ɵup"] = SearchComponent;
|
|
44136
|
+
exports["ɵuq"] = TransactionTagComponent;
|
|
44041
44137
|
exports["ɵv"] = ConfirmationDialogComponent;
|
|
44042
44138
|
exports["ɵw"] = DialogBaseComponent;
|
|
44043
44139
|
exports["ɵx"] = IconCacheService;
|