@colijnit/transaction 257.1.0 → 257.1.2
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 +1109 -1034
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +653 -654
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +654 -655
- package/esm2015/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +3 -3
- package/esm2015/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +3 -3
- package/esm2015/lib/component/checkout/checkout.component.js +4 -4
- package/esm2015/lib/component/checkout/checkout.module.js +6 -8
- package/esm2015/lib/component/core/base/transaction-lines-base.component.js +41 -4
- package/esm2015/lib/component/purchase-confirmation-lines/purchase-confirmation-lines.component.js +10 -2
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.js +143 -111
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.js +4 -2
- package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line-base.component.js +2 -2
- package/esm2015/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.component.js +37 -21
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +16 -14
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +4 -36
- package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +8 -37
- package/esm2015/lib/component/transaction-lines-popup/transaction-lines-popup.component.js +15 -10
- package/esm2015/lib/component/transaction-navigation-button/transaction-navigation-button.component.js +4 -2
- package/esm2015/lib/component/transaction-navigation-button-list/transaction-navigation-button-list.component.js +12 -5
- package/esm2015/lib/enum/checkout-cfg-name.enum.js +4 -4
- package/esm2015/lib/model/transaction-line-view-model.js +7 -0
- package/esm2015/lib/service/line-selection.service.js +18 -3
- package/esm2015/lib/service/purchase-confirmation.service.js +48 -1
- package/esm2015/lib/service/transaction-base.service.js +10 -6
- package/esm2015/lib/service/transaction-event.service.js +2 -1
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +583 -508
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +2 -2
- package/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.d.ts +2 -2
- package/lib/component/checkout/checkout.component.d.ts +2 -2
- package/lib/component/core/base/transaction-lines-base.component.d.ts +23 -2
- package/lib/component/transaction-line/transaction-line-label/style/_layout.scss +6 -0
- package/lib/component/transaction-line/transaction-overview-line/style/_layout.scss +15 -0
- package/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.d.ts +8 -2
- package/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.component.d.ts +16 -9
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +5 -4
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +0 -19
- package/lib/component/transaction-lines/transaction-lines.component.d.ts +1 -19
- package/lib/component/transaction-lines-popup/style/_layout.scss +4 -0
- package/lib/component/transaction-lines-popup/transaction-lines-popup.component.d.ts +3 -1
- package/lib/component/transaction-navigation-button/transaction-navigation-button.component.d.ts +1 -0
- package/lib/component/transaction-navigation-button-list/style/_layout.scss +2 -0
- package/lib/component/transaction-navigation-button-list/transaction-navigation-button-list.component.d.ts +4 -0
- package/lib/enum/checkout-cfg-name.enum.d.ts +3 -3
- package/lib/model/transaction-line-view-model.d.ts +7 -0
- package/lib/service/line-selection.service.d.ts +6 -0
- package/lib/service/purchase-confirmation.service.d.ts +14 -4
- package/lib/service/transaction-event.service.d.ts +1 -0
- package/package.json +1 -1
- package/esm2015/lib/component/checkout/service/checkout-screen-configuration.service.js +0 -48
- package/lib/component/checkout/service/checkout-screen-configuration.service.d.ts +0 -12
|
@@ -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 = "1
|
|
36
|
+
this.symVer = "257.1.2";
|
|
37
|
+
this.publishDate = "16-1-2025 18:39:46";
|
|
38
38
|
}
|
|
39
39
|
return Version;
|
|
40
40
|
}());
|
|
@@ -1565,6 +1565,7 @@
|
|
|
1565
1565
|
this.transactionSet = new rxjs.Subject();
|
|
1566
1566
|
this.purchaseOrderNavigation = new rxjs.Subject();
|
|
1567
1567
|
this.purchaseExistingOrderNavigation = new rxjs.Subject();
|
|
1568
|
+
this.serviceExistingOrderNavigation = new rxjs.Subject();
|
|
1568
1569
|
this.salesQuotationOrderNavigation = new rxjs.Subject();
|
|
1569
1570
|
this.relationNavigation = new rxjs.Subject();
|
|
1570
1571
|
this.articleNavigation = new rxjs.Subject();
|
|
@@ -14904,7 +14905,7 @@
|
|
|
14904
14905
|
case 2:
|
|
14905
14906
|
refTransactions = _a.sent();
|
|
14906
14907
|
serviceOrders = refs.filter(function (r) { return r.refTransactionType === transactionKind_enum.TransactionKind.ServiceOrder; });
|
|
14907
|
-
return [4 /*yield*/, this.makeRefTransactionList(serviceOrders)];
|
|
14908
|
+
return [4 /*yield*/, this.makeRefTransactionList(serviceOrders, transLine.lineNr)];
|
|
14908
14909
|
case 3:
|
|
14909
14910
|
refServiceTransactions = _a.sent();
|
|
14910
14911
|
_a.label = 4;
|
|
@@ -14925,20 +14926,25 @@
|
|
|
14925
14926
|
});
|
|
14926
14927
|
});
|
|
14927
14928
|
};
|
|
14928
|
-
TransactionBaseService.prototype.makeRefTransactionList = function (inputRefTransactions) {
|
|
14929
|
+
TransactionBaseService.prototype.makeRefTransactionList = function (inputRefTransactions, lineNr) {
|
|
14930
|
+
if (lineNr === void 0) { lineNr = NaN; }
|
|
14929
14931
|
return __awaiter(this, void 0, void 0, function () {
|
|
14930
|
-
var refTransactions, i, request, transSearchResult;
|
|
14932
|
+
var refTransactions, inputTransactions, i, request, transSearchResult;
|
|
14931
14933
|
return __generator(this, function (_a) {
|
|
14932
14934
|
switch (_a.label) {
|
|
14933
14935
|
case 0:
|
|
14934
14936
|
refTransactions = [];
|
|
14937
|
+
inputTransactions = inputRefTransactions;
|
|
14938
|
+
if (!isNaN(lineNr)) {
|
|
14939
|
+
inputTransactions = inputRefTransactions.filter(function (r) { return r.refRowNumbers.split(",").indexOf(lineNr.toString()) > -1; });
|
|
14940
|
+
}
|
|
14935
14941
|
i = 0;
|
|
14936
14942
|
_a.label = 1;
|
|
14937
14943
|
case 1:
|
|
14938
|
-
if (!(i <
|
|
14944
|
+
if (!(i < inputTransactions.length)) return [3 /*break*/, 4];
|
|
14939
14945
|
request = new transactionSearchViewRequest.TransactionSearchViewRequest();
|
|
14940
|
-
request.transactionKind =
|
|
14941
|
-
request.transNr = parseInt(
|
|
14946
|
+
request.transactionKind = inputTransactions[i].refTransactionType;
|
|
14947
|
+
request.transNr = parseInt(inputTransactions[i].refTransactionNr);
|
|
14942
14948
|
return [4 /*yield*/, this.searchTransactions(request)];
|
|
14943
14949
|
case 2:
|
|
14944
14950
|
transSearchResult = _a.sent();
|
|
@@ -19505,56 +19511,6 @@
|
|
|
19505
19511
|
},] }
|
|
19506
19512
|
];
|
|
19507
19513
|
|
|
19508
|
-
var CheckoutScreenConfigurationService = /** @class */ (function (_super) {
|
|
19509
|
-
__extends(CheckoutScreenConfigurationService, _super);
|
|
19510
|
-
function CheckoutScreenConfigurationService(_transactionAdapterService) {
|
|
19511
|
-
var _this = _super.call(this) || this;
|
|
19512
|
-
_this._transactionAdapterService = _transactionAdapterService;
|
|
19513
|
-
_this.screenModuleName = "Checkout";
|
|
19514
|
-
_this._screenConfigurationObjectCache = new Map();
|
|
19515
|
-
return _this;
|
|
19516
|
-
}
|
|
19517
|
-
CheckoutScreenConfigurationService.prototype.loadConfigForModule = function (params, insertRights) {
|
|
19518
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
19519
|
-
var transactionKind, config;
|
|
19520
|
-
return __generator(this, function (_a) {
|
|
19521
|
-
switch (_a.label) {
|
|
19522
|
-
case 0:
|
|
19523
|
-
if (!params) return [3 /*break*/, 3];
|
|
19524
|
-
transactionKind = params[0];
|
|
19525
|
-
if (!!this._screenConfigurationLoaded(transactionKind)) return [3 /*break*/, 2];
|
|
19526
|
-
return [4 /*yield*/, this._transactionAdapterService.getObjectConfiguration(this.screenModuleName, transactionKind)];
|
|
19527
|
-
case 1:
|
|
19528
|
-
config = _a.sent();
|
|
19529
|
-
if (config) {
|
|
19530
|
-
this._setScreenConfigurationObjectCache(transactionKind, config);
|
|
19531
|
-
return [2 /*return*/, config];
|
|
19532
|
-
}
|
|
19533
|
-
return [3 /*break*/, 3];
|
|
19534
|
-
case 2: return [2 /*return*/, Promise.resolve(this._screenConfigurationObjectCache.get(transactionKind))];
|
|
19535
|
-
case 3: return [2 /*return*/, Promise.resolve(null)];
|
|
19536
|
-
}
|
|
19537
|
-
});
|
|
19538
|
-
});
|
|
19539
|
-
};
|
|
19540
|
-
CheckoutScreenConfigurationService.prototype._setScreenConfigurationObjectCache = function (transactionKind, objects) {
|
|
19541
|
-
this._screenConfigurationObjectCache.set(transactionKind, objects);
|
|
19542
|
-
};
|
|
19543
|
-
CheckoutScreenConfigurationService.prototype._screenConfigurationLoaded = function (transactionKind) {
|
|
19544
|
-
return this._screenConfigurationObjectCache.has(transactionKind);
|
|
19545
|
-
};
|
|
19546
|
-
return CheckoutScreenConfigurationService;
|
|
19547
|
-
}(corecomponents_v12.BaseModuleScreenConfigService));
|
|
19548
|
-
CheckoutScreenConfigurationService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function CheckoutScreenConfigurationService_Factory() { return new CheckoutScreenConfigurationService(i0__namespace.ɵɵinject(TransactionConnectorAdapterService)); }, token: CheckoutScreenConfigurationService, providedIn: "root" });
|
|
19549
|
-
CheckoutScreenConfigurationService.decorators = [
|
|
19550
|
-
{ type: i0.Injectable, args: [{
|
|
19551
|
-
providedIn: "root"
|
|
19552
|
-
},] }
|
|
19553
|
-
];
|
|
19554
|
-
CheckoutScreenConfigurationService.ctorParameters = function () { return [
|
|
19555
|
-
{ type: TransactionConnectorAdapterService }
|
|
19556
|
-
]; };
|
|
19557
|
-
|
|
19558
19514
|
var CheckoutModuleService = /** @class */ (function (_super) {
|
|
19559
19515
|
__extends(CheckoutModuleService, _super);
|
|
19560
19516
|
function CheckoutModuleService() {
|
|
@@ -19570,9 +19526,9 @@
|
|
|
19570
19526
|
|
|
19571
19527
|
var CheckoutCfgName;
|
|
19572
19528
|
(function (CheckoutCfgName) {
|
|
19573
|
-
CheckoutCfgName["YourDataHeader"] = "
|
|
19574
|
-
CheckoutCfgName["DeliveryHeader"] = "
|
|
19575
|
-
CheckoutCfgName["OverviewAndPaymentHeader"] = "
|
|
19529
|
+
CheckoutCfgName["YourDataHeader"] = "relationInfoHeader";
|
|
19530
|
+
CheckoutCfgName["DeliveryHeader"] = "deliveryInfoHeader";
|
|
19531
|
+
CheckoutCfgName["OverviewAndPaymentHeader"] = "paymentInfoHeader";
|
|
19576
19532
|
CheckoutCfgName["GeneralHeader"] = "generalHeader";
|
|
19577
19533
|
CheckoutCfgName["Title"] = "title";
|
|
19578
19534
|
CheckoutCfgName["OrderButton"] = "orderButton";
|
|
@@ -19868,7 +19824,7 @@
|
|
|
19868
19824
|
providers: [
|
|
19869
19825
|
TransactionHeaderService,
|
|
19870
19826
|
{ provide: corecomponents_v12.BaseModuleService, useExisting: CheckoutModuleService },
|
|
19871
|
-
{ provide: corecomponents_v12.BaseModuleScreenConfigService, useExisting:
|
|
19827
|
+
{ provide: corecomponents_v12.BaseModuleScreenConfigService, useExisting: TransactionScreenConfigurationService },
|
|
19872
19828
|
],
|
|
19873
19829
|
encapsulation: i0.ViewEncapsulation.None
|
|
19874
19830
|
},] }
|
|
@@ -19879,7 +19835,7 @@
|
|
|
19879
19835
|
{ type: TransactionRelationService },
|
|
19880
19836
|
{ type: DictionaryService },
|
|
19881
19837
|
{ type: TransactionDialogService },
|
|
19882
|
-
{ type:
|
|
19838
|
+
{ type: TransactionScreenConfigurationService }
|
|
19883
19839
|
]; };
|
|
19884
19840
|
CheckoutComponent.propDecorators = {
|
|
19885
19841
|
stepper: [{ type: i0.ViewChild, args: ["stepper",] }],
|
|
@@ -20442,7 +20398,7 @@
|
|
|
20442
20398
|
{ type: corecomponents_v12.FormMasterService },
|
|
20443
20399
|
{ type: TransactionRelationService },
|
|
20444
20400
|
{ type: TransactionDialogService },
|
|
20445
|
-
{ type:
|
|
20401
|
+
{ type: TransactionScreenConfigurationService },
|
|
20446
20402
|
{ type: RelationSuggestionsService }
|
|
20447
20403
|
]; };
|
|
20448
20404
|
CheckoutOverviewRelationEditComponent.propDecorators = {
|
|
@@ -20608,7 +20564,7 @@
|
|
|
20608
20564
|
CheckoutOverviewDeliveryEditComponent.ctorParameters = function () { return [
|
|
20609
20565
|
{ type: DictionaryService },
|
|
20610
20566
|
{ type: corecomponents_v12.FormMasterService },
|
|
20611
|
-
{ type:
|
|
20567
|
+
{ type: TransactionScreenConfigurationService },
|
|
20612
20568
|
{ type: TransactionService },
|
|
20613
20569
|
{ type: IconCacheService }
|
|
20614
20570
|
]; };
|
|
@@ -23967,8 +23923,17 @@
|
|
|
23967
23923
|
return ColorUtils;
|
|
23968
23924
|
}());
|
|
23969
23925
|
|
|
23926
|
+
var TransactionLineViewModel = /** @class */ (function () {
|
|
23927
|
+
function TransactionLineViewModel(l) {
|
|
23928
|
+
this.showColor = false;
|
|
23929
|
+
this.line = l;
|
|
23930
|
+
}
|
|
23931
|
+
return TransactionLineViewModel;
|
|
23932
|
+
}());
|
|
23933
|
+
|
|
23970
23934
|
var PurchaseConfirmationService = /** @class */ (function () {
|
|
23971
23935
|
function PurchaseConfirmationService(_transactionConnectorService, _transactionEventService) {
|
|
23936
|
+
var _this = this;
|
|
23972
23937
|
this._transactionConnectorService = _transactionConnectorService;
|
|
23973
23938
|
this._transactionEventService = _transactionEventService;
|
|
23974
23939
|
this.confirmationNeeded = new rxjs.BehaviorSubject(undefined);
|
|
@@ -23976,7 +23941,24 @@
|
|
|
23976
23941
|
this.confirmationAnalysisResult = [];
|
|
23977
23942
|
this.ordersTotal = new rxjs.BehaviorSubject(0);
|
|
23978
23943
|
this.ordersTotalObservable = this.ordersTotal.asObservable();
|
|
23944
|
+
this.transactionLinesViewModels = [];
|
|
23945
|
+
this._transactionLines = [];
|
|
23946
|
+
this._subs = [];
|
|
23947
|
+
this._subs.push(this._transactionEventService.orderConfirmationDropped.subscribe(function (data) {
|
|
23948
|
+
_this._updateViewModels(data);
|
|
23949
|
+
}));
|
|
23979
23950
|
}
|
|
23951
|
+
Object.defineProperty(PurchaseConfirmationService.prototype, "transactionLines", {
|
|
23952
|
+
get: function () {
|
|
23953
|
+
return this._transactionLines;
|
|
23954
|
+
},
|
|
23955
|
+
set: function (value) {
|
|
23956
|
+
this._transactionLines = value;
|
|
23957
|
+
this._prepareViewModels();
|
|
23958
|
+
},
|
|
23959
|
+
enumerable: false,
|
|
23960
|
+
configurable: true
|
|
23961
|
+
});
|
|
23980
23962
|
Object.defineProperty(PurchaseConfirmationService.prototype, "confirmationAnalysisId", {
|
|
23981
23963
|
get: function () {
|
|
23982
23964
|
return this._confirmationAnalysisId;
|
|
@@ -23991,6 +23973,9 @@
|
|
|
23991
23973
|
PurchaseConfirmationService.prototype.setOrdersTotal = function (value) {
|
|
23992
23974
|
this.ordersTotal.next(value);
|
|
23993
23975
|
};
|
|
23976
|
+
PurchaseConfirmationService.prototype.ngOnDestroy = function () {
|
|
23977
|
+
this._subs.forEach(function (s) { return s.unsubscribe(); });
|
|
23978
|
+
};
|
|
23994
23979
|
PurchaseConfirmationService.prototype.reset = function () {
|
|
23995
23980
|
this.confirmationAnalysisId = undefined;
|
|
23996
23981
|
this._transactionEventService.orderConfirmationDropped.next(undefined);
|
|
@@ -24075,6 +24060,37 @@
|
|
|
24075
24060
|
});
|
|
24076
24061
|
});
|
|
24077
24062
|
};
|
|
24063
|
+
PurchaseConfirmationService.prototype._updateViewModels = function (data) {
|
|
24064
|
+
if (data) {
|
|
24065
|
+
this.transactionLinesViewModels.forEach(function (vm) {
|
|
24066
|
+
if (vm.line && vm.line.lineNr === data.lineNr) {
|
|
24067
|
+
vm.line.linkedAnalysisResultId = data.analysisResultId;
|
|
24068
|
+
vm.showColor = true;
|
|
24069
|
+
vm.color = data.color;
|
|
24070
|
+
}
|
|
24071
|
+
else if (vm.line && vm.line.linkedAnalysisResultId === data.analysisResultId) {
|
|
24072
|
+
vm.line.linkedAnalysisResultId = undefined;
|
|
24073
|
+
vm.showColor = false;
|
|
24074
|
+
vm.color = "";
|
|
24075
|
+
}
|
|
24076
|
+
});
|
|
24077
|
+
}
|
|
24078
|
+
else {
|
|
24079
|
+
this.transactionLinesViewModels.forEach(function (vm) {
|
|
24080
|
+
vm.line.linkedAnalysisResultId = undefined;
|
|
24081
|
+
vm.showColor = false;
|
|
24082
|
+
vm.color = "";
|
|
24083
|
+
});
|
|
24084
|
+
}
|
|
24085
|
+
};
|
|
24086
|
+
PurchaseConfirmationService.prototype._prepareViewModels = function () {
|
|
24087
|
+
var _this = this;
|
|
24088
|
+
this.transactionLinesViewModels.length = 0;
|
|
24089
|
+
this._transactionLines.forEach(function (t) {
|
|
24090
|
+
var viewModel = new TransactionLineViewModel(t);
|
|
24091
|
+
_this.transactionLinesViewModels.push(viewModel);
|
|
24092
|
+
});
|
|
24093
|
+
};
|
|
24078
24094
|
return PurchaseConfirmationService;
|
|
24079
24095
|
}());
|
|
24080
24096
|
PurchaseConfirmationService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function PurchaseConfirmationService_Factory() { return new PurchaseConfirmationService(i0__namespace.ɵɵinject(TransactionConnectorService), i0__namespace.ɵɵinject(TransactionEventService)); }, token: PurchaseConfirmationService, providedIn: "root" });
|
|
@@ -25146,6 +25162,7 @@
|
|
|
25146
25162
|
_this.transactionService = transactionService;
|
|
25147
25163
|
_this.changeDetector = changeDetector;
|
|
25148
25164
|
_this.category = TransactionTypeCategory;
|
|
25165
|
+
_this.icons = Icon;
|
|
25149
25166
|
_this.descriptionDblClick = new i0.EventEmitter();
|
|
25150
25167
|
_this.stock = stockStatus_enum.StockStatus.Low;
|
|
25151
25168
|
_this.noLabel = false; // Temp test without labels
|
|
@@ -25167,11 +25184,23 @@
|
|
|
25167
25184
|
lineDiscountSpecial: _this.cfgNames.LineDiscountSpecial,
|
|
25168
25185
|
lineDiscountQuantum: _this.cfgNames.LineDiscountQuantum
|
|
25169
25186
|
};
|
|
25187
|
+
_this._subs = [];
|
|
25170
25188
|
return _this;
|
|
25171
25189
|
}
|
|
25172
25190
|
TransactionOverviewLineComponent.prototype.showClass = function () {
|
|
25173
25191
|
return true;
|
|
25174
25192
|
};
|
|
25193
|
+
TransactionOverviewLineComponent.prototype.ngOnInit = function () {
|
|
25194
|
+
var _this = this;
|
|
25195
|
+
_super.prototype.ngOnInit.call(this);
|
|
25196
|
+
this._subs.push(this.transactionEventService.transactionLineRefTransactionsChanged.subscribe(function (value) {
|
|
25197
|
+
_this.detectChanges();
|
|
25198
|
+
}));
|
|
25199
|
+
};
|
|
25200
|
+
TransactionOverviewLineComponent.prototype.ngOnDestroy = function () {
|
|
25201
|
+
this._subs.forEach(function (s) { return s.unsubscribe(); });
|
|
25202
|
+
_super.prototype.ngOnDestroy.call(this);
|
|
25203
|
+
};
|
|
25175
25204
|
TransactionOverviewLineComponent.prototype.handleCheckBoxValueChanged = function (value) {
|
|
25176
25205
|
if (value) {
|
|
25177
25206
|
this.transactionLine.orderLineSetCode = this.orderLineSetService.currentOrderLineSetCode;
|
|
@@ -25181,6 +25210,9 @@
|
|
|
25181
25210
|
}
|
|
25182
25211
|
this.transactionService.changeTransactionLineOrderLineSet(this.transactionInfo.uuid, this.transactionLine.uuid, this.transactionLine.orderLineSetCode);
|
|
25183
25212
|
};
|
|
25213
|
+
TransactionOverviewLineComponent.prototype.handleServiceExistingOrderNavigation = function (transNr) {
|
|
25214
|
+
this.transactionEventService.serviceExistingOrderNavigation.next(transNr);
|
|
25215
|
+
};
|
|
25184
25216
|
TransactionOverviewLineComponent.prototype.onDescriptionDblClick = function () {
|
|
25185
25217
|
this.descriptionDblClick.emit();
|
|
25186
25218
|
};
|
|
@@ -25189,7 +25221,7 @@
|
|
|
25189
25221
|
TransactionOverviewLineComponent.decorators = [
|
|
25190
25222
|
{ type: i0.Component, args: [{
|
|
25191
25223
|
selector: "co-transaction-overview-line",
|
|
25192
|
-
template: "\n
|
|
25224
|
+
template: "\n <co-transaction-base-line\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [preview]=\"preview\"\n [isFirst]=\"isFirst\"\n [checkbox]=\"orderLineSetService.currentOrderLineSetCode && (!transactionLine.orderLineSetCode || transactionLine.orderLineSetCode === orderLineSetService.currentOrderLineSetCode)\"\n [checkboxValue]=\"orderLineSetService.currentOrderLineSetCode === transactionLine.orderLineSetCode\"\n (checkboxValueChanged)=\"handleCheckBoxValueChanged($event)\">\n <ng-container *ngIf=\"transactionLine.isArticle\">\n <div class=\"transaction-line-wrapper\">\n <div *ngIf=!preview class=\"transaction-line-extended-wrapper\">\n <div class=\"column1\">\n <co-transaction-line-statusbar\n [screenConfigurationObject]=\"cfgNames.StatusBar\"\n [configNames]=\"statusBarConfigNames\"\n [activeCategory]=\"category.SalesOrderOverview\"></co-transaction-line-statusbar>\n </div>\n <div class=\"column2 big-column\">\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'COMMISSION_CODE'\"></co-transaction-line-label>\n <co-transaction-line-commission-button\n [screenConfigurationObject]=\"cfgNames.LineCommission\"\n ></co-transaction-line-commission-button>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\"\n *ngIf=\"transactionLine.refServiceTransactions && transactionLine.refServiceTransactions.length > 0\">\n <div class=\"inside-field\">\n <co-transaction-line-label *ngIf=\"transactionLine.refServiceTransactions.length > 1\" class=\"red-label\"\n [insideLabel]=\"'SERVICE_ORDERS'\"></co-transaction-line-label>\n <co-transaction-navigation-button-list class=\"red-navigation-button\"\n [showRelationButton]=\"false\"\n [navigationButtonIcon]=\"icons.ScrewdriverWrenchRegular\"\n [screenConfigurationObject]=\"cfgNames.LineRefTransactions\"\n [refTransactions]=\"transactionLine.refServiceTransactions\"\n [emptyLabel]=\"'NO_SERVICE_ORDER' | localize\"\n [insideLabel]=\"'SERVICE_ORDER' | localize\"\n (transactionClick)=\"handleServiceExistingOrderNavigation($event)\"\n ></co-transaction-navigation-button-list>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'WAREHOUSE'\"></co-transaction-line-label>\n <co-transaction-line-warehouse-button\n [screenConfigurationObject]=\"cfgNames.LineWarehouse\"\n ></co-transaction-line-warehouse-button>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'DIRECT_SELL'\"></co-transaction-line-label>\n <co-transaction-line-direct-sell-button\n ></co-transaction-line-direct-sell-button>\n </div>\n </div>\n </div>\n <div class=\"column3 min\">\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'DELIVERY_METHOD'\"></co-transaction-line-label>\n <co-transaction-line-delivery-button\n [screenConfigurationObject]=\"cfgNames.LineDeliveryMethod\"\n ></co-transaction-line-delivery-button>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'DELIVERY_DATE'\"></co-transaction-line-label>\n <co-transaction-line-delivery-date-button class=\"transaction-line-delivery-date two-column\"\n [screenConfigurationObject]=\"cfgNames.LineDeliveryDate\"\n ></co-transaction-line-delivery-date-button>\n </div>\n </div>\n </div>\n <div class=\"column4\">\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'VAT'\"></co-transaction-line-label>\n <co-transaction-line-vat-button *ngIf=\"!preview\"\n [screenConfigurationObject]=\"cfgNames.LineVat\"\n ></co-transaction-line-vat-button>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'PRICE'\"></co-transaction-line-label>\n <co-transaction-line-price class=\"transaction-line-totals-price price\"\n [screenConfigurationObject]=\"cfgNames.LinePrice\"\n [showLabel]=\"false\"\n [defaultEditMode]=\"false\"\n ></co-transaction-line-price>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'DISCOUNT'\"></co-transaction-line-label>\n <co-transaction-line-discount-button *ngIf=\"!preview\"\n [screenConfigurationObject]=\"cfgNames.LineDiscount\"\n [configNames]=\"discountConfigNames\"\n ></co-transaction-line-discount-button>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'QUANTITY'\"></co-transaction-line-label>\n <co-transaction-line-amount class=\"amount-number-picker\"\n [screenConfigurationObject]=\"cfgNames.LineAmount\"\n ></co-transaction-line-amount>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'TOTAL'\"></co-transaction-line-label>\n <co-editable-label class=\"transaction-line-totals-total price\"\n [model]=\"transactionLine.netLineTotal | coCurrency: true\"\n [editModel]=\"transactionLine.netLineTotal\"\n [readonly]=\"true\"\n ></co-editable-label>\n </div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </co-transaction-base-line>\n ",
|
|
25193
25225
|
encapsulation: i0.ViewEncapsulation.None,
|
|
25194
25226
|
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
25195
25227
|
},] }
|
|
@@ -26634,7 +26666,7 @@
|
|
|
26634
26666
|
try {
|
|
26635
26667
|
var droppedData = JSON.parse(event.dataTransfer.getData('orderconfirmationanalysis'));
|
|
26636
26668
|
this._purchaseConfirmationService.linkAnalysisToTransactionLine(this.transactionLine, droppedData);
|
|
26637
|
-
this.
|
|
26669
|
+
this.detectChanges();
|
|
26638
26670
|
}
|
|
26639
26671
|
catch (e) {
|
|
26640
26672
|
}
|
|
@@ -34250,6 +34282,162 @@
|
|
|
34250
34282
|
},] }
|
|
34251
34283
|
];
|
|
34252
34284
|
|
|
34285
|
+
var TransactionNavigationButtonListComponent = /** @class */ (function () {
|
|
34286
|
+
function TransactionNavigationButtonListComponent() {
|
|
34287
|
+
this.icons = Icon;
|
|
34288
|
+
this.insideLabel = 'SALES_ORDER';
|
|
34289
|
+
this.navigationButtonIcon = this.icons.DetailView;
|
|
34290
|
+
this.refTransactions = [];
|
|
34291
|
+
this.showRelationButton = true;
|
|
34292
|
+
this.relationClick = new i0.EventEmitter();
|
|
34293
|
+
this.transactionClick = new i0.EventEmitter();
|
|
34294
|
+
this.showExtended = false;
|
|
34295
|
+
}
|
|
34296
|
+
TransactionNavigationButtonListComponent.prototype.showClass = function () {
|
|
34297
|
+
return true;
|
|
34298
|
+
};
|
|
34299
|
+
TransactionNavigationButtonListComponent.prototype.handleRelationClick = function (event, relationId) {
|
|
34300
|
+
event.preventDefault();
|
|
34301
|
+
event.stopPropagation();
|
|
34302
|
+
this.showExtended = false;
|
|
34303
|
+
this.relationClick.emit(relationId);
|
|
34304
|
+
};
|
|
34305
|
+
TransactionNavigationButtonListComponent.prototype.handleTransactionClick = function (event, transNr) {
|
|
34306
|
+
event.preventDefault();
|
|
34307
|
+
event.stopPropagation();
|
|
34308
|
+
this.showExtended = false;
|
|
34309
|
+
this.transactionClick.emit(transNr);
|
|
34310
|
+
};
|
|
34311
|
+
return TransactionNavigationButtonListComponent;
|
|
34312
|
+
}());
|
|
34313
|
+
TransactionNavigationButtonListComponent.decorators = [
|
|
34314
|
+
{ type: i0.Component, args: [{
|
|
34315
|
+
selector: "co-transaction-navigation-button-list",
|
|
34316
|
+
template: "\n <ng-container *ngIf=\"refTransactions.length === 0 && emptyLabel\">\n <co-transaction-navigation-button [icon]=\"navigationButtonIcon\"\n [label]=\"emptyLabel\"\n ></co-transaction-navigation-button>\n </ng-container>\n <ng-container *ngIf=\"refTransactions.length > 1\">\n <co-transaction-navigation-button [label]=\"'MULTI_SELECT' | localize\" [icon]=\"navigationButtonIcon\" (click)=\"showExtended = !showExtended\" overlayParent #parentForOverlay=\"overlayParent\"></co-transaction-navigation-button>\n <div class=\"navigation-button-list-extended-wrapper\" *ngIf=\"showExtended\" [overlay]=\"parentForOverlay\" clickOutside (clickOutside)=\"showExtended = false\">\n <ng-container *ngFor=\"let refTransaction of refTransactions\">\n <ng-container *ngTemplateOutlet=\"refTransactionTemplate; context: { $implicit: refTransaction }\"></ng-container>\n </ng-container>\n </div>\n </ng-container>\n <ng-container *ngIf=\"refTransactions.length === 1\">\n <ng-container *ngTemplateOutlet=\"refTransactionTemplate; context: { $implicit: refTransactions[0] }\"></ng-container>\n </ng-container>\n <ng-template #refTransactionTemplate let-ref>\n <div class=\"navigation-button-list-extended-item\">\n <div class=\"transaction-field-wrapper\" *ngIf=\"ref.refRelationName && showRelationButton\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'RELATION'\"></co-transaction-line-label>\n <co-transaction-navigation-button class=\"navigation-relation-button\"\n [icon]=\"navigationButtonIcon\"\n [label]=\"ref.refRelationName\"\n (buttonClicked)=\"handleRelationClick($event, ref.refRelationId)\"></co-transaction-navigation-button>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\" *ngIf=\"ref.refTransactionNr\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"insideLabel\"></co-transaction-line-label>\n <co-transaction-navigation-button [icon]=\"navigationButtonIcon\"\n [label]=\"ref.refTransactionNr\"\n (buttonClicked)=\"handleTransactionClick($event, ref.refTransactionNr)\"></co-transaction-navigation-button>\n </div>\n </div>\n </div>\n </ng-template>\n ",
|
|
34317
|
+
animations: [
|
|
34318
|
+
animations.trigger("showHideExtended", [
|
|
34319
|
+
animations.state("void", animations.style({ height: 0 })),
|
|
34320
|
+
animations.state("*", animations.style({ height: "*" })),
|
|
34321
|
+
animations.transition("void => *", animations.animate("200ms ease-in-out")),
|
|
34322
|
+
animations.transition("* => void", animations.animate("200ms ease-out"))
|
|
34323
|
+
])
|
|
34324
|
+
],
|
|
34325
|
+
providers: [{
|
|
34326
|
+
provide: corecomponents_v12.SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME,
|
|
34327
|
+
useExisting: i0.forwardRef(function () { return TransactionNavigationButtonListComponent; })
|
|
34328
|
+
}
|
|
34329
|
+
],
|
|
34330
|
+
encapsulation: i0.ViewEncapsulation.None
|
|
34331
|
+
},] }
|
|
34332
|
+
];
|
|
34333
|
+
TransactionNavigationButtonListComponent.propDecorators = {
|
|
34334
|
+
emptyLabel: [{ type: i0.Input }],
|
|
34335
|
+
insideLabel: [{ type: i0.Input }],
|
|
34336
|
+
navigationButtonIcon: [{ type: i0.Input }],
|
|
34337
|
+
refTransactions: [{ type: i0.Input }],
|
|
34338
|
+
showRelationButton: [{ type: i0.Input }],
|
|
34339
|
+
relationClick: [{ type: i0.Output }],
|
|
34340
|
+
transactionClick: [{ type: i0.Output }],
|
|
34341
|
+
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-navigation-button-list",] }],
|
|
34342
|
+
hidden: [{ type: i0.HostBinding, args: ["class.co-transaction-hidden",] }]
|
|
34343
|
+
};
|
|
34344
|
+
|
|
34345
|
+
var TransactionNavigationButtonComponent = /** @class */ (function () {
|
|
34346
|
+
function TransactionNavigationButtonComponent(iconService) {
|
|
34347
|
+
this.iconService = iconService;
|
|
34348
|
+
this.icons = Icon;
|
|
34349
|
+
this.icon = this.icons.DetailView;
|
|
34350
|
+
this.buttonClicked = new i0.EventEmitter();
|
|
34351
|
+
}
|
|
34352
|
+
Object.defineProperty(TransactionNavigationButtonComponent.prototype, "label", {
|
|
34353
|
+
set: function (value) {
|
|
34354
|
+
this._label = typeof value === 'number' ? value + "" : value;
|
|
34355
|
+
},
|
|
34356
|
+
enumerable: false,
|
|
34357
|
+
configurable: true
|
|
34358
|
+
});
|
|
34359
|
+
Object.defineProperty(TransactionNavigationButtonComponent.prototype, "buttonLabel", {
|
|
34360
|
+
get: function () {
|
|
34361
|
+
return this._label;
|
|
34362
|
+
},
|
|
34363
|
+
enumerable: false,
|
|
34364
|
+
configurable: true
|
|
34365
|
+
});
|
|
34366
|
+
TransactionNavigationButtonComponent.prototype.showClass = function () {
|
|
34367
|
+
return true;
|
|
34368
|
+
};
|
|
34369
|
+
return TransactionNavigationButtonComponent;
|
|
34370
|
+
}());
|
|
34371
|
+
TransactionNavigationButtonComponent.decorators = [
|
|
34372
|
+
{ type: i0.Component, args: [{
|
|
34373
|
+
selector: "co-transaction-navigation-button",
|
|
34374
|
+
template: "\n <co-transaction-button class=\"custom-width\"\n [hidden]=\"hidden\"\n [readonly]=\"readonly\"\n [label]=\"buttonLabel | localize\"\n [iconData]=\"iconService.getIcon(icon)\"\n (click)=\"buttonClicked.emit($event)\"\n ></co-transaction-button>\n ",
|
|
34375
|
+
providers: [{
|
|
34376
|
+
provide: corecomponents_v12.SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME,
|
|
34377
|
+
useExisting: i0.forwardRef(function () { return TransactionNavigationButtonComponent; })
|
|
34378
|
+
}
|
|
34379
|
+
],
|
|
34380
|
+
encapsulation: i0.ViewEncapsulation.None
|
|
34381
|
+
},] }
|
|
34382
|
+
];
|
|
34383
|
+
TransactionNavigationButtonComponent.ctorParameters = function () { return [
|
|
34384
|
+
{ type: IconCacheService }
|
|
34385
|
+
]; };
|
|
34386
|
+
TransactionNavigationButtonComponent.propDecorators = {
|
|
34387
|
+
label: [{ type: i0.Input }],
|
|
34388
|
+
icon: [{ type: i0.Input }],
|
|
34389
|
+
buttonClicked: [{ type: i0.Output }],
|
|
34390
|
+
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-navigation-button",] }],
|
|
34391
|
+
hidden: [{ type: i0.HostBinding, args: ["class.co-transaction-hidden",] }]
|
|
34392
|
+
};
|
|
34393
|
+
|
|
34394
|
+
var TransactionNavigationButtonModule = /** @class */ (function () {
|
|
34395
|
+
function TransactionNavigationButtonModule() {
|
|
34396
|
+
}
|
|
34397
|
+
return TransactionNavigationButtonModule;
|
|
34398
|
+
}());
|
|
34399
|
+
TransactionNavigationButtonModule.decorators = [
|
|
34400
|
+
{ type: i0.NgModule, args: [{
|
|
34401
|
+
imports: [
|
|
34402
|
+
common.CommonModule,
|
|
34403
|
+
corecomponents_v12.IconModule,
|
|
34404
|
+
PipeModule,
|
|
34405
|
+
TransactionButtonModule
|
|
34406
|
+
],
|
|
34407
|
+
declarations: [
|
|
34408
|
+
TransactionNavigationButtonComponent
|
|
34409
|
+
],
|
|
34410
|
+
exports: [
|
|
34411
|
+
TransactionNavigationButtonComponent
|
|
34412
|
+
]
|
|
34413
|
+
},] }
|
|
34414
|
+
];
|
|
34415
|
+
|
|
34416
|
+
var TransactionNavigationButtonListModule = /** @class */ (function () {
|
|
34417
|
+
function TransactionNavigationButtonListModule() {
|
|
34418
|
+
}
|
|
34419
|
+
return TransactionNavigationButtonListModule;
|
|
34420
|
+
}());
|
|
34421
|
+
TransactionNavigationButtonListModule.decorators = [
|
|
34422
|
+
{ type: i0.NgModule, args: [{
|
|
34423
|
+
imports: [
|
|
34424
|
+
common.CommonModule,
|
|
34425
|
+
TransactionNavigationButtonModule,
|
|
34426
|
+
PipeModule,
|
|
34427
|
+
CoreModule,
|
|
34428
|
+
corecomponents_v12.ClickoutsideModule,
|
|
34429
|
+
corecomponents_v12.OverlayModule,
|
|
34430
|
+
TransactionLineLabelModule
|
|
34431
|
+
],
|
|
34432
|
+
declarations: [
|
|
34433
|
+
TransactionNavigationButtonListComponent
|
|
34434
|
+
],
|
|
34435
|
+
exports: [
|
|
34436
|
+
TransactionNavigationButtonListComponent
|
|
34437
|
+
]
|
|
34438
|
+
},] }
|
|
34439
|
+
];
|
|
34440
|
+
|
|
34253
34441
|
var TransactionOverviewLineModule = /** @class */ (function () {
|
|
34254
34442
|
function TransactionOverviewLineModule() {
|
|
34255
34443
|
}
|
|
@@ -34288,7 +34476,8 @@
|
|
|
34288
34476
|
corecomponents_v12.ObserveVisibilityModule,
|
|
34289
34477
|
corecomponents_v12.ScreenConfigurationModule,
|
|
34290
34478
|
TransactionLineLabelModule,
|
|
34291
|
-
TransactionLineDirectSellButtonModule
|
|
34479
|
+
TransactionLineDirectSellButtonModule,
|
|
34480
|
+
TransactionNavigationButtonListModule
|
|
34292
34481
|
],
|
|
34293
34482
|
declarations: [
|
|
34294
34483
|
TransactionOverviewLineComponent,
|
|
@@ -34588,75 +34777,6 @@
|
|
|
34588
34777
|
},] }
|
|
34589
34778
|
];
|
|
34590
34779
|
|
|
34591
|
-
var TransactionNavigationButtonComponent = /** @class */ (function () {
|
|
34592
|
-
function TransactionNavigationButtonComponent(iconService) {
|
|
34593
|
-
this.iconService = iconService;
|
|
34594
|
-
this.icons = Icon;
|
|
34595
|
-
this.buttonClicked = new i0.EventEmitter();
|
|
34596
|
-
}
|
|
34597
|
-
Object.defineProperty(TransactionNavigationButtonComponent.prototype, "label", {
|
|
34598
|
-
set: function (value) {
|
|
34599
|
-
this._label = typeof value === 'number' ? value + "" : value;
|
|
34600
|
-
},
|
|
34601
|
-
enumerable: false,
|
|
34602
|
-
configurable: true
|
|
34603
|
-
});
|
|
34604
|
-
Object.defineProperty(TransactionNavigationButtonComponent.prototype, "buttonLabel", {
|
|
34605
|
-
get: function () {
|
|
34606
|
-
return this._label;
|
|
34607
|
-
},
|
|
34608
|
-
enumerable: false,
|
|
34609
|
-
configurable: true
|
|
34610
|
-
});
|
|
34611
|
-
TransactionNavigationButtonComponent.prototype.showClass = function () {
|
|
34612
|
-
return true;
|
|
34613
|
-
};
|
|
34614
|
-
return TransactionNavigationButtonComponent;
|
|
34615
|
-
}());
|
|
34616
|
-
TransactionNavigationButtonComponent.decorators = [
|
|
34617
|
-
{ type: i0.Component, args: [{
|
|
34618
|
-
selector: "co-transaction-navigation-button",
|
|
34619
|
-
template: "\n <co-transaction-button class=\"custom-width\"\n [hidden]=\"hidden\"\n [readonly]=\"readonly\"\n [label]=\"buttonLabel | localize\"\n [iconData]=\"iconService.getIcon(icons.DetailView)\"\n (click)=\"buttonClicked.emit($event)\"\n ></co-transaction-button>\n ",
|
|
34620
|
-
providers: [{
|
|
34621
|
-
provide: corecomponents_v12.SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME,
|
|
34622
|
-
useExisting: i0.forwardRef(function () { return TransactionNavigationButtonComponent; })
|
|
34623
|
-
}
|
|
34624
|
-
],
|
|
34625
|
-
encapsulation: i0.ViewEncapsulation.None
|
|
34626
|
-
},] }
|
|
34627
|
-
];
|
|
34628
|
-
TransactionNavigationButtonComponent.ctorParameters = function () { return [
|
|
34629
|
-
{ type: IconCacheService }
|
|
34630
|
-
]; };
|
|
34631
|
-
TransactionNavigationButtonComponent.propDecorators = {
|
|
34632
|
-
label: [{ type: i0.Input }],
|
|
34633
|
-
buttonClicked: [{ type: i0.Output }],
|
|
34634
|
-
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-navigation-button",] }],
|
|
34635
|
-
hidden: [{ type: i0.HostBinding, args: ["class.co-transaction-hidden",] }]
|
|
34636
|
-
};
|
|
34637
|
-
|
|
34638
|
-
var TransactionNavigationButtonModule = /** @class */ (function () {
|
|
34639
|
-
function TransactionNavigationButtonModule() {
|
|
34640
|
-
}
|
|
34641
|
-
return TransactionNavigationButtonModule;
|
|
34642
|
-
}());
|
|
34643
|
-
TransactionNavigationButtonModule.decorators = [
|
|
34644
|
-
{ type: i0.NgModule, args: [{
|
|
34645
|
-
imports: [
|
|
34646
|
-
common.CommonModule,
|
|
34647
|
-
corecomponents_v12.IconModule,
|
|
34648
|
-
PipeModule,
|
|
34649
|
-
TransactionButtonModule
|
|
34650
|
-
],
|
|
34651
|
-
declarations: [
|
|
34652
|
-
TransactionNavigationButtonComponent
|
|
34653
|
-
],
|
|
34654
|
-
exports: [
|
|
34655
|
-
TransactionNavigationButtonComponent
|
|
34656
|
-
]
|
|
34657
|
-
},] }
|
|
34658
|
-
];
|
|
34659
|
-
|
|
34660
34780
|
var TransactionLineDropShipmentButtonComponent = /** @class */ (function (_super) {
|
|
34661
34781
|
__extends(TransactionLineDropShipmentButtonComponent, _super);
|
|
34662
34782
|
function TransactionLineDropShipmentButtonComponent(transactionHeaderService, transactionLineService, transactionEventService, transactionService, iconCacheService, transactionScreenConfigurationService, dictionaryService, imageService, changeDetector, _relationService) {
|
|
@@ -34788,86 +34908,6 @@
|
|
|
34788
34908
|
},] }
|
|
34789
34909
|
];
|
|
34790
34910
|
|
|
34791
|
-
var TransactionNavigationButtonListComponent = /** @class */ (function () {
|
|
34792
|
-
function TransactionNavigationButtonListComponent() {
|
|
34793
|
-
this.refTransactions = [];
|
|
34794
|
-
this.showRelationButton = true;
|
|
34795
|
-
this.relationClick = new i0.EventEmitter();
|
|
34796
|
-
this.transactionClick = new i0.EventEmitter();
|
|
34797
|
-
this.showExtended = false;
|
|
34798
|
-
}
|
|
34799
|
-
TransactionNavigationButtonListComponent.prototype.showClass = function () {
|
|
34800
|
-
return true;
|
|
34801
|
-
};
|
|
34802
|
-
TransactionNavigationButtonListComponent.prototype.handleRelationClick = function (event, relationId) {
|
|
34803
|
-
event.preventDefault();
|
|
34804
|
-
event.stopPropagation();
|
|
34805
|
-
this.showExtended = false;
|
|
34806
|
-
this.relationClick.emit(relationId);
|
|
34807
|
-
};
|
|
34808
|
-
TransactionNavigationButtonListComponent.prototype.handleTransactionClick = function (event, transNr) {
|
|
34809
|
-
event.preventDefault();
|
|
34810
|
-
event.stopPropagation();
|
|
34811
|
-
this.showExtended = false;
|
|
34812
|
-
this.transactionClick.emit(transNr);
|
|
34813
|
-
};
|
|
34814
|
-
return TransactionNavigationButtonListComponent;
|
|
34815
|
-
}());
|
|
34816
|
-
TransactionNavigationButtonListComponent.decorators = [
|
|
34817
|
-
{ type: i0.Component, args: [{
|
|
34818
|
-
selector: "co-transaction-navigation-button-list",
|
|
34819
|
-
template: "\n <ng-container *ngIf=\"refTransactions.length === 0 && emptyLabel\">\n <co-transaction-navigation-button\n [label]=\"emptyLabel\"\n ></co-transaction-navigation-button>\n </ng-container>\n <ng-container *ngIf=\"refTransactions.length > 1\">\n <co-transaction-navigation-button [label]=\"'MULTI_SELECT' | localize\" (click)=\"showExtended = !showExtended\" overlayParent #parentForOverlay=\"overlayParent\"></co-transaction-navigation-button>\n <div class=\"navigation-button-list-extended-wrapper\" *ngIf=\"showExtended\" [overlay]=\"parentForOverlay\" clickOutside (clickOutside)=\"showExtended = false\">\n <ng-container *ngFor=\"let refTransaction of refTransactions\">\n <ng-container *ngTemplateOutlet=\"refTransactionTemplate; context: { $implicit: refTransaction }\"></ng-container>\n </ng-container>\n </div>\n </ng-container>\n <ng-container *ngIf=\"refTransactions.length === 1\">\n <ng-container *ngTemplateOutlet=\"refTransactionTemplate; context: { $implicit: refTransactions[0] }\"></ng-container>\n </ng-container>\n <ng-template #refTransactionTemplate let-ref>\n <div class=\"navigation-button-list-extended-item\">\n <div class=\"transaction-field-wrapper\" *ngIf=\"ref.refRelationName && showRelationButton\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'RELATION'\"></co-transaction-line-label>\n <co-transaction-navigation-button class=\"navigation-relation-button\"\n [label]=\"ref.refRelationName\"\n (buttonClicked)=\"handleRelationClick($event, ref.refRelationId)\"></co-transaction-navigation-button>\n </div>\n </div>\n <div class=\"transaction-field-wrapper\" *ngIf=\"ref.refTransactionNr\">\n <div class=\"inside-field\">\n <co-transaction-line-label [insideLabel]=\"'SALES_ORDER'\"></co-transaction-line-label>\n <co-transaction-navigation-button\n [label]=\"ref.refTransactionNr\"\n (buttonClicked)=\"handleTransactionClick($event, ref.refTransactionNr)\"></co-transaction-navigation-button>\n </div>\n </div>\n </div>\n </ng-template>\n ",
|
|
34820
|
-
animations: [
|
|
34821
|
-
animations.trigger("showHideExtended", [
|
|
34822
|
-
animations.state("void", animations.style({ height: 0 })),
|
|
34823
|
-
animations.state("*", animations.style({ height: "*" })),
|
|
34824
|
-
animations.transition("void => *", animations.animate("200ms ease-in-out")),
|
|
34825
|
-
animations.transition("* => void", animations.animate("200ms ease-out"))
|
|
34826
|
-
])
|
|
34827
|
-
],
|
|
34828
|
-
providers: [{
|
|
34829
|
-
provide: corecomponents_v12.SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME,
|
|
34830
|
-
useExisting: i0.forwardRef(function () { return TransactionNavigationButtonListComponent; })
|
|
34831
|
-
}
|
|
34832
|
-
],
|
|
34833
|
-
encapsulation: i0.ViewEncapsulation.None
|
|
34834
|
-
},] }
|
|
34835
|
-
];
|
|
34836
|
-
TransactionNavigationButtonListComponent.propDecorators = {
|
|
34837
|
-
emptyLabel: [{ type: i0.Input }],
|
|
34838
|
-
refTransactions: [{ type: i0.Input }],
|
|
34839
|
-
showRelationButton: [{ type: i0.Input }],
|
|
34840
|
-
relationClick: [{ type: i0.Output }],
|
|
34841
|
-
transactionClick: [{ type: i0.Output }],
|
|
34842
|
-
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-navigation-button-list",] }],
|
|
34843
|
-
hidden: [{ type: i0.HostBinding, args: ["class.co-transaction-hidden",] }]
|
|
34844
|
-
};
|
|
34845
|
-
|
|
34846
|
-
var TransactionNavigationButtonListModule = /** @class */ (function () {
|
|
34847
|
-
function TransactionNavigationButtonListModule() {
|
|
34848
|
-
}
|
|
34849
|
-
return TransactionNavigationButtonListModule;
|
|
34850
|
-
}());
|
|
34851
|
-
TransactionNavigationButtonListModule.decorators = [
|
|
34852
|
-
{ type: i0.NgModule, args: [{
|
|
34853
|
-
imports: [
|
|
34854
|
-
common.CommonModule,
|
|
34855
|
-
TransactionNavigationButtonModule,
|
|
34856
|
-
PipeModule,
|
|
34857
|
-
CoreModule,
|
|
34858
|
-
corecomponents_v12.ClickoutsideModule,
|
|
34859
|
-
corecomponents_v12.OverlayModule,
|
|
34860
|
-
TransactionLineLabelModule
|
|
34861
|
-
],
|
|
34862
|
-
declarations: [
|
|
34863
|
-
TransactionNavigationButtonListComponent
|
|
34864
|
-
],
|
|
34865
|
-
exports: [
|
|
34866
|
-
TransactionNavigationButtonListComponent
|
|
34867
|
-
]
|
|
34868
|
-
},] }
|
|
34869
|
-
];
|
|
34870
|
-
|
|
34871
34911
|
var TransactionLineConfirmedDeliveryDateButtonComponent = /** @class */ (function (_super) {
|
|
34872
34912
|
__extends(TransactionLineConfirmedDeliveryDateButtonComponent, _super);
|
|
34873
34913
|
function TransactionLineConfirmedDeliveryDateButtonComponent(transactionHeaderService, transactionLineService, transactionEventService, service, iconCacheService, transactionScreenConfigurationService, dictionaryService, imageService, changeDetector, _overlayService) {
|
|
@@ -36241,20 +36281,106 @@
|
|
|
36241
36281
|
},] }
|
|
36242
36282
|
];
|
|
36243
36283
|
|
|
36284
|
+
var LineSelectionService = /** @class */ (function () {
|
|
36285
|
+
function LineSelectionService(_transactionEventService, _transactionService) {
|
|
36286
|
+
var _this = this;
|
|
36287
|
+
this._transactionEventService = _transactionEventService;
|
|
36288
|
+
this._transactionService = _transactionService;
|
|
36289
|
+
this.selectedTransactionLineChanged = new rxjs.BehaviorSubject(undefined);
|
|
36290
|
+
this._subs = [];
|
|
36291
|
+
this._selectedLineUuidsForDelivery = [];
|
|
36292
|
+
this._selectedLineUuidsForInvoice = [];
|
|
36293
|
+
this._selectedTransactionLine = new transactionLineInfo_bo.TransactionLineInfo();
|
|
36294
|
+
this._subs.push(this._transactionEventService.transactionLineChanged.subscribe(function (line) {
|
|
36295
|
+
if (_this.selectedTransactionLine && line.lineNr === _this.selectedTransactionLine.lineNr) {
|
|
36296
|
+
_this.selectedTransactionLine = line;
|
|
36297
|
+
}
|
|
36298
|
+
}), this._transactionEventService.lineSelectedForDelivery.subscribe(function (data) {
|
|
36299
|
+
if (_this._checkAllLinesSelectedForDelivery(data)) {
|
|
36300
|
+
_this._selectedLineUuidsForDelivery.length = 0;
|
|
36301
|
+
_this._transactionEventService.allLinesSelectedForDelivery.next();
|
|
36302
|
+
}
|
|
36303
|
+
}), this._transactionEventService.lineSelectedForInvoice.subscribe(function (data) {
|
|
36304
|
+
if (_this._checkAllLinesSelectedForInvoice(data)) {
|
|
36305
|
+
_this._selectedLineUuidsForInvoice.length = 0;
|
|
36306
|
+
_this._transactionEventService.allLinesSelectedForInvoice.next();
|
|
36307
|
+
}
|
|
36308
|
+
}));
|
|
36309
|
+
}
|
|
36310
|
+
Object.defineProperty(LineSelectionService.prototype, "selectedTransactionLine", {
|
|
36311
|
+
get: function () {
|
|
36312
|
+
return this._selectedTransactionLine;
|
|
36313
|
+
},
|
|
36314
|
+
set: function (value) {
|
|
36315
|
+
this._selectedTransactionLine = value;
|
|
36316
|
+
this.selectedTransactionLineChanged.next(this._selectedTransactionLine);
|
|
36317
|
+
},
|
|
36318
|
+
enumerable: false,
|
|
36319
|
+
configurable: true
|
|
36320
|
+
});
|
|
36321
|
+
LineSelectionService.prototype.ngOnDestroy = function () {
|
|
36322
|
+
this._subs.forEach(function (s) { return s.unsubscribe(); });
|
|
36323
|
+
};
|
|
36324
|
+
LineSelectionService.prototype._checkAllLinesSelectedForDelivery = function (data) {
|
|
36325
|
+
var _this = this;
|
|
36326
|
+
if (data && data.lineUuid) {
|
|
36327
|
+
if (!data.selected) {
|
|
36328
|
+
return true;
|
|
36329
|
+
}
|
|
36330
|
+
this._selectedLineUuidsForDelivery.push(data.lineUuid);
|
|
36331
|
+
var transactionLinesForDelivery = this._transactionService.currentTransaction.transactionLines.filter(function (l) { return l.articleLineStatus && l.articleLineStatus.quantityToDeliver !== 0; });
|
|
36332
|
+
if (this._transactionService.currentTransaction.deliveryCostLines) {
|
|
36333
|
+
transactionLinesForDelivery = transactionLinesForDelivery.concat(this._transactionService.currentTransaction.deliveryCostLines);
|
|
36334
|
+
}
|
|
36335
|
+
var notFound = transactionLinesForDelivery.filter(function (l) { return _this._selectedLineUuidsForDelivery.indexOf(l.uuid) < 0; });
|
|
36336
|
+
return notFound.length === 0;
|
|
36337
|
+
}
|
|
36338
|
+
return false;
|
|
36339
|
+
};
|
|
36340
|
+
LineSelectionService.prototype._checkAllLinesSelectedForInvoice = function (data) {
|
|
36341
|
+
var _this = this;
|
|
36342
|
+
if (data && data.lineUuid) {
|
|
36343
|
+
if (!data.selected) {
|
|
36344
|
+
return true;
|
|
36345
|
+
}
|
|
36346
|
+
this._selectedLineUuidsForInvoice.push(data.lineUuid);
|
|
36347
|
+
var transactionLinesForInvoice = this._transactionService.currentTransaction.transactionLines.filter(function (l) { return l.articleLineStatus && l.articleLineStatus.quantityToInvoice !== 0; });
|
|
36348
|
+
if (this._transactionService.currentTransaction.deliveryCostLines) {
|
|
36349
|
+
transactionLinesForInvoice = transactionLinesForInvoice.concat(this._transactionService.currentTransaction.deliveryCostLines);
|
|
36350
|
+
}
|
|
36351
|
+
var notFound = transactionLinesForInvoice.filter(function (l) { return _this._selectedLineUuidsForInvoice.indexOf(l.uuid) < 0; });
|
|
36352
|
+
return notFound.length === 0;
|
|
36353
|
+
}
|
|
36354
|
+
return false;
|
|
36355
|
+
};
|
|
36356
|
+
return LineSelectionService;
|
|
36357
|
+
}());
|
|
36358
|
+
LineSelectionService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function LineSelectionService_Factory() { return new LineSelectionService(i0__namespace.ɵɵinject(TransactionEventService), i0__namespace.ɵɵinject(TransactionService)); }, token: LineSelectionService, providedIn: "root" });
|
|
36359
|
+
LineSelectionService.decorators = [
|
|
36360
|
+
{ type: i0.Injectable, args: [{
|
|
36361
|
+
providedIn: 'root'
|
|
36362
|
+
},] }
|
|
36363
|
+
];
|
|
36364
|
+
LineSelectionService.ctorParameters = function () { return [
|
|
36365
|
+
{ type: TransactionEventService },
|
|
36366
|
+
{ type: TransactionService }
|
|
36367
|
+
]; };
|
|
36368
|
+
|
|
36244
36369
|
var TransactionLineSidePanelComponent = /** @class */ (function () {
|
|
36245
|
-
function TransactionLineSidePanelComponent(_service, _transactionHeaderService, _transactionLineService, _transactionEventService, _transactionMappingService, _purchaseConfirmationService) {
|
|
36370
|
+
function TransactionLineSidePanelComponent(_service, _transactionHeaderService, _transactionLineService, _transactionEventService, _transactionMappingService, _purchaseConfirmationService, _lineSelectionService, _changeDetector) {
|
|
36246
36371
|
this._service = _service;
|
|
36247
36372
|
this._transactionHeaderService = _transactionHeaderService;
|
|
36248
36373
|
this._transactionLineService = _transactionLineService;
|
|
36249
36374
|
this._transactionEventService = _transactionEventService;
|
|
36250
36375
|
this._transactionMappingService = _transactionMappingService;
|
|
36251
36376
|
this._purchaseConfirmationService = _purchaseConfirmationService;
|
|
36377
|
+
this._lineSelectionService = _lineSelectionService;
|
|
36378
|
+
this._changeDetector = _changeDetector;
|
|
36252
36379
|
this.icons = Icon;
|
|
36253
36380
|
this.categories = TransactionTypeCategory;
|
|
36254
36381
|
this.transactionTypes = transactionKind_enum.TransactionKind;
|
|
36255
36382
|
this.TransactionTypeCategory = TransactionTypeCategory;
|
|
36256
36383
|
this.wide = false;
|
|
36257
|
-
this.transactionLine = new transactionLineInfo_bo.TransactionLineInfo();
|
|
36258
36384
|
this.cancelClick = new i0.EventEmitter();
|
|
36259
36385
|
this._subs = [];
|
|
36260
36386
|
}
|
|
@@ -36277,10 +36403,14 @@
|
|
|
36277
36403
|
});
|
|
36278
36404
|
TransactionLineSidePanelComponent.prototype.ngOnInit = function () {
|
|
36279
36405
|
var _this = this;
|
|
36280
|
-
this._transactionLineService.transactionLine = this.transactionLine;
|
|
36281
36406
|
this.activeCategoryButton = this._transactionMappingService.getButtonBar(this._transactionHeaderService.transactionKind)
|
|
36282
36407
|
.find(function (button) { return button.category === _this.activeCategory; });
|
|
36283
|
-
this._subs.push(this.
|
|
36408
|
+
this._subs.push(this._lineSelectionService.selectedTransactionLineChanged.subscribe(function (line) {
|
|
36409
|
+
if (line) {
|
|
36410
|
+
_this._transactionLineService.transactionLine = line;
|
|
36411
|
+
_this._changeDetector.detectChanges();
|
|
36412
|
+
}
|
|
36413
|
+
}), this._purchaseConfirmationService.ordersTotalObservable.subscribe(function (value) {
|
|
36284
36414
|
_this.ordersTotal = value;
|
|
36285
36415
|
}));
|
|
36286
36416
|
};
|
|
@@ -36297,7 +36427,7 @@
|
|
|
36297
36427
|
TransactionLineSidePanelComponent.decorators = [
|
|
36298
36428
|
{ type: i0.Component, args: [{
|
|
36299
36429
|
selector: "co-transaction-line-side-panel",
|
|
36300
|
-
template: "\n <div class=\"transaction-line-side-panel-wrapper\" [class.wide]=\"wide\" @showHideSidePanel>\n <icon (click)=\"cancelClick.emit($event)\" [icon]=\"icons.Crossskinny\" class=\"side-panel close-button\"></icon>\n <div class=\"transaction-line-side-panel-header\">\n <icon [icon]=\"activeCategoryButton?.icon\"></icon>\n <span [textContent]=\"activeCategoryButton?.title | localize\"></span>\n </div>\n <div class=\"transaction-line-side-panel-nav-bar\">\n <co-transaction-button-bar\n [sidePanel]=\"true\"\n [selectedCategory]=\"activeCategory\"\n (buttonClicked)=\"updateActiveCategory($event)\"\n ></co-transaction-button-bar>\n </div>\n <div class=\"total-amount\" *ngIf=\"activeCategory === TransactionTypeCategory.PurchaseOrderOrderConfirmation\">\n <span>Totaal excl. BTW</span>\n <span [textContent]=\"ordersTotal | coCurrency\"></span>\n </div>\n <div class=\"transaction-line-side-panel-content co-small-scrollbar\">\n <ng-container [ngSwitch]=\"transactionInfo.transactionKind\">\n <ng-container *ngSwitchCase=\"transactionTypes.PurchaseOrder\">\n <co-transaction-line-side-panel-purchase
|
|
36430
|
+
template: "\n <div class=\"transaction-line-side-panel-wrapper\" [class.wide]=\"wide\" @showHideSidePanel>\n <icon (click)=\"cancelClick.emit($event)\" [icon]=\"icons.Crossskinny\" class=\"side-panel close-button\"></icon>\n <div class=\"transaction-line-side-panel-header\">\n <icon [icon]=\"activeCategoryButton?.icon\"></icon>\n <span [textContent]=\"activeCategoryButton?.title | localize\"></span>\n </div>\n <div class=\"transaction-line-side-panel-nav-bar\">\n <co-transaction-button-bar\n [sidePanel]=\"true\"\n [selectedCategory]=\"activeCategory\"\n (buttonClicked)=\"updateActiveCategory($event)\"\n ></co-transaction-button-bar>\n </div>\n <div class=\"total-amount\" *ngIf=\"activeCategory === TransactionTypeCategory.PurchaseOrderOrderConfirmation\">\n <span>Totaal excl. BTW</span>\n <span [textContent]=\"ordersTotal | coCurrency\"></span>\n </div>\n <div class=\"transaction-line-side-panel-content co-small-scrollbar\">\n <ng-container [ngSwitch]=\"transactionInfo.transactionKind\">\n <ng-container *ngSwitchCase=\"transactionTypes.PurchaseOrder\">\n <co-transaction-line-side-panel-purchase [categoryType]=\"activeCategory\"></co-transaction-line-side-panel-purchase>\n </ng-container>\n <ng-container *ngSwitchCase=\"transactionTypes.SalesOrder\">\n <co-transaction-line-side-panel-sales [categoryType]=\"activeCategory\"></co-transaction-line-side-panel-sales>\n </ng-container>\n <ng-container *ngSwitchDefault>\n <co-transaction-line-side-panel-purchase [categoryType]=\"activeCategory\"></co-transaction-line-side-panel-purchase>\n </ng-container>\n </ng-container>\n </div>\n </div>\n ",
|
|
36301
36431
|
providers: [
|
|
36302
36432
|
TransactionLineService
|
|
36303
36433
|
],
|
|
@@ -36317,12 +36447,13 @@
|
|
|
36317
36447
|
{ type: TransactionLineService },
|
|
36318
36448
|
{ type: TransactionEventService },
|
|
36319
36449
|
{ type: TransactionMappingService },
|
|
36320
|
-
{ type: PurchaseConfirmationService }
|
|
36450
|
+
{ type: PurchaseConfirmationService },
|
|
36451
|
+
{ type: LineSelectionService },
|
|
36452
|
+
{ type: i0.ChangeDetectorRef }
|
|
36321
36453
|
]; };
|
|
36322
36454
|
TransactionLineSidePanelComponent.propDecorators = {
|
|
36323
36455
|
wide: [{ type: i0.Input }],
|
|
36324
36456
|
activeCategory: [{ type: i0.Input }],
|
|
36325
|
-
transactionLine: [{ type: i0.Input }],
|
|
36326
36457
|
cancelClick: [{ type: i0.Output }],
|
|
36327
36458
|
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-line-side-panel",] }]
|
|
36328
36459
|
};
|
|
@@ -37153,46 +37284,23 @@
|
|
|
37153
37284
|
];
|
|
37154
37285
|
|
|
37155
37286
|
var TransactionLineSidePanelPurchaseComponent = /** @class */ (function () {
|
|
37156
|
-
function TransactionLineSidePanelPurchaseComponent(
|
|
37157
|
-
this._service = _service;
|
|
37158
|
-
this._transactionEventService = _transactionEventService;
|
|
37287
|
+
function TransactionLineSidePanelPurchaseComponent() {
|
|
37159
37288
|
this.categories = TransactionTypeCategory;
|
|
37160
|
-
this.transactionInfo = new transactionInfo_bo.TransactionInfo();
|
|
37161
|
-
this.transactionLine = new transactionLineInfo_bo.TransactionLineInfo();
|
|
37162
|
-
this.quantityToReceiveChange = new i0.EventEmitter();
|
|
37163
|
-
this.goodsReceiptStatus = new goodsReceiptHistory_bo.GoodsReceiptHistory();
|
|
37164
|
-
this.selectedLineDocBatchArray = new docDeliveryBatch_bo.DocDeliveryBatch();
|
|
37165
|
-
this.isDocBatchSaved = false;
|
|
37166
|
-
this.editingMode = false;
|
|
37167
37289
|
}
|
|
37168
37290
|
TransactionLineSidePanelPurchaseComponent.prototype.showClass = function () {
|
|
37169
37291
|
return true;
|
|
37170
37292
|
};
|
|
37171
|
-
TransactionLineSidePanelPurchaseComponent.prototype.fillInputOnClick = function (data) {
|
|
37172
|
-
this.selectedLineDocBatchArray = data;
|
|
37173
|
-
this.editingMode = true;
|
|
37174
|
-
};
|
|
37175
|
-
TransactionLineSidePanelPurchaseComponent.prototype.docBatchSaved = function (data) {
|
|
37176
|
-
this.isDocBatchSaved = data;
|
|
37177
|
-
};
|
|
37178
37293
|
return TransactionLineSidePanelPurchaseComponent;
|
|
37179
37294
|
}());
|
|
37180
37295
|
TransactionLineSidePanelPurchaseComponent.decorators = [
|
|
37181
37296
|
{ type: i0.Component, args: [{
|
|
37182
37297
|
selector: "co-transaction-line-side-panel-purchase",
|
|
37183
|
-
template: "\n <ng-container [ngSwitch]=\"categoryType\">\n <ng-container *ngSwitchCase=\"categories.PurchaseOrderOrderConfirmation\">\n <co-transaction-line-purchase-confirmation
|
|
37298
|
+
template: "\n <ng-container [ngSwitch]=\"categoryType\">\n <ng-container *ngSwitchCase=\"categories.PurchaseOrderOrderConfirmation\">\n <co-transaction-line-purchase-confirmation></co-transaction-line-purchase-confirmation>\n </ng-container>\n <ng-container *ngSwitchCase=\"categories.PurchaseOrderReceivedGoods\">\n <co-transaction-line-purchase-receive-goods></co-transaction-line-purchase-receive-goods>\n </ng-container>\n <ng-container *ngSwitchDefault>\n <co-transaction-line-side-panel-default></co-transaction-line-side-panel-default>\n </ng-container>\n </ng-container>\n ",
|
|
37184
37299
|
encapsulation: i0.ViewEncapsulation.None
|
|
37185
37300
|
},] }
|
|
37186
37301
|
];
|
|
37187
|
-
TransactionLineSidePanelPurchaseComponent.ctorParameters = function () { return [
|
|
37188
|
-
{ type: TransactionService },
|
|
37189
|
-
{ type: TransactionEventService }
|
|
37190
|
-
]; };
|
|
37191
37302
|
TransactionLineSidePanelPurchaseComponent.propDecorators = {
|
|
37192
|
-
transactionInfo: [{ type: i0.Input }],
|
|
37193
|
-
transactionLine: [{ type: i0.Input }],
|
|
37194
37303
|
categoryType: [{ type: i0.Input }],
|
|
37195
|
-
quantityToReceiveChange: [{ type: i0.Output }],
|
|
37196
37304
|
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-line-side-panel-purchase",] }]
|
|
37197
37305
|
};
|
|
37198
37306
|
|
|
@@ -37531,35 +37639,41 @@
|
|
|
37531
37639
|
},] }
|
|
37532
37640
|
];
|
|
37533
37641
|
|
|
37534
|
-
var TransactionLinePurchaseConfirmationComponent = /** @class */ (function () {
|
|
37535
|
-
|
|
37536
|
-
|
|
37537
|
-
this
|
|
37538
|
-
|
|
37539
|
-
|
|
37540
|
-
|
|
37541
|
-
|
|
37542
|
-
|
|
37543
|
-
|
|
37544
|
-
|
|
37545
|
-
|
|
37546
|
-
|
|
37547
|
-
|
|
37548
|
-
|
|
37549
|
-
|
|
37550
|
-
|
|
37642
|
+
var TransactionLinePurchaseConfirmationComponent = /** @class */ (function (_super) {
|
|
37643
|
+
__extends(TransactionLinePurchaseConfirmationComponent, _super);
|
|
37644
|
+
function TransactionLinePurchaseConfirmationComponent(transactionHeaderService, transactionLineService, transactionEventService, service, iconCacheService, transactionScreenConfigurationService, purchaseConfirmationService, dictionaryService, imageService, changeDetector) {
|
|
37645
|
+
var _this = _super.call(this, transactionHeaderService, transactionLineService, transactionEventService, iconCacheService, transactionScreenConfigurationService, imageService, dictionaryService, service, changeDetector) || this;
|
|
37646
|
+
_this.transactionHeaderService = transactionHeaderService;
|
|
37647
|
+
_this.transactionLineService = transactionLineService;
|
|
37648
|
+
_this.transactionEventService = transactionEventService;
|
|
37649
|
+
_this.service = service;
|
|
37650
|
+
_this.iconCacheService = iconCacheService;
|
|
37651
|
+
_this.transactionScreenConfigurationService = transactionScreenConfigurationService;
|
|
37652
|
+
_this.purchaseConfirmationService = purchaseConfirmationService;
|
|
37653
|
+
_this.dictionaryService = dictionaryService;
|
|
37654
|
+
_this.imageService = imageService;
|
|
37655
|
+
_this.changeDetector = changeDetector;
|
|
37656
|
+
_this.icons = Icon;
|
|
37657
|
+
_this.transactionTypeCategory = TransactionTypeCategory;
|
|
37658
|
+
_this.docDeliveryBatch = new docDeliveryBatch_bo.DocDeliveryBatch();
|
|
37659
|
+
_this.filteredDocBatchArray = [];
|
|
37660
|
+
_this.maxDocAmount = 0;
|
|
37661
|
+
_this.showPurchaseConfirmationAI = false;
|
|
37662
|
+
_this.confirmingOrder = false;
|
|
37663
|
+
_this._subs = [];
|
|
37664
|
+
return _this;
|
|
37551
37665
|
}
|
|
37552
37666
|
TransactionLinePurchaseConfirmationComponent.prototype.showClass = function () {
|
|
37553
37667
|
return true;
|
|
37554
37668
|
};
|
|
37555
37669
|
TransactionLinePurchaseConfirmationComponent.prototype.ngOnInit = function () {
|
|
37556
37670
|
var _this = this;
|
|
37557
|
-
|
|
37671
|
+
_super.prototype.ngOnInit.call(this);
|
|
37672
|
+
this._subs.push(this.transactionEventService.transactionLineChanged.subscribe(function (line) {
|
|
37558
37673
|
if (line.lineNr === _this.transactionLine.lineNr) {
|
|
37559
|
-
_this.transactionLine = line;
|
|
37560
37674
|
_this._updateBatchArray();
|
|
37561
37675
|
}
|
|
37562
|
-
}), this.
|
|
37676
|
+
}), this.transactionEventService.orderConfirmationReset.subscribe(function () {
|
|
37563
37677
|
_this.showPurchaseConfirmationAI = false;
|
|
37564
37678
|
}), this.purchaseConfirmationService.confirmationNeeded.subscribe(function (needed) {
|
|
37565
37679
|
_this.showPurchaseConfirmationAI = needed;
|
|
@@ -37569,6 +37683,7 @@
|
|
|
37569
37683
|
};
|
|
37570
37684
|
TransactionLinePurchaseConfirmationComponent.prototype.ngOnDestroy = function () {
|
|
37571
37685
|
this._subs.forEach(function (s) { return s.unsubscribe(); });
|
|
37686
|
+
_super.prototype.ngOnDestroy.call(this);
|
|
37572
37687
|
};
|
|
37573
37688
|
TransactionLinePurchaseConfirmationComponent.prototype.handleSaveDetailsEdit = function () {
|
|
37574
37689
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -37592,7 +37707,7 @@
|
|
|
37592
37707
|
this.transactionLine.purchasePortalLine.docBatchArray.push(this.docDeliveryBatch);
|
|
37593
37708
|
}
|
|
37594
37709
|
this.transactionLine.purchasePortalLine.docKind = 'IB';
|
|
37595
|
-
return [4 /*yield*/, this.
|
|
37710
|
+
return [4 /*yield*/, this.transactionService.updatePurchasePortalLines(this.transactionInfo.id, this.transactionInfo.version, this.transactionLine.purchasePortalLine)];
|
|
37596
37711
|
case 1:
|
|
37597
37712
|
success = _a.sent();
|
|
37598
37713
|
if (success) {
|
|
@@ -37614,7 +37729,7 @@
|
|
|
37614
37729
|
case 0:
|
|
37615
37730
|
row.deleteLine = 'T';
|
|
37616
37731
|
this.transactionLine.purchasePortalLine.docKind = 'IB';
|
|
37617
|
-
return [4 /*yield*/, this.
|
|
37732
|
+
return [4 /*yield*/, this.transactionService.updatePurchasePortalLines(this.transactionInfo.id, this.transactionInfo.version, this.transactionLine.purchasePortalLine)];
|
|
37618
37733
|
case 1:
|
|
37619
37734
|
success = _a.sent();
|
|
37620
37735
|
if (success) {
|
|
@@ -37636,7 +37751,12 @@
|
|
|
37636
37751
|
TransactionLinePurchaseConfirmationComponent.prototype.handleDeliveryBatchChange = function () {
|
|
37637
37752
|
this._setMaxDocAmount();
|
|
37638
37753
|
};
|
|
37754
|
+
TransactionLinePurchaseConfirmationComponent.prototype.transactionLineSet = function () {
|
|
37755
|
+
_super.prototype.transactionLineSet.call(this);
|
|
37756
|
+
this._updateBatchArray();
|
|
37757
|
+
};
|
|
37639
37758
|
TransactionLinePurchaseConfirmationComponent.prototype._updateBatchArray = function () {
|
|
37759
|
+
this._initNewDocDeliveryBatch();
|
|
37640
37760
|
this.filteredDocBatchArray = this.transactionLine.purchasePortalLine.docBatchArray.filter(function (value) { return value.historical.toLowerCase() === 'h' && value.docAmount >= 0; });
|
|
37641
37761
|
this._setMaxDocAmount();
|
|
37642
37762
|
};
|
|
@@ -37670,12 +37790,12 @@
|
|
|
37670
37790
|
.forEach((function (d) {
|
|
37671
37791
|
alreadyConfirmed = alreadyConfirmed + d.docAmount;
|
|
37672
37792
|
}));
|
|
37673
|
-
this.docDeliveryBatch.docAmount = this.transactionLine.amount - alreadyConfirmed;
|
|
37674
|
-
this.docDeliveryBatch.confirmedPrice = +this.transactionLine.purchasePortalLine.netOrderPrice;
|
|
37793
|
+
this.docDeliveryBatch.docAmount = (this.transactionLine.amount !== undefined ? this.transactionLine.amount : 0) - alreadyConfirmed;
|
|
37794
|
+
this.docDeliveryBatch.confirmedPrice = this.transactionLine.purchasePortalLine.netOrderPrice ? +this.transactionLine.purchasePortalLine.netOrderPrice : 0;
|
|
37675
37795
|
this._setMaxDocAmount();
|
|
37676
37796
|
};
|
|
37677
37797
|
return TransactionLinePurchaseConfirmationComponent;
|
|
37678
|
-
}());
|
|
37798
|
+
}(TransactionLineBaseComponent));
|
|
37679
37799
|
TransactionLinePurchaseConfirmationComponent.decorators = [
|
|
37680
37800
|
{ type: i0.Component, args: [{
|
|
37681
37801
|
selector: 'co-transaction-line-purchase-confirmation',
|
|
@@ -37688,14 +37808,17 @@
|
|
|
37688
37808
|
];
|
|
37689
37809
|
TransactionLinePurchaseConfirmationComponent.ctorParameters = function () { return [
|
|
37690
37810
|
{ type: TransactionHeaderService },
|
|
37811
|
+
{ type: TransactionLineService },
|
|
37812
|
+
{ type: TransactionEventService },
|
|
37813
|
+
{ type: TransactionService },
|
|
37691
37814
|
{ type: IconCacheService },
|
|
37815
|
+
{ type: TransactionScreenConfigurationService },
|
|
37692
37816
|
{ type: PurchaseConfirmationService },
|
|
37693
|
-
{ type:
|
|
37694
|
-
{ type:
|
|
37817
|
+
{ type: DictionaryService },
|
|
37818
|
+
{ type: TransactionImageService },
|
|
37819
|
+
{ type: i0.ChangeDetectorRef }
|
|
37695
37820
|
]; };
|
|
37696
37821
|
TransactionLinePurchaseConfirmationComponent.propDecorators = {
|
|
37697
|
-
transactionInfo: [{ type: i0.Input }],
|
|
37698
|
-
transactionLine: [{ type: i0.Input }],
|
|
37699
37822
|
showClass: [{ type: i0.HostBinding, args: ['class.co-transaction-line-purchase-confirmation',] }]
|
|
37700
37823
|
};
|
|
37701
37824
|
|
|
@@ -37851,8 +37974,8 @@
|
|
|
37851
37974
|
];
|
|
37852
37975
|
|
|
37853
37976
|
var TransactionLinesPopupComponent = /** @class */ (function () {
|
|
37854
|
-
function TransactionLinesPopupComponent() {
|
|
37855
|
-
this.
|
|
37977
|
+
function TransactionLinesPopupComponent(purchaseConfirmationService) {
|
|
37978
|
+
this.purchaseConfirmationService = purchaseConfirmationService;
|
|
37856
37979
|
this.clickOutside = new i0.EventEmitter();
|
|
37857
37980
|
this.transactionLineClick = new i0.EventEmitter();
|
|
37858
37981
|
}
|
|
@@ -37864,12 +37987,14 @@
|
|
|
37864
37987
|
TransactionLinesPopupComponent.decorators = [
|
|
37865
37988
|
{ type: i0.Component, args: [{
|
|
37866
37989
|
selector: 'co-transaction-lines-popup',
|
|
37867
|
-
template: "\n <div class=\"purchase-confirmation-transaction-lines-popup\" clickOutside\n [overlay]=\"parentForOverlay\"\n [rightAlign]=\"true\"\n (clickOutside)=\"clickOutside.emit()\">\n <table>\n <tr>\n <th class=\"line-nr right-align\" [textContent]=\"'LINE_NR' | localize\"></th>\n <th class=\"article-nr\" [textContent]=\"'ARTICLE_NR' | localize\"></th>\n <th class=\"article-nr\" [textContent]=\"'DESCRIPTION' | localize\"></th>\n <th class=\"amount right-align\" [textContent]=\"'AMOUNT' | localize\"></th>\n <th class=\"price right-align\" [textContent]=\"'PRICE' | localize\"></th>\n </tr>\n <tr class=\"transaction-line\" *ngFor=\"let
|
|
37990
|
+
template: "\n <div class=\"purchase-confirmation-transaction-lines-popup\" clickOutside\n [overlay]=\"parentForOverlay\"\n [rightAlign]=\"true\"\n (clickOutside)=\"clickOutside.emit()\">\n <table>\n <tr>\n <th class=\"color\"></th>\n <th class=\"line-nr right-align\" [textContent]=\"'LINE_NR' | localize\"></th>\n <th class=\"article-nr\" [textContent]=\"'ARTICLE_NR' | localize\"></th>\n <th class=\"article-nr\" [textContent]=\"'DESCRIPTION' | localize\"></th>\n <th class=\"amount right-align\" [textContent]=\"'AMOUNT' | localize\"></th>\n <th class=\"price right-align\" [textContent]=\"'PRICE' | localize\"></th>\n </tr>\n <tr class=\"transaction-line\" *ngFor=\"let viewModel of purchaseConfirmationService.transactionLinesViewModels\" (click)=\"transactionLineClick.emit(viewModel.line)\">\n <td class=\"color\" [style.background-color]=\"viewModel.color\"></td>\n <td class=\"right-align\" [textContent]=\"viewModel.line.lineNr\"></td>\n <td [textContent]=\"viewModel.line.articleNumber\"></td>\n <td [textContent]=\"viewModel.line.goodDescription\"></td>\n <td class=\"right-align\" [textContent]=\"viewModel.line.amount\"></td>\n <td class=\"right-align\" [textContent]=\"viewModel.line.price | coCurrency: true\"></td>\n </tr>\n </table>\n </div>\n ",
|
|
37868
37991
|
encapsulation: i0.ViewEncapsulation.None
|
|
37869
37992
|
},] }
|
|
37870
37993
|
];
|
|
37994
|
+
TransactionLinesPopupComponent.ctorParameters = function () { return [
|
|
37995
|
+
{ type: PurchaseConfirmationService }
|
|
37996
|
+
]; };
|
|
37871
37997
|
TransactionLinesPopupComponent.propDecorators = {
|
|
37872
|
-
transactionLines: [{ type: i0.Input }],
|
|
37873
37998
|
parentForOverlay: [{ type: i0.Input }],
|
|
37874
37999
|
clickOutside: [{ type: i0.Output }],
|
|
37875
38000
|
transactionLineClick: [{ type: i0.Output }],
|
|
@@ -37903,6 +38028,13 @@
|
|
|
37903
38028
|
this._transaction = value;
|
|
37904
38029
|
if (this._transaction && this._transaction.transactionLines) {
|
|
37905
38030
|
this.transactionLines = this._transaction.transactionLines.filter(function (tl) { return tl.isArticle; });
|
|
38031
|
+
// create the list of transaction lines without a reference to the original ones
|
|
38032
|
+
this._purchaseConfirmationService.transactionLines.length = 0;
|
|
38033
|
+
var transLines_1 = [];
|
|
38034
|
+
this.transactionLines.forEach(function (t) {
|
|
38035
|
+
transLines_1.push(Object.assign(new transactionLineInfo_bo.TransactionLineInfo(), t));
|
|
38036
|
+
});
|
|
38037
|
+
this._purchaseConfirmationService.transactionLines = transLines_1;
|
|
37906
38038
|
}
|
|
37907
38039
|
},
|
|
37908
38040
|
enumerable: false,
|
|
@@ -37963,7 +38095,7 @@
|
|
|
37963
38095
|
var _this = this;
|
|
37964
38096
|
if (confirmationVM && confirmationVM.confirmation) {
|
|
37965
38097
|
this.currentConfirmationViewModel = confirmationVM;
|
|
37966
|
-
this._popupComponentRef = this._overlayService.createComponent(TransactionLinesPopupComponent, { parentForOverlay: element
|
|
38098
|
+
this._popupComponentRef = this._overlayService.createComponent(TransactionLinesPopupComponent, { parentForOverlay: element }, {
|
|
37967
38099
|
transactionLineClick: function (line) { return _this._handleTransactionLineClick(line, _this.currentConfirmationViewModel.confirmation); },
|
|
37968
38100
|
clickOutside: function () { return _this.hidePopup(); }
|
|
37969
38101
|
});
|
|
@@ -45795,8 +45927,18 @@
|
|
|
45795
45927
|
|
|
45796
45928
|
var TransactionLinesBaseComponent = /** @class */ (function (_super) {
|
|
45797
45929
|
__extends(TransactionLinesBaseComponent, _super);
|
|
45798
|
-
function TransactionLinesBaseComponent() {
|
|
45799
|
-
var _this = _super.
|
|
45930
|
+
function TransactionLinesBaseComponent(transactionHeaderService, transactionEventService, service, iconCacheService, transactionScreenConfigurationService, dictionaryService, imageService, changeDetector, purchaseConfirmationService, lineSelectionService) {
|
|
45931
|
+
var _this = _super.call(this, transactionHeaderService, transactionEventService, iconCacheService, transactionScreenConfigurationService, imageService, dictionaryService, service, changeDetector) || this;
|
|
45932
|
+
_this.transactionHeaderService = transactionHeaderService;
|
|
45933
|
+
_this.transactionEventService = transactionEventService;
|
|
45934
|
+
_this.service = service;
|
|
45935
|
+
_this.iconCacheService = iconCacheService;
|
|
45936
|
+
_this.transactionScreenConfigurationService = transactionScreenConfigurationService;
|
|
45937
|
+
_this.dictionaryService = dictionaryService;
|
|
45938
|
+
_this.imageService = imageService;
|
|
45939
|
+
_this.changeDetector = changeDetector;
|
|
45940
|
+
_this.purchaseConfirmationService = purchaseConfirmationService;
|
|
45941
|
+
_this.lineSelectionService = lineSelectionService;
|
|
45800
45942
|
_this.icons = Icon;
|
|
45801
45943
|
_this.category = TransactionTypeCategory;
|
|
45802
45944
|
_this.saveTransactionLine = new i0.EventEmitter();
|
|
@@ -45820,6 +45962,16 @@
|
|
|
45820
45962
|
enumerable: false,
|
|
45821
45963
|
configurable: true
|
|
45822
45964
|
});
|
|
45965
|
+
Object.defineProperty(TransactionLinesBaseComponent.prototype, "selectedTransactionLine", {
|
|
45966
|
+
get: function () {
|
|
45967
|
+
return this.lineSelectionService.selectedTransactionLine;
|
|
45968
|
+
},
|
|
45969
|
+
set: function (value) {
|
|
45970
|
+
this.lineSelectionService.selectedTransactionLine = value;
|
|
45971
|
+
},
|
|
45972
|
+
enumerable: false,
|
|
45973
|
+
configurable: true
|
|
45974
|
+
});
|
|
45823
45975
|
TransactionLinesBaseComponent.prototype.ngOnInit = function () {
|
|
45824
45976
|
var _this = this;
|
|
45825
45977
|
_super.prototype.ngOnInit.call(this);
|
|
@@ -45903,6 +46055,18 @@
|
|
|
45903
46055
|
TransactionLinesBaseComponent.decorators = [
|
|
45904
46056
|
{ type: i0.Directive }
|
|
45905
46057
|
];
|
|
46058
|
+
TransactionLinesBaseComponent.ctorParameters = function () { return [
|
|
46059
|
+
{ type: TransactionHeaderService },
|
|
46060
|
+
{ type: TransactionEventService },
|
|
46061
|
+
{ type: TransactionService },
|
|
46062
|
+
{ type: IconCacheService },
|
|
46063
|
+
{ type: TransactionScreenConfigurationService },
|
|
46064
|
+
{ type: DictionaryService },
|
|
46065
|
+
{ type: TransactionImageService },
|
|
46066
|
+
{ type: i0.ChangeDetectorRef },
|
|
46067
|
+
{ type: PurchaseConfirmationService },
|
|
46068
|
+
{ type: LineSelectionService }
|
|
46069
|
+
]; };
|
|
45906
46070
|
TransactionLinesBaseComponent.propDecorators = {
|
|
45907
46071
|
activeCategory: [{ type: i0.Input }],
|
|
45908
46072
|
saveTransactionLine: [{ type: i0.Output }]
|
|
@@ -45910,17 +46074,8 @@
|
|
|
45910
46074
|
|
|
45911
46075
|
var TransactionLinesComponent = /** @class */ (function (_super) {
|
|
45912
46076
|
__extends(TransactionLinesComponent, _super);
|
|
45913
|
-
function TransactionLinesComponent(
|
|
45914
|
-
var _this = _super.
|
|
45915
|
-
_this.transactionHeaderService = transactionHeaderService;
|
|
45916
|
-
_this.transactionEventService = transactionEventService;
|
|
45917
|
-
_this.service = service;
|
|
45918
|
-
_this.iconCacheService = iconCacheService;
|
|
45919
|
-
_this.transactionScreenConfigurationService = transactionScreenConfigurationService;
|
|
45920
|
-
_this.dictionaryService = dictionaryService;
|
|
45921
|
-
_this.imageService = imageService;
|
|
45922
|
-
_this.changeDetector = changeDetector;
|
|
45923
|
-
_this._purchaseConfirmationService = _purchaseConfirmationService;
|
|
46077
|
+
function TransactionLinesComponent() {
|
|
46078
|
+
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
45924
46079
|
_this.customerPortal = false;
|
|
45925
46080
|
_this.showSidePanel = false;
|
|
45926
46081
|
_this.showSidePanelForConfirmationAI = false;
|
|
@@ -45934,7 +46089,7 @@
|
|
|
45934
46089
|
TransactionLinesComponent.prototype.ngOnInit = function () {
|
|
45935
46090
|
var _this = this;
|
|
45936
46091
|
_super.prototype.ngOnInit.call(this);
|
|
45937
|
-
this._subs.push(this.
|
|
46092
|
+
this._subs.push(this.purchaseConfirmationService.confirmationNeeded.subscribe(function (needed) {
|
|
45938
46093
|
if (needed) {
|
|
45939
46094
|
_this.showSidePanelForConfirmationAI = true;
|
|
45940
46095
|
_this.showSidePanel = true;
|
|
@@ -45958,7 +46113,8 @@
|
|
|
45958
46113
|
};
|
|
45959
46114
|
TransactionLinesComponent.prototype._checkActiveLine = function () {
|
|
45960
46115
|
if (this.showSidePanelForConfirmationAI && this.transactionLines && this.transactionLines.length > 0) {
|
|
45961
|
-
this.activeTransactionLine = this.transactionLines[0];
|
|
46116
|
+
// this.activeTransactionLine = this.transactionLines[0];
|
|
46117
|
+
this.lineSelectionService.selectedTransactionLine = this.transactionLines[0];
|
|
45962
46118
|
}
|
|
45963
46119
|
};
|
|
45964
46120
|
return TransactionLinesComponent;
|
|
@@ -45966,22 +46122,11 @@
|
|
|
45966
46122
|
TransactionLinesComponent.decorators = [
|
|
45967
46123
|
{ type: i0.Component, args: [{
|
|
45968
46124
|
selector: "co-transaction-lines",
|
|
45969
|
-
template: "\n <div *ngIf=\"customerPortal\">\n <div class=\"draggable-transaction-line\" *ngFor=\"let line of (historicTransactionLines ? historicTransactionLines : transactionLines);\">\n <co-transaction-line\n [transactionLine]=\"line\"\n [activeCategory]=\"category.SalesCustomerPortal\"\n [preview]=\"preview\"\n [readonly]=\"historicTransactionLines !== null\"\n (waitingForUserAction)=\"userActionRequired = $event\"\n [class.customer-line]=\"customerPortal\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(line, $event)\"\n ></co-transaction-line>\n </div>\n </div>\n\n <div *ngIf=\"!customerPortal\" #dropList cdkDropList cdkDropListOrientation=\"vertical\"\n class=\"transaction-lines-drag-drop-list\"\n [cdkDropListDisabled]=\"preview || userActionRequired\"\n [cdkDropListData]=\"transactionLines\"\n [cdkDropListEnterPredicate]=\"handleCanDragDrop\"\n (cdkDropListDropped)=\"handleDrop($event)\"\n (cdkDropListEntered)=\"handleDropListEntered($event)\"\n >\n <div class=\"draggable-transaction-line\" *ngFor=\"let line of (historicTransactionLines ? historicTransactionLines : transactionLines);let isFirst = first; trackBy:trackByFn;\" cdkDrag>\n <co-icon *ngIf=\"!preview\" class=\"transaction-line-drag-handle\"\n [class.show]=\"line === selectedTransactionLine && transactionLines.length > 1\" cdkDragHandle\n [iconData]=\"iconCacheService.getIcon(icons.GripDotsVerticalSolid)\">\n </co-icon>\n <co-transaction-line\n [draggedOver]=\"lineDraggedOver === line.lineNr\"\n [transactionLine]=\"line\"\n [activeCategory]=\"activeCategory\"\n [preview]=\"preview\"\n [isFirst]=\"isFirst\"\n [readonly]=\"historicTransactionLines !== null\"\n (waitingForUserAction)=\"userActionRequired = $event\"\n (click)=\"selectedTransactionLine = line\"\n (descriptionDblClick)=\"onDescriptionDblClick(line)\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(line, $event)\"\n ></co-transaction-line>\n </div>\n <ng-container *ngIf=\"activeCategory === category.SalesOrderDeliveryNote || activeCategory === category.SalesOrderInvoice || activeCategory === category.SalesOrderPlanning\">\n <div class=\"draggable-transaction-line\" *ngFor=\"let line of deliveryCostLines; trackBy:trackByFn;\" cdkDrag>\n <co-icon *ngIf=\"!preview\" class=\"transaction-line-drag-handle\"\n [class.show]=\"line === selectedTransactionLine\" cdkDragHandle\n [iconData]=\"iconCacheService.getIcon(icons.GripDotsVerticalSolid)\">\n </co-icon>\n <co-transaction-line\n [transactionLine]=\"line\"\n [activeCategory]=\"activeCategory\"\n [preview]=\"preview\"\n [readonly]=\"historicTransactionLines !== null\"\n [isFirst]=\"isFirst\"\n (waitingForUserAction)=\"userActionRequired = $event\"\n (click)=\"selectedTransactionLine = line\"\n (descriptionDblClick)=\"onDescriptionDblClick(line)\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(line, $event)\"\n ></co-transaction-line>\n </div>\n </ng-container>\n </div>\n <co-transaction-line-side-panel *ngIf=\"showSidePanel\"
|
|
46125
|
+
template: "\n <div *ngIf=\"customerPortal\">\n <div class=\"draggable-transaction-line\" *ngFor=\"let line of (historicTransactionLines ? historicTransactionLines : transactionLines);\">\n <co-transaction-line\n [transactionLine]=\"line\"\n [activeCategory]=\"category.SalesCustomerPortal\"\n [preview]=\"preview\"\n [readonly]=\"historicTransactionLines !== null\"\n (waitingForUserAction)=\"userActionRequired = $event\"\n [class.customer-line]=\"customerPortal\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(line, $event)\"\n ></co-transaction-line>\n </div>\n </div>\n\n <div *ngIf=\"!customerPortal\" #dropList cdkDropList cdkDropListOrientation=\"vertical\"\n class=\"transaction-lines-drag-drop-list\"\n [cdkDropListDisabled]=\"preview || userActionRequired\"\n [cdkDropListData]=\"transactionLines\"\n [cdkDropListEnterPredicate]=\"handleCanDragDrop\"\n (cdkDropListDropped)=\"handleDrop($event)\"\n (cdkDropListEntered)=\"handleDropListEntered($event)\"\n >\n <div class=\"draggable-transaction-line\" *ngFor=\"let line of (historicTransactionLines ? historicTransactionLines : transactionLines);let isFirst = first; trackBy:trackByFn;\" cdkDrag>\n <co-icon *ngIf=\"!preview\" class=\"transaction-line-drag-handle\"\n [class.show]=\"line === selectedTransactionLine && transactionLines.length > 1\" cdkDragHandle\n [iconData]=\"iconCacheService.getIcon(icons.GripDotsVerticalSolid)\">\n </co-icon>\n <co-transaction-line\n [draggedOver]=\"lineDraggedOver === line.lineNr\"\n [transactionLine]=\"line\"\n [activeCategory]=\"activeCategory\"\n [preview]=\"preview\"\n [isFirst]=\"isFirst\"\n [readonly]=\"historicTransactionLines !== null\"\n (waitingForUserAction)=\"userActionRequired = $event\"\n (click)=\"selectedTransactionLine = line\"\n (descriptionDblClick)=\"onDescriptionDblClick(line)\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(line, $event)\"\n ></co-transaction-line>\n </div>\n <ng-container *ngIf=\"activeCategory === category.SalesOrderDeliveryNote || activeCategory === category.SalesOrderInvoice || activeCategory === category.SalesOrderPlanning\">\n <div class=\"draggable-transaction-line\" *ngFor=\"let line of deliveryCostLines; trackBy:trackByFn;\" cdkDrag>\n <co-icon *ngIf=\"!preview\" class=\"transaction-line-drag-handle\"\n [class.show]=\"line === selectedTransactionLine\" cdkDragHandle\n [iconData]=\"iconCacheService.getIcon(icons.GripDotsVerticalSolid)\">\n </co-icon>\n <co-transaction-line\n [transactionLine]=\"line\"\n [activeCategory]=\"activeCategory\"\n [preview]=\"preview\"\n [readonly]=\"historicTransactionLines !== null\"\n [isFirst]=\"isFirst\"\n (waitingForUserAction)=\"userActionRequired = $event\"\n (click)=\"selectedTransactionLine = line\"\n (descriptionDblClick)=\"onDescriptionDblClick(line)\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(line, $event)\"\n ></co-transaction-line>\n </div>\n </ng-container>\n </div>\n <co-transaction-line-side-panel *ngIf=\"showSidePanel\"\n [activeCategory]=\"activeCategory\"\n (cancelClick)=\"showSidePanel = false\">\n </co-transaction-line-side-panel>\n ",
|
|
45970
46126
|
encapsulation: i0.ViewEncapsulation.None,
|
|
45971
46127
|
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
45972
46128
|
},] }
|
|
45973
46129
|
];
|
|
45974
|
-
TransactionLinesComponent.ctorParameters = function () { return [
|
|
45975
|
-
{ type: TransactionHeaderService },
|
|
45976
|
-
{ type: TransactionEventService },
|
|
45977
|
-
{ type: TransactionService },
|
|
45978
|
-
{ type: IconCacheService },
|
|
45979
|
-
{ type: TransactionScreenConfigurationService },
|
|
45980
|
-
{ type: DictionaryService },
|
|
45981
|
-
{ type: TransactionImageService },
|
|
45982
|
-
{ type: i0.ChangeDetectorRef },
|
|
45983
|
-
{ type: PurchaseConfirmationService }
|
|
45984
|
-
]; };
|
|
45985
46130
|
TransactionLinesComponent.propDecorators = {
|
|
45986
46131
|
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-lines",] }],
|
|
45987
46132
|
customerPortal: [{ type: i0.Input }]
|
|
@@ -53330,8 +53475,7 @@
|
|
|
53330
53475
|
],
|
|
53331
53476
|
providers: [
|
|
53332
53477
|
TransactionSettingsService,
|
|
53333
|
-
CheckoutModuleService
|
|
53334
|
-
CheckoutScreenConfigurationService
|
|
53478
|
+
CheckoutModuleService
|
|
53335
53479
|
],
|
|
53336
53480
|
exports: [CheckoutComponent, CheckoutOverviewRelationEditComponent],
|
|
53337
53481
|
bootstrap: [CheckoutComponent]
|
|
@@ -53396,74 +53540,6 @@
|
|
|
53396
53540
|
showClass: [{ type: i0.HostBinding, args: ['class.co-shopping-cart',] }]
|
|
53397
53541
|
};
|
|
53398
53542
|
|
|
53399
|
-
var LineSelectionService = /** @class */ (function () {
|
|
53400
|
-
function LineSelectionService(_transactionEventService, _transactionService) {
|
|
53401
|
-
var _this = this;
|
|
53402
|
-
this._transactionEventService = _transactionEventService;
|
|
53403
|
-
this._transactionService = _transactionService;
|
|
53404
|
-
this._subs = [];
|
|
53405
|
-
this._selectedLineUuidsForDelivery = [];
|
|
53406
|
-
this._selectedLineUuidsForInvoice = [];
|
|
53407
|
-
this._subs.push(this._transactionEventService.lineSelectedForDelivery.subscribe(function (data) {
|
|
53408
|
-
if (_this._checkAllLinesSelectedForDelivery(data)) {
|
|
53409
|
-
_this._selectedLineUuidsForDelivery.length = 0;
|
|
53410
|
-
_this._transactionEventService.allLinesSelectedForDelivery.next();
|
|
53411
|
-
}
|
|
53412
|
-
}), this._transactionEventService.lineSelectedForInvoice.subscribe(function (data) {
|
|
53413
|
-
if (_this._checkAllLinesSelectedForInvoice(data)) {
|
|
53414
|
-
_this._selectedLineUuidsForInvoice.length = 0;
|
|
53415
|
-
_this._transactionEventService.allLinesSelectedForInvoice.next();
|
|
53416
|
-
}
|
|
53417
|
-
}));
|
|
53418
|
-
}
|
|
53419
|
-
LineSelectionService.prototype.ngOnDestroy = function () {
|
|
53420
|
-
this._subs.forEach(function (s) { return s.unsubscribe(); });
|
|
53421
|
-
};
|
|
53422
|
-
LineSelectionService.prototype._checkAllLinesSelectedForDelivery = function (data) {
|
|
53423
|
-
var _this = this;
|
|
53424
|
-
if (data && data.lineUuid) {
|
|
53425
|
-
if (!data.selected) {
|
|
53426
|
-
return true;
|
|
53427
|
-
}
|
|
53428
|
-
this._selectedLineUuidsForDelivery.push(data.lineUuid);
|
|
53429
|
-
var transactionLinesForDelivery = this._transactionService.currentTransaction.transactionLines.filter(function (l) { return l.articleLineStatus && l.articleLineStatus.quantityToDeliver !== 0; });
|
|
53430
|
-
if (this._transactionService.currentTransaction.deliveryCostLines) {
|
|
53431
|
-
transactionLinesForDelivery = transactionLinesForDelivery.concat(this._transactionService.currentTransaction.deliveryCostLines);
|
|
53432
|
-
}
|
|
53433
|
-
var notFound = transactionLinesForDelivery.filter(function (l) { return _this._selectedLineUuidsForDelivery.indexOf(l.uuid) < 0; });
|
|
53434
|
-
return notFound.length === 0;
|
|
53435
|
-
}
|
|
53436
|
-
return false;
|
|
53437
|
-
};
|
|
53438
|
-
LineSelectionService.prototype._checkAllLinesSelectedForInvoice = function (data) {
|
|
53439
|
-
var _this = this;
|
|
53440
|
-
if (data && data.lineUuid) {
|
|
53441
|
-
if (!data.selected) {
|
|
53442
|
-
return true;
|
|
53443
|
-
}
|
|
53444
|
-
this._selectedLineUuidsForInvoice.push(data.lineUuid);
|
|
53445
|
-
var transactionLinesForInvoice = this._transactionService.currentTransaction.transactionLines.filter(function (l) { return l.articleLineStatus && l.articleLineStatus.quantityToInvoice !== 0; });
|
|
53446
|
-
if (this._transactionService.currentTransaction.deliveryCostLines) {
|
|
53447
|
-
transactionLinesForInvoice = transactionLinesForInvoice.concat(this._transactionService.currentTransaction.deliveryCostLines);
|
|
53448
|
-
}
|
|
53449
|
-
var notFound = transactionLinesForInvoice.filter(function (l) { return _this._selectedLineUuidsForInvoice.indexOf(l.uuid) < 0; });
|
|
53450
|
-
return notFound.length === 0;
|
|
53451
|
-
}
|
|
53452
|
-
return false;
|
|
53453
|
-
};
|
|
53454
|
-
return LineSelectionService;
|
|
53455
|
-
}());
|
|
53456
|
-
LineSelectionService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function LineSelectionService_Factory() { return new LineSelectionService(i0__namespace.ɵɵinject(TransactionEventService), i0__namespace.ɵɵinject(TransactionService)); }, token: LineSelectionService, providedIn: "root" });
|
|
53457
|
-
LineSelectionService.decorators = [
|
|
53458
|
-
{ type: i0.Injectable, args: [{
|
|
53459
|
-
providedIn: "root"
|
|
53460
|
-
},] }
|
|
53461
|
-
];
|
|
53462
|
-
LineSelectionService.ctorParameters = function () { return [
|
|
53463
|
-
{ type: TransactionEventService },
|
|
53464
|
-
{ type: TransactionService }
|
|
53465
|
-
]; };
|
|
53466
|
-
|
|
53467
53543
|
var TransactionInternalComponent = /** @class */ (function () {
|
|
53468
53544
|
function TransactionInternalComponent(iconCacheService, service, transactionEventService, _transactionConnectorService, _transactionEventService, _screenConfigurationService, _dialogService, _purchaseConfirmationService, _deliveryPlanningService, _transactionBaseService, _changeDetector, _transactionHeaderService, _lineSelection //Do not remove this. While it is not directly used it has its own important subscriptions.
|
|
53469
53545
|
) {
|
|
@@ -61245,667 +61321,666 @@
|
|
|
61245
61321
|
exports.Version = Version;
|
|
61246
61322
|
exports["ɵa"] = TransactionHeaderService;
|
|
61247
61323
|
exports["ɵb"] = PendingReasonService;
|
|
61248
|
-
exports["ɵba"] =
|
|
61249
|
-
exports["ɵbb"] =
|
|
61250
|
-
exports["ɵbc"] =
|
|
61251
|
-
exports["ɵbd"] =
|
|
61252
|
-
exports["ɵbe"] =
|
|
61253
|
-
exports["ɵbf"] =
|
|
61254
|
-
exports["ɵbg"] =
|
|
61255
|
-
exports["ɵbh"] =
|
|
61256
|
-
exports["ɵbi"] =
|
|
61257
|
-
exports["ɵbj"] =
|
|
61258
|
-
exports["ɵbk"] =
|
|
61259
|
-
exports["ɵbl"] =
|
|
61260
|
-
exports["ɵbm"] =
|
|
61261
|
-
exports["ɵbn"] =
|
|
61262
|
-
exports["ɵbo"] =
|
|
61263
|
-
exports["ɵbp"] =
|
|
61264
|
-
exports["ɵbq"] =
|
|
61265
|
-
exports["ɵbr"] =
|
|
61266
|
-
exports["ɵbs"] =
|
|
61267
|
-
exports["ɵbt"] =
|
|
61268
|
-
exports["ɵbu"] =
|
|
61269
|
-
exports["ɵbv"] =
|
|
61270
|
-
exports["ɵbw"] =
|
|
61271
|
-
exports["ɵbx"] =
|
|
61272
|
-
exports["ɵby"] =
|
|
61273
|
-
exports["ɵbz"] =
|
|
61324
|
+
exports["ɵba"] = WarehouseComponent;
|
|
61325
|
+
exports["ɵbb"] = ToastModule;
|
|
61326
|
+
exports["ɵbc"] = ToastComponent;
|
|
61327
|
+
exports["ɵbd"] = ImageDisplayComponent;
|
|
61328
|
+
exports["ɵbe"] = IconComponent;
|
|
61329
|
+
exports["ɵbf"] = CustomerGroupsComponent;
|
|
61330
|
+
exports["ɵbg"] = CustomerLanguagesComponent;
|
|
61331
|
+
exports["ɵbh"] = CustomerTitlesComponent;
|
|
61332
|
+
exports["ɵbi"] = StockStatusIndicatorComponent;
|
|
61333
|
+
exports["ɵbj"] = LazyRenderMasterDirective;
|
|
61334
|
+
exports["ɵbk"] = LazyRenderDirective;
|
|
61335
|
+
exports["ɵbl"] = TransactionSlaTile;
|
|
61336
|
+
exports["ɵbm"] = RelationAddressModule;
|
|
61337
|
+
exports["ɵbn"] = RelationAddressComponent;
|
|
61338
|
+
exports["ɵbo"] = RelationBaseComponent;
|
|
61339
|
+
exports["ɵbp"] = RelationAddressSelectModule;
|
|
61340
|
+
exports["ɵbq"] = RelationAddressTileModule;
|
|
61341
|
+
exports["ɵbr"] = TileModule;
|
|
61342
|
+
exports["ɵbs"] = TileComponent;
|
|
61343
|
+
exports["ɵbt"] = RelationAddressTileComponent;
|
|
61344
|
+
exports["ɵbu"] = RelationAddressSelectComponent;
|
|
61345
|
+
exports["ɵbv"] = StepperModule;
|
|
61346
|
+
exports["ɵbw"] = StepperComponent;
|
|
61347
|
+
exports["ɵbx"] = StepperBaseComponent;
|
|
61348
|
+
exports["ɵby"] = StepperStepComponent;
|
|
61349
|
+
exports["ɵbz"] = TransactionLineModule;
|
|
61274
61350
|
exports["ɵc"] = TransactionBaseService;
|
|
61275
|
-
exports["ɵca"] =
|
|
61276
|
-
exports["ɵcb"] =
|
|
61277
|
-
exports["ɵcc"] =
|
|
61278
|
-
exports["ɵcd"] =
|
|
61279
|
-
exports["ɵce"] =
|
|
61280
|
-
exports["ɵcf"] =
|
|
61281
|
-
exports["ɵcg"] =
|
|
61282
|
-
exports["ɵch"] =
|
|
61283
|
-
exports["ɵci"] =
|
|
61284
|
-
exports["ɵcj"] =
|
|
61285
|
-
exports["ɵck"] =
|
|
61286
|
-
exports["ɵcl"] =
|
|
61287
|
-
exports["ɵcm"] =
|
|
61288
|
-
exports["ɵcn"] =
|
|
61289
|
-
exports["ɵco"] =
|
|
61290
|
-
exports["ɵcp"] =
|
|
61291
|
-
exports["ɵcq"] =
|
|
61292
|
-
exports["ɵcr"] =
|
|
61293
|
-
exports["ɵcs"] =
|
|
61294
|
-
exports["ɵct"] =
|
|
61295
|
-
exports["ɵcu"] =
|
|
61296
|
-
exports["ɵcv"] =
|
|
61297
|
-
exports["ɵcw"] =
|
|
61298
|
-
exports["ɵcx"] =
|
|
61299
|
-
exports["ɵcy"] =
|
|
61300
|
-
exports["ɵcz"] =
|
|
61351
|
+
exports["ɵca"] = TransactionTextLineModule;
|
|
61352
|
+
exports["ɵcb"] = TransactionTextLineComponent;
|
|
61353
|
+
exports["ɵcc"] = TransactionLineBaseComponent;
|
|
61354
|
+
exports["ɵcd"] = TransactionBaseComponent;
|
|
61355
|
+
exports["ɵce"] = TransactionImageService;
|
|
61356
|
+
exports["ɵcf"] = TransactionLineService;
|
|
61357
|
+
exports["ɵcg"] = OrderLineSetService;
|
|
61358
|
+
exports["ɵch"] = TransactionOverviewLineModule;
|
|
61359
|
+
exports["ɵci"] = TransactionArticleTextModule;
|
|
61360
|
+
exports["ɵcj"] = TransactionLineImageAndDescriptionModule;
|
|
61361
|
+
exports["ɵck"] = TransactionLineDescriptionModule;
|
|
61362
|
+
exports["ɵcl"] = TransactionLineDescriptionComponent;
|
|
61363
|
+
exports["ɵcm"] = TransactionInputLineFieldBaseComponent;
|
|
61364
|
+
exports["ɵcn"] = TransactionLineImageAndDescriptionComponent;
|
|
61365
|
+
exports["ɵco"] = TransactionArticleTextComponent;
|
|
61366
|
+
exports["ɵcp"] = TransactionArticleTextOverviewModule;
|
|
61367
|
+
exports["ɵcq"] = TransactionArticleTextOverviewComponent;
|
|
61368
|
+
exports["ɵcr"] = TransactionLineActionButtonsModule;
|
|
61369
|
+
exports["ɵcs"] = TransactionLineActionButtonsComponent;
|
|
61370
|
+
exports["ɵct"] = TransactionLineActionButtonsPopupComponent;
|
|
61371
|
+
exports["ɵcu"] = EditableLabelModule;
|
|
61372
|
+
exports["ɵcv"] = EditableLabelComponent;
|
|
61373
|
+
exports["ɵcw"] = TransactionLinePriceModule;
|
|
61374
|
+
exports["ɵcx"] = TransactionLinePriceComponent;
|
|
61375
|
+
exports["ɵcy"] = TransactionBaseLineModule;
|
|
61376
|
+
exports["ɵcz"] = TransactionBaseLineComponent;
|
|
61301
61377
|
exports["ɵd"] = DictionaryService;
|
|
61302
|
-
exports["ɵda"] =
|
|
61303
|
-
exports["ɵdb"] =
|
|
61304
|
-
exports["ɵdc"] =
|
|
61305
|
-
exports["ɵdd"] =
|
|
61306
|
-
exports["ɵde"] =
|
|
61307
|
-
exports["ɵdf"] =
|
|
61308
|
-
exports["ɵdg"] =
|
|
61309
|
-
exports["ɵdh"] =
|
|
61310
|
-
exports["ɵdi"] =
|
|
61311
|
-
exports["ɵdj"] =
|
|
61312
|
-
exports["ɵdk"] =
|
|
61313
|
-
exports["ɵdl"] =
|
|
61314
|
-
exports["ɵdm"] =
|
|
61315
|
-
exports["ɵdn"] =
|
|
61316
|
-
exports["ɵdo"] =
|
|
61317
|
-
exports["ɵdp"] =
|
|
61318
|
-
exports["ɵdq"] =
|
|
61319
|
-
exports["ɵdr"] =
|
|
61320
|
-
exports["ɵds"] =
|
|
61321
|
-
exports["ɵdt"] =
|
|
61322
|
-
exports["ɵdu"] =
|
|
61323
|
-
exports["ɵdv"] =
|
|
61324
|
-
exports["ɵdw"] =
|
|
61325
|
-
exports["ɵdx"] =
|
|
61326
|
-
exports["ɵdy"] =
|
|
61327
|
-
exports["ɵdz"] =
|
|
61378
|
+
exports["ɵda"] = TransactionLineCommissionButtonModule;
|
|
61379
|
+
exports["ɵdb"] = DialogTransactionLineCommissionCodeModule;
|
|
61380
|
+
exports["ɵdc"] = TransactionLineCommissionCodeModule;
|
|
61381
|
+
exports["ɵdd"] = TransactionLineCheckboxModule;
|
|
61382
|
+
exports["ɵde"] = TransactionLineCheckboxListComponent;
|
|
61383
|
+
exports["ɵdf"] = TransactionLineCommissionCodeComponent;
|
|
61384
|
+
exports["ɵdg"] = TransactionFilterPopupLineBaseComponent;
|
|
61385
|
+
exports["ɵdh"] = DialogHeaderSearchModule;
|
|
61386
|
+
exports["ɵdi"] = DialogHeaderSearchComponent;
|
|
61387
|
+
exports["ɵdj"] = DialogTransactionLineCommissionCodeComponent;
|
|
61388
|
+
exports["ɵdk"] = DialogTransactionLineBaseComponent;
|
|
61389
|
+
exports["ɵdl"] = TransactionButtonModule;
|
|
61390
|
+
exports["ɵdm"] = TransactionButtonComponent;
|
|
61391
|
+
exports["ɵdn"] = TransactionLineCommissionButtonComponent;
|
|
61392
|
+
exports["ɵdo"] = TransactionLineWarehouseButtonModule;
|
|
61393
|
+
exports["ɵdp"] = DialogTransactionLineWarehouseModule;
|
|
61394
|
+
exports["ɵdq"] = TransactionLineWarehouseModule;
|
|
61395
|
+
exports["ɵdr"] = TransactionLineWarehouseComponent;
|
|
61396
|
+
exports["ɵds"] = DialogTransactionLineWarehouseComponent;
|
|
61397
|
+
exports["ɵdt"] = TransactionLineWarehouseButtonComponent;
|
|
61398
|
+
exports["ɵdu"] = TransactionLineDeliveryButtonModule;
|
|
61399
|
+
exports["ɵdv"] = DialogTransactionLineDeliveryMethodModule;
|
|
61400
|
+
exports["ɵdw"] = TransactionLineDeliveryMethodModule;
|
|
61401
|
+
exports["ɵdx"] = TransactionLineDeliveryMethodComponent;
|
|
61402
|
+
exports["ɵdy"] = DialogTransactionLineDeliveryMethodComponent;
|
|
61403
|
+
exports["ɵdz"] = TransactionLineDeliveryButtonComponent;
|
|
61328
61404
|
exports["ɵe"] = DynamicComponentService;
|
|
61329
|
-
exports["ɵea"] =
|
|
61330
|
-
exports["ɵeb"] =
|
|
61331
|
-
exports["ɵec"] =
|
|
61332
|
-
exports["ɵed"] =
|
|
61333
|
-
exports["ɵee"] =
|
|
61334
|
-
exports["ɵef"] =
|
|
61335
|
-
exports["ɵeg"] =
|
|
61336
|
-
exports["ɵeh"] =
|
|
61337
|
-
exports["ɵei"] =
|
|
61338
|
-
exports["ɵej"] =
|
|
61339
|
-
exports["ɵek"] =
|
|
61340
|
-
exports["ɵel"] =
|
|
61341
|
-
exports["ɵem"] =
|
|
61342
|
-
exports["ɵen"] =
|
|
61343
|
-
exports["ɵeo"] =
|
|
61344
|
-
exports["ɵep"] =
|
|
61345
|
-
exports["ɵeq"] =
|
|
61346
|
-
exports["ɵer"] =
|
|
61347
|
-
exports["ɵes"] =
|
|
61348
|
-
exports["ɵet"] =
|
|
61349
|
-
exports["ɵeu"] =
|
|
61350
|
-
exports["ɵev"] =
|
|
61351
|
-
exports["ɵew"] =
|
|
61352
|
-
exports["ɵex"] =
|
|
61353
|
-
exports["ɵey"] =
|
|
61354
|
-
exports["ɵez"] =
|
|
61405
|
+
exports["ɵea"] = TransactionLineDeliveryDateButtonModule;
|
|
61406
|
+
exports["ɵeb"] = TransactionDateSelectModule;
|
|
61407
|
+
exports["ɵec"] = TransactionDateSelectComponent;
|
|
61408
|
+
exports["ɵed"] = TransactionLineDeliveryDateButtonComponent;
|
|
61409
|
+
exports["ɵee"] = DialogTransactionLineVatModule;
|
|
61410
|
+
exports["ɵef"] = TransactionLineVatModule;
|
|
61411
|
+
exports["ɵeg"] = TransactionLineVatComponent;
|
|
61412
|
+
exports["ɵeh"] = DialogTransactionLineVatComponent;
|
|
61413
|
+
exports["ɵei"] = DialogTransactionLineDiscountModule;
|
|
61414
|
+
exports["ɵej"] = TransactionLinePriceListModule;
|
|
61415
|
+
exports["ɵek"] = TransactionLinePriceListComponent;
|
|
61416
|
+
exports["ɵel"] = TransactionLineDiscountPercentageModule;
|
|
61417
|
+
exports["ɵem"] = TransactionLineDiscountPercentageComponent;
|
|
61418
|
+
exports["ɵen"] = TransactionLineDiscountAmountModule;
|
|
61419
|
+
exports["ɵeo"] = TransactionLineDiscountAmountComponent;
|
|
61420
|
+
exports["ɵep"] = TransactionLineQuantumDiscountModule;
|
|
61421
|
+
exports["ɵeq"] = TransactionLineQuantumDiscountComponent;
|
|
61422
|
+
exports["ɵer"] = TransactionLineSpecialDiscountModule;
|
|
61423
|
+
exports["ɵes"] = TransactionLineSpecialDiscountComponent;
|
|
61424
|
+
exports["ɵet"] = DialogTransactionLinePriceListModule;
|
|
61425
|
+
exports["ɵeu"] = DialogTransactionLinePriceListComponent;
|
|
61426
|
+
exports["ɵev"] = DialogTransactionLineDiscountComponent;
|
|
61427
|
+
exports["ɵew"] = TransactionLineAmountModule;
|
|
61428
|
+
exports["ɵex"] = TransactionLineAmountComponent;
|
|
61429
|
+
exports["ɵey"] = TransactionLineVatButtonModule;
|
|
61430
|
+
exports["ɵez"] = TransactionLineVatButtonComponent;
|
|
61355
61431
|
exports["ɵf"] = CacheField;
|
|
61356
|
-
exports["ɵfa"] =
|
|
61357
|
-
exports["ɵfb"] =
|
|
61358
|
-
exports["ɵfc"] =
|
|
61359
|
-
exports["ɵfd"] =
|
|
61360
|
-
exports["ɵfe"] =
|
|
61361
|
-
exports["ɵff"] =
|
|
61362
|
-
exports["ɵfg"] =
|
|
61363
|
-
exports["ɵfh"] =
|
|
61364
|
-
exports["ɵfi"] =
|
|
61365
|
-
exports["ɵfj"] =
|
|
61366
|
-
exports["ɵfk"] =
|
|
61367
|
-
exports["ɵfl"] =
|
|
61368
|
-
exports["ɵfm"] =
|
|
61369
|
-
exports["ɵfn"] =
|
|
61370
|
-
exports["ɵfo"] =
|
|
61371
|
-
exports["ɵfp"] =
|
|
61372
|
-
exports["ɵfq"] =
|
|
61373
|
-
exports["ɵfr"] =
|
|
61374
|
-
exports["ɵfs"] =
|
|
61375
|
-
exports["ɵft"] =
|
|
61376
|
-
exports["ɵfu"] =
|
|
61377
|
-
exports["ɵfv"] =
|
|
61378
|
-
exports["ɵfw"] =
|
|
61379
|
-
exports["ɵfx"] =
|
|
61380
|
-
exports["ɵfy"] =
|
|
61381
|
-
exports["ɵfz"] =
|
|
61432
|
+
exports["ɵfa"] = TransactionLineDiscountButtonModule;
|
|
61433
|
+
exports["ɵfb"] = TransactionLineDiscountButtonComponent;
|
|
61434
|
+
exports["ɵfc"] = TransactionLineDeliveryDateModule;
|
|
61435
|
+
exports["ɵfd"] = TransactionLineDeliveryDateComponent;
|
|
61436
|
+
exports["ɵfe"] = TransactionMarginInfoLineModule;
|
|
61437
|
+
exports["ɵff"] = TransactionLineLabelModule;
|
|
61438
|
+
exports["ɵfg"] = TransactionLineLabelComponent;
|
|
61439
|
+
exports["ɵfh"] = TransactionMarginInfoLineComponent;
|
|
61440
|
+
exports["ɵfi"] = TransactionPlanningLineModule;
|
|
61441
|
+
exports["ɵfj"] = TransactionPlanningLineComponent;
|
|
61442
|
+
exports["ɵfk"] = TransactionLineDirectSellButtonModule;
|
|
61443
|
+
exports["ɵfl"] = DialogTransactionLineDirectSellModule;
|
|
61444
|
+
exports["ɵfm"] = TransactionLineDirectSellModule;
|
|
61445
|
+
exports["ɵfn"] = TransactionLineDirectSellComponent;
|
|
61446
|
+
exports["ɵfo"] = DialogTransactionLineDirectSellComponent;
|
|
61447
|
+
exports["ɵfp"] = TransactionLineDirectSellButtonComponent;
|
|
61448
|
+
exports["ɵfq"] = TransactionNavigationButtonListModule;
|
|
61449
|
+
exports["ɵfr"] = TransactionNavigationButtonModule;
|
|
61450
|
+
exports["ɵfs"] = TransactionNavigationButtonComponent;
|
|
61451
|
+
exports["ɵft"] = TransactionNavigationButtonListComponent;
|
|
61452
|
+
exports["ɵfu"] = TransactionOverviewLineComponent;
|
|
61453
|
+
exports["ɵfv"] = TransactionPurchaseLineModule;
|
|
61454
|
+
exports["ɵfw"] = TransactionLineSupplierButtonModule;
|
|
61455
|
+
exports["ɵfx"] = TransactionLineSupplierModule;
|
|
61456
|
+
exports["ɵfy"] = TransactionLineSupplierComponent;
|
|
61457
|
+
exports["ɵfz"] = DialogTransactionLineSupplierModule;
|
|
61382
61458
|
exports["ɵg"] = ErrorService;
|
|
61383
|
-
exports["ɵga"] =
|
|
61384
|
-
exports["ɵgb"] =
|
|
61385
|
-
exports["ɵgc"] =
|
|
61386
|
-
exports["ɵgd"] =
|
|
61387
|
-
exports["ɵge"] =
|
|
61388
|
-
exports["ɵgf"] =
|
|
61389
|
-
exports["ɵgg"] =
|
|
61390
|
-
exports["ɵgh"] =
|
|
61391
|
-
exports["ɵgi"] =
|
|
61392
|
-
exports["ɵgj"] =
|
|
61393
|
-
exports["ɵgk"] =
|
|
61394
|
-
exports["ɵgl"] =
|
|
61395
|
-
exports["ɵgm"] =
|
|
61396
|
-
exports["ɵgn"] =
|
|
61397
|
-
exports["ɵgo"] =
|
|
61398
|
-
exports["ɵgp"] =
|
|
61399
|
-
exports["ɵgq"] =
|
|
61400
|
-
exports["ɵgr"] =
|
|
61401
|
-
exports["ɵgs"] =
|
|
61402
|
-
exports["ɵgt"] =
|
|
61403
|
-
exports["ɵgu"] =
|
|
61404
|
-
exports["ɵgv"] =
|
|
61405
|
-
exports["ɵgw"] =
|
|
61406
|
-
exports["ɵgx"] =
|
|
61407
|
-
exports["ɵgy"] =
|
|
61408
|
-
exports["ɵgz"] =
|
|
61459
|
+
exports["ɵga"] = DialogTransactionLineSupplierComponent;
|
|
61460
|
+
exports["ɵgb"] = TransactionLineSupplierButtonComponent;
|
|
61461
|
+
exports["ɵgc"] = TransactionLineDropShipmentButtonModule;
|
|
61462
|
+
exports["ɵgd"] = TransactionLineDropShipmentButtonComponent;
|
|
61463
|
+
exports["ɵge"] = TransactionLineConfirmedDeliveryDateButtonModule;
|
|
61464
|
+
exports["ɵgf"] = TransactionLineConfirmedDeliveryDateButtonComponent;
|
|
61465
|
+
exports["ɵgg"] = TransactionPurchaseLineComponent;
|
|
61466
|
+
exports["ɵgh"] = TransactionPurchaseLineBaseComponent;
|
|
61467
|
+
exports["ɵgi"] = TransactionSalesReservationService;
|
|
61468
|
+
exports["ɵgj"] = TransactionGoodsAllocationLineModule;
|
|
61469
|
+
exports["ɵgk"] = TransactionLineWarehouseLocationButtonModule;
|
|
61470
|
+
exports["ɵgl"] = DialogTransactionLineWarehouseLocationModule;
|
|
61471
|
+
exports["ɵgm"] = TransactionLineWarehouseLocationModule;
|
|
61472
|
+
exports["ɵgn"] = TransactionLineWarehouseLocationComponent;
|
|
61473
|
+
exports["ɵgo"] = ArticleService;
|
|
61474
|
+
exports["ɵgp"] = DialogTransactionLineWarehouseLocationComponent;
|
|
61475
|
+
exports["ɵgq"] = TransactionLineWarehouseLocationButtonComponent;
|
|
61476
|
+
exports["ɵgr"] = TransactionGoodsAllocationLineComponent;
|
|
61477
|
+
exports["ɵgs"] = TransactionCustomerPortalLineModule;
|
|
61478
|
+
exports["ɵgt"] = TransactionCustomerPortalLineComponent;
|
|
61479
|
+
exports["ɵgu"] = TransactionOrderDeliveryLineModule;
|
|
61480
|
+
exports["ɵgv"] = TransactionOrderDeliveryLineComponent;
|
|
61481
|
+
exports["ɵgw"] = TransactionOrderDeliveryLineBaseComponent;
|
|
61482
|
+
exports["ɵgx"] = TransactionInvoiceLineModule;
|
|
61483
|
+
exports["ɵgy"] = TransactionInvoiceLineComponent;
|
|
61484
|
+
exports["ɵgz"] = TransactionInvoiceLineBaseComponent;
|
|
61409
61485
|
exports["ɵh"] = ArticleConnectorService;
|
|
61410
|
-
exports["ɵha"] =
|
|
61411
|
-
exports["ɵhb"] =
|
|
61412
|
-
exports["ɵhc"] =
|
|
61413
|
-
exports["ɵhd"] =
|
|
61414
|
-
exports["ɵhe"] =
|
|
61415
|
-
exports["ɵhf"] =
|
|
61416
|
-
exports["ɵhg"] =
|
|
61417
|
-
exports["ɵhh"] =
|
|
61418
|
-
exports["ɵhi"] =
|
|
61419
|
-
exports["ɵhj"] =
|
|
61420
|
-
exports["ɵhk"] =
|
|
61421
|
-
exports["ɵhl"] =
|
|
61422
|
-
exports["ɵhm"] =
|
|
61423
|
-
exports["ɵhn"] =
|
|
61424
|
-
exports["ɵho"] =
|
|
61425
|
-
exports["ɵhp"] =
|
|
61426
|
-
exports["ɵhq"] =
|
|
61427
|
-
exports["ɵhr"] =
|
|
61428
|
-
exports["ɵhs"] =
|
|
61429
|
-
exports["ɵht"] =
|
|
61430
|
-
exports["ɵhu"] =
|
|
61431
|
-
exports["ɵhv"] =
|
|
61432
|
-
exports["ɵhw"] =
|
|
61433
|
-
exports["ɵhx"] =
|
|
61434
|
-
exports["ɵhy"] =
|
|
61435
|
-
exports["ɵhz"] =
|
|
61486
|
+
exports["ɵha"] = TransactionPickedLineModule;
|
|
61487
|
+
exports["ɵhb"] = TransactionPickedLineComponent;
|
|
61488
|
+
exports["ɵhc"] = TransactionToBePickedLineModule;
|
|
61489
|
+
exports["ɵhd"] = TransactionToBePickedLineComponent;
|
|
61490
|
+
exports["ɵhe"] = TransactionPurchaseOverviewLineModule;
|
|
61491
|
+
exports["ɵhf"] = TransactionPurchaseOverviewLineComponent;
|
|
61492
|
+
exports["ɵhg"] = TransactionReceiveGoodsLineModule;
|
|
61493
|
+
exports["ɵhh"] = TransactionPrintPackageStickerModule;
|
|
61494
|
+
exports["ɵhi"] = TransactionPrintPackageStickerComponent;
|
|
61495
|
+
exports["ɵhj"] = TransactionQuickAccessSendMethodBaseComponent;
|
|
61496
|
+
exports["ɵhk"] = TransactionHeaderBaseComponent;
|
|
61497
|
+
exports["ɵhl"] = TransactionReceiveGoodsLineComponent;
|
|
61498
|
+
exports["ɵhm"] = TransactionReceiveGoodsLineBaseComponent;
|
|
61499
|
+
exports["ɵhn"] = TransactionPurchaseOrderLineModule;
|
|
61500
|
+
exports["ɵho"] = TransactionPurchasePortalLineGrossOrderPriceModule;
|
|
61501
|
+
exports["ɵhp"] = TransactionPurchasePortalLineGrossOrderPriceComponent;
|
|
61502
|
+
exports["ɵhq"] = TransactionPurchasePortalLineNetOrderPriceModule;
|
|
61503
|
+
exports["ɵhr"] = TransactionPurchasePortalLineNetOrderPriceComponent;
|
|
61504
|
+
exports["ɵhs"] = TransactionPurchasePortalLineDeliveryDateModule;
|
|
61505
|
+
exports["ɵht"] = TransactionPurchasePortalLineDeliveryDateComponent;
|
|
61506
|
+
exports["ɵhu"] = TransactionPurchasePortalLineConfirmedDeliveryDateModule;
|
|
61507
|
+
exports["ɵhv"] = TransactionPurchasePortalLineConfirmedDeliveryDateComponent;
|
|
61508
|
+
exports["ɵhw"] = TransactionLineSupplierDeliveryDateButtonModule;
|
|
61509
|
+
exports["ɵhx"] = TransactionLineSupplierDeliveryDateButtonComponent;
|
|
61510
|
+
exports["ɵhy"] = TransactionLineConfirmedPriceModule;
|
|
61511
|
+
exports["ɵhz"] = TransactionLineConfirmedPriceComponent;
|
|
61436
61512
|
exports["ɵi"] = CheckoutModuleService;
|
|
61437
|
-
exports["ɵia"] =
|
|
61438
|
-
exports["ɵib"] =
|
|
61439
|
-
exports["ɵic"] =
|
|
61440
|
-
exports["ɵid"] =
|
|
61441
|
-
exports["ɵie"] =
|
|
61442
|
-
exports["ɵif"] =
|
|
61443
|
-
exports["ɵig"] =
|
|
61444
|
-
exports["ɵih"] =
|
|
61445
|
-
exports["ɵii"] =
|
|
61446
|
-
exports["ɵij"] =
|
|
61447
|
-
exports["ɵik"] =
|
|
61448
|
-
exports["ɵil"] =
|
|
61449
|
-
exports["ɵim"] =
|
|
61450
|
-
exports["ɵin"] =
|
|
61451
|
-
exports["ɵio"] =
|
|
61452
|
-
exports["ɵip"] =
|
|
61453
|
-
exports["ɵiq"] =
|
|
61454
|
-
exports["ɵir"] =
|
|
61455
|
-
exports["ɵis"] =
|
|
61456
|
-
exports["ɵit"] =
|
|
61457
|
-
exports["ɵiu"] =
|
|
61458
|
-
exports["ɵiv"] =
|
|
61459
|
-
exports["ɵiw"] =
|
|
61460
|
-
exports["ɵix"] =
|
|
61461
|
-
exports["ɵiy"] =
|
|
61462
|
-
exports["ɵiz"] =
|
|
61463
|
-
exports["ɵj"] =
|
|
61464
|
-
exports["ɵja"] =
|
|
61465
|
-
exports["ɵjb"] =
|
|
61466
|
-
exports["ɵjc"] =
|
|
61467
|
-
exports["ɵjd"] =
|
|
61468
|
-
exports["ɵje"] =
|
|
61469
|
-
exports["ɵjf"] =
|
|
61470
|
-
exports["ɵjg"] =
|
|
61471
|
-
exports["ɵjh"] =
|
|
61472
|
-
exports["ɵji"] =
|
|
61473
|
-
exports["ɵjj"] =
|
|
61474
|
-
exports["ɵjk"] =
|
|
61475
|
-
exports["ɵjl"] =
|
|
61476
|
-
exports["ɵjm"] =
|
|
61477
|
-
exports["ɵjn"] =
|
|
61478
|
-
exports["ɵjo"] =
|
|
61479
|
-
exports["ɵjp"] =
|
|
61480
|
-
exports["ɵjq"] =
|
|
61481
|
-
exports["ɵjr"] =
|
|
61482
|
-
exports["ɵjs"] =
|
|
61483
|
-
exports["ɵjt"] =
|
|
61484
|
-
exports["ɵju"] =
|
|
61485
|
-
exports["ɵjv"] =
|
|
61486
|
-
exports["ɵjw"] =
|
|
61487
|
-
exports["ɵjx"] =
|
|
61488
|
-
exports["ɵjy"] =
|
|
61489
|
-
exports["ɵjz"] =
|
|
61490
|
-
exports["ɵk"] =
|
|
61491
|
-
exports["ɵka"] =
|
|
61492
|
-
exports["ɵkb"] =
|
|
61493
|
-
exports["ɵkc"] =
|
|
61494
|
-
exports["ɵkd"] =
|
|
61495
|
-
exports["ɵke"] =
|
|
61496
|
-
exports["ɵkf"] =
|
|
61497
|
-
exports["ɵkg"] =
|
|
61498
|
-
exports["ɵkh"] =
|
|
61499
|
-
exports["ɵki"] =
|
|
61500
|
-
exports["ɵkj"] =
|
|
61501
|
-
exports["ɵkk"] =
|
|
61502
|
-
exports["ɵkl"] =
|
|
61503
|
-
exports["ɵkm"] =
|
|
61504
|
-
exports["ɵkn"] =
|
|
61505
|
-
exports["ɵko"] =
|
|
61506
|
-
exports["ɵkp"] =
|
|
61507
|
-
exports["ɵkq"] =
|
|
61508
|
-
exports["ɵkr"] =
|
|
61509
|
-
exports["ɵks"] =
|
|
61510
|
-
exports["ɵkt"] =
|
|
61511
|
-
exports["ɵku"] =
|
|
61512
|
-
exports["ɵkv"] =
|
|
61513
|
-
exports["ɵkw"] =
|
|
61514
|
-
exports["ɵkx"] =
|
|
61515
|
-
exports["ɵky"] =
|
|
61516
|
-
exports["ɵkz"] =
|
|
61517
|
-
exports["ɵl"] =
|
|
61518
|
-
exports["ɵla"] =
|
|
61519
|
-
exports["ɵlb"] =
|
|
61520
|
-
exports["ɵlc"] =
|
|
61521
|
-
exports["ɵld"] =
|
|
61522
|
-
exports["ɵle"] =
|
|
61523
|
-
exports["ɵlf"] =
|
|
61524
|
-
exports["ɵlg"] =
|
|
61525
|
-
exports["ɵlh"] =
|
|
61526
|
-
exports["ɵli"] =
|
|
61527
|
-
exports["ɵlj"] =
|
|
61528
|
-
exports["ɵlk"] =
|
|
61529
|
-
exports["ɵll"] =
|
|
61530
|
-
exports["ɵlm"] =
|
|
61531
|
-
exports["ɵln"] =
|
|
61532
|
-
exports["ɵlo"] =
|
|
61533
|
-
exports["ɵlp"] =
|
|
61534
|
-
exports["ɵlq"] =
|
|
61535
|
-
exports["ɵlr"] =
|
|
61536
|
-
exports["ɵls"] =
|
|
61537
|
-
exports["ɵlt"] =
|
|
61538
|
-
exports["ɵlu"] =
|
|
61539
|
-
exports["ɵlv"] =
|
|
61540
|
-
exports["ɵlw"] =
|
|
61541
|
-
exports["ɵlx"] =
|
|
61542
|
-
exports["ɵly"] =
|
|
61543
|
-
exports["ɵlz"] =
|
|
61544
|
-
exports["ɵm"] =
|
|
61545
|
-
exports["ɵma"] =
|
|
61546
|
-
exports["ɵmb"] =
|
|
61547
|
-
exports["ɵmc"] =
|
|
61548
|
-
exports["ɵmd"] =
|
|
61549
|
-
exports["ɵme"] =
|
|
61550
|
-
exports["ɵmf"] =
|
|
61551
|
-
exports["ɵmg"] =
|
|
61552
|
-
exports["ɵmh"] =
|
|
61553
|
-
exports["ɵmi"] =
|
|
61554
|
-
exports["ɵmj"] =
|
|
61555
|
-
exports["ɵmk"] =
|
|
61556
|
-
exports["ɵml"] =
|
|
61557
|
-
exports["ɵmm"] =
|
|
61558
|
-
exports["ɵmn"] =
|
|
61559
|
-
exports["ɵmo"] =
|
|
61560
|
-
exports["ɵmp"] =
|
|
61561
|
-
exports["ɵmq"] =
|
|
61562
|
-
exports["ɵmr"] =
|
|
61563
|
-
exports["ɵms"] =
|
|
61564
|
-
exports["ɵmt"] =
|
|
61565
|
-
exports["ɵmu"] =
|
|
61566
|
-
exports["ɵmv"] =
|
|
61567
|
-
exports["ɵmw"] =
|
|
61568
|
-
exports["ɵmx"] =
|
|
61569
|
-
exports["ɵmy"] =
|
|
61570
|
-
exports["ɵmz"] =
|
|
61571
|
-
exports["ɵn"] =
|
|
61572
|
-
exports["ɵna"] =
|
|
61573
|
-
exports["ɵnb"] =
|
|
61574
|
-
exports["ɵnc"] =
|
|
61575
|
-
exports["ɵnd"] =
|
|
61576
|
-
exports["ɵne"] =
|
|
61577
|
-
exports["ɵnf"] =
|
|
61578
|
-
exports["ɵng"] =
|
|
61579
|
-
exports["ɵnh"] =
|
|
61580
|
-
exports["ɵni"] =
|
|
61581
|
-
exports["ɵnj"] =
|
|
61582
|
-
exports["ɵnk"] =
|
|
61583
|
-
exports["ɵnl"] =
|
|
61584
|
-
exports["ɵnm"] =
|
|
61585
|
-
exports["ɵnn"] =
|
|
61586
|
-
exports["ɵno"] =
|
|
61587
|
-
exports["ɵnp"] =
|
|
61588
|
-
exports["ɵnq"] =
|
|
61589
|
-
exports["ɵnr"] =
|
|
61590
|
-
exports["ɵns"] =
|
|
61591
|
-
exports["ɵnt"] =
|
|
61592
|
-
exports["ɵnu"] =
|
|
61593
|
-
exports["ɵnv"] =
|
|
61594
|
-
exports["ɵnw"] =
|
|
61595
|
-
exports["ɵnx"] =
|
|
61596
|
-
exports["ɵny"] =
|
|
61597
|
-
exports["ɵnz"] =
|
|
61598
|
-
exports["ɵo"] =
|
|
61599
|
-
exports["ɵoa"] =
|
|
61600
|
-
exports["ɵob"] =
|
|
61601
|
-
exports["ɵoc"] =
|
|
61602
|
-
exports["ɵod"] =
|
|
61603
|
-
exports["ɵoe"] =
|
|
61604
|
-
exports["ɵof"] =
|
|
61605
|
-
exports["ɵog"] =
|
|
61606
|
-
exports["ɵoh"] =
|
|
61607
|
-
exports["ɵoi"] =
|
|
61608
|
-
exports["ɵoj"] =
|
|
61609
|
-
exports["ɵok"] =
|
|
61610
|
-
exports["ɵol"] =
|
|
61611
|
-
exports["ɵom"] =
|
|
61612
|
-
exports["ɵon"] =
|
|
61613
|
-
exports["ɵoo"] =
|
|
61614
|
-
exports["ɵop"] =
|
|
61615
|
-
exports["ɵoq"] =
|
|
61616
|
-
exports["ɵor"] =
|
|
61617
|
-
exports["ɵos"] =
|
|
61618
|
-
exports["ɵot"] =
|
|
61619
|
-
exports["ɵou"] =
|
|
61620
|
-
exports["ɵov"] =
|
|
61621
|
-
exports["ɵow"] =
|
|
61622
|
-
exports["ɵox"] =
|
|
61623
|
-
exports["ɵoy"] =
|
|
61624
|
-
exports["ɵoz"] =
|
|
61625
|
-
exports["ɵp"] =
|
|
61626
|
-
exports["ɵpa"] =
|
|
61627
|
-
exports["ɵpb"] =
|
|
61628
|
-
exports["ɵpc"] =
|
|
61629
|
-
exports["ɵpd"] =
|
|
61630
|
-
exports["ɵpe"] =
|
|
61631
|
-
exports["ɵpf"] =
|
|
61632
|
-
exports["ɵpg"] =
|
|
61633
|
-
exports["ɵph"] =
|
|
61634
|
-
exports["ɵpi"] =
|
|
61635
|
-
exports["ɵpj"] =
|
|
61636
|
-
exports["ɵpk"] =
|
|
61637
|
-
exports["ɵpl"] =
|
|
61638
|
-
exports["ɵpm"] =
|
|
61639
|
-
exports["ɵpn"] =
|
|
61640
|
-
exports["ɵpo"] =
|
|
61641
|
-
exports["ɵpp"] =
|
|
61642
|
-
exports["ɵpq"] =
|
|
61643
|
-
exports["ɵpr"] =
|
|
61644
|
-
exports["ɵps"] =
|
|
61645
|
-
exports["ɵpt"] =
|
|
61646
|
-
exports["ɵpu"] =
|
|
61647
|
-
exports["ɵpv"] =
|
|
61648
|
-
exports["ɵpw"] =
|
|
61649
|
-
exports["ɵpx"] =
|
|
61650
|
-
exports["ɵpy"] =
|
|
61651
|
-
exports["ɵpz"] =
|
|
61652
|
-
exports["ɵq"] =
|
|
61653
|
-
exports["ɵqa"] =
|
|
61654
|
-
exports["ɵqb"] =
|
|
61655
|
-
exports["ɵqc"] =
|
|
61656
|
-
exports["ɵqd"] =
|
|
61657
|
-
exports["ɵqe"] =
|
|
61658
|
-
exports["ɵqf"] =
|
|
61659
|
-
exports["ɵqg"] =
|
|
61660
|
-
exports["ɵqh"] =
|
|
61661
|
-
exports["ɵqi"] =
|
|
61662
|
-
exports["ɵqj"] =
|
|
61663
|
-
exports["ɵqk"] =
|
|
61664
|
-
exports["ɵql"] =
|
|
61665
|
-
exports["ɵqm"] =
|
|
61666
|
-
exports["ɵqn"] =
|
|
61667
|
-
exports["ɵqo"] =
|
|
61668
|
-
exports["ɵqp"] =
|
|
61669
|
-
exports["ɵqq"] =
|
|
61670
|
-
exports["ɵqr"] =
|
|
61671
|
-
exports["ɵqs"] =
|
|
61672
|
-
exports["ɵqt"] =
|
|
61673
|
-
exports["ɵqu"] =
|
|
61674
|
-
exports["ɵqv"] =
|
|
61675
|
-
exports["ɵqw"] =
|
|
61676
|
-
exports["ɵqx"] =
|
|
61677
|
-
exports["ɵqy"] =
|
|
61678
|
-
exports["ɵqz"] =
|
|
61679
|
-
exports["ɵr"] =
|
|
61680
|
-
exports["ɵra"] =
|
|
61681
|
-
exports["ɵrb"] =
|
|
61682
|
-
exports["ɵrc"] =
|
|
61683
|
-
exports["ɵrd"] =
|
|
61684
|
-
exports["ɵre"] =
|
|
61685
|
-
exports["ɵrf"] =
|
|
61686
|
-
exports["ɵrg"] =
|
|
61687
|
-
exports["ɵrh"] =
|
|
61688
|
-
exports["ɵri"] =
|
|
61689
|
-
exports["ɵrj"] =
|
|
61690
|
-
exports["ɵrk"] =
|
|
61691
|
-
exports["ɵrl"] =
|
|
61692
|
-
exports["ɵrm"] =
|
|
61693
|
-
exports["ɵrn"] =
|
|
61694
|
-
exports["ɵro"] =
|
|
61695
|
-
exports["ɵrp"] =
|
|
61696
|
-
exports["ɵrq"] =
|
|
61697
|
-
exports["ɵrr"] =
|
|
61698
|
-
exports["ɵrs"] =
|
|
61699
|
-
exports["ɵrt"] =
|
|
61700
|
-
exports["ɵru"] =
|
|
61701
|
-
exports["ɵrv"] =
|
|
61702
|
-
exports["ɵrw"] =
|
|
61703
|
-
exports["ɵrx"] =
|
|
61704
|
-
exports["ɵry"] =
|
|
61705
|
-
exports["ɵrz"] =
|
|
61706
|
-
exports["ɵs"] =
|
|
61707
|
-
exports["ɵsa"] =
|
|
61708
|
-
exports["ɵsb"] =
|
|
61709
|
-
exports["ɵsc"] =
|
|
61710
|
-
exports["ɵsd"] =
|
|
61711
|
-
exports["ɵse"] =
|
|
61712
|
-
exports["ɵsf"] =
|
|
61713
|
-
exports["ɵsg"] =
|
|
61714
|
-
exports["ɵsh"] =
|
|
61715
|
-
exports["ɵsi"] =
|
|
61716
|
-
exports["ɵsj"] =
|
|
61717
|
-
exports["ɵsk"] =
|
|
61718
|
-
exports["ɵsl"] =
|
|
61719
|
-
exports["ɵsm"] =
|
|
61720
|
-
exports["ɵsn"] =
|
|
61721
|
-
exports["ɵso"] =
|
|
61722
|
-
exports["ɵsp"] =
|
|
61723
|
-
exports["ɵsq"] =
|
|
61724
|
-
exports["ɵsr"] =
|
|
61725
|
-
exports["ɵss"] =
|
|
61726
|
-
exports["ɵst"] =
|
|
61727
|
-
exports["ɵsu"] =
|
|
61728
|
-
exports["ɵsv"] =
|
|
61729
|
-
exports["ɵsw"] =
|
|
61730
|
-
exports["ɵsx"] =
|
|
61731
|
-
exports["ɵsy"] =
|
|
61732
|
-
exports["ɵsz"] =
|
|
61733
|
-
exports["ɵt"] =
|
|
61734
|
-
exports["ɵta"] =
|
|
61735
|
-
exports["ɵtb"] =
|
|
61736
|
-
exports["ɵtc"] =
|
|
61737
|
-
exports["ɵtd"] =
|
|
61738
|
-
exports["ɵte"] =
|
|
61739
|
-
exports["ɵtf"] =
|
|
61740
|
-
exports["ɵtg"] =
|
|
61741
|
-
exports["ɵth"] =
|
|
61742
|
-
exports["ɵti"] =
|
|
61743
|
-
exports["ɵtj"] =
|
|
61744
|
-
exports["ɵtk"] =
|
|
61745
|
-
exports["ɵtl"] =
|
|
61746
|
-
exports["ɵtm"] =
|
|
61747
|
-
exports["ɵtn"] =
|
|
61748
|
-
exports["ɵto"] =
|
|
61749
|
-
exports["ɵtp"] =
|
|
61750
|
-
exports["ɵtq"] =
|
|
61751
|
-
exports["ɵtr"] =
|
|
61752
|
-
exports["ɵts"] =
|
|
61753
|
-
exports["ɵtt"] =
|
|
61754
|
-
exports["ɵtu"] =
|
|
61755
|
-
exports["ɵtv"] =
|
|
61756
|
-
exports["ɵtw"] =
|
|
61757
|
-
exports["ɵtx"] =
|
|
61758
|
-
exports["ɵty"] =
|
|
61759
|
-
exports["ɵtz"] =
|
|
61760
|
-
exports["ɵu"] =
|
|
61761
|
-
exports["ɵua"] =
|
|
61762
|
-
exports["ɵub"] =
|
|
61763
|
-
exports["ɵuc"] =
|
|
61764
|
-
exports["ɵud"] =
|
|
61765
|
-
exports["ɵue"] =
|
|
61766
|
-
exports["ɵuf"] =
|
|
61767
|
-
exports["ɵug"] =
|
|
61768
|
-
exports["ɵuh"] =
|
|
61769
|
-
exports["ɵui"] =
|
|
61770
|
-
exports["ɵuj"] =
|
|
61771
|
-
exports["ɵuk"] =
|
|
61772
|
-
exports["ɵul"] =
|
|
61773
|
-
exports["ɵum"] =
|
|
61774
|
-
exports["ɵun"] =
|
|
61775
|
-
exports["ɵuo"] =
|
|
61776
|
-
exports["ɵup"] =
|
|
61777
|
-
exports["ɵuq"] =
|
|
61778
|
-
exports["ɵur"] =
|
|
61779
|
-
exports["ɵus"] =
|
|
61780
|
-
exports["ɵut"] =
|
|
61781
|
-
exports["ɵuu"] =
|
|
61782
|
-
exports["ɵuv"] =
|
|
61783
|
-
exports["ɵuw"] =
|
|
61784
|
-
exports["ɵux"] =
|
|
61785
|
-
exports["ɵuy"] =
|
|
61786
|
-
exports["ɵuz"] =
|
|
61787
|
-
exports["ɵv"] =
|
|
61788
|
-
exports["ɵva"] =
|
|
61789
|
-
exports["ɵvb"] =
|
|
61790
|
-
exports["ɵvc"] =
|
|
61791
|
-
exports["ɵvd"] =
|
|
61792
|
-
exports["ɵve"] =
|
|
61793
|
-
exports["ɵvf"] =
|
|
61794
|
-
exports["ɵvg"] =
|
|
61795
|
-
exports["ɵvh"] =
|
|
61796
|
-
exports["ɵvi"] =
|
|
61797
|
-
exports["ɵvj"] =
|
|
61798
|
-
exports["ɵvk"] =
|
|
61799
|
-
exports["ɵvl"] =
|
|
61800
|
-
exports["ɵvm"] =
|
|
61801
|
-
exports["ɵvn"] =
|
|
61802
|
-
exports["ɵvo"] =
|
|
61803
|
-
exports["ɵvp"] =
|
|
61804
|
-
exports["ɵvq"] =
|
|
61805
|
-
exports["ɵvr"] =
|
|
61806
|
-
exports["ɵvs"] =
|
|
61807
|
-
exports["ɵvt"] =
|
|
61808
|
-
exports["ɵvu"] =
|
|
61809
|
-
exports["ɵvv"] =
|
|
61810
|
-
exports["ɵvw"] =
|
|
61811
|
-
exports["ɵvx"] =
|
|
61812
|
-
exports["ɵvy"] =
|
|
61813
|
-
exports["ɵvz"] =
|
|
61814
|
-
exports["ɵw"] =
|
|
61815
|
-
exports["ɵwa"] =
|
|
61816
|
-
exports["ɵwb"] =
|
|
61817
|
-
exports["ɵwc"] =
|
|
61818
|
-
exports["ɵwd"] =
|
|
61819
|
-
exports["ɵwe"] =
|
|
61820
|
-
exports["ɵwf"] =
|
|
61821
|
-
exports["ɵwg"] =
|
|
61822
|
-
exports["ɵwh"] =
|
|
61823
|
-
exports["ɵwi"] =
|
|
61824
|
-
exports["ɵwj"] =
|
|
61825
|
-
exports["ɵwk"] =
|
|
61826
|
-
exports["ɵwl"] =
|
|
61827
|
-
exports["ɵwm"] =
|
|
61828
|
-
exports["ɵwn"] =
|
|
61829
|
-
exports["ɵwo"] =
|
|
61830
|
-
exports["ɵwp"] =
|
|
61831
|
-
exports["ɵwq"] =
|
|
61832
|
-
exports["ɵwr"] =
|
|
61833
|
-
exports["ɵws"] =
|
|
61834
|
-
exports["ɵwt"] =
|
|
61835
|
-
exports["ɵwu"] =
|
|
61836
|
-
exports["ɵwv"] =
|
|
61837
|
-
exports["ɵww"] =
|
|
61838
|
-
exports["ɵwx"] =
|
|
61839
|
-
exports["ɵwy"] =
|
|
61840
|
-
exports["ɵwz"] =
|
|
61841
|
-
exports["ɵx"] =
|
|
61842
|
-
exports["ɵxa"] =
|
|
61843
|
-
exports["ɵxb"] =
|
|
61844
|
-
exports["ɵxc"] =
|
|
61845
|
-
exports["ɵxd"] =
|
|
61846
|
-
exports["ɵxe"] =
|
|
61847
|
-
exports["ɵxf"] =
|
|
61848
|
-
exports["ɵxg"] =
|
|
61849
|
-
exports["ɵxh"] =
|
|
61850
|
-
exports["ɵxi"] =
|
|
61851
|
-
exports["ɵxj"] =
|
|
61852
|
-
exports["ɵxk"] =
|
|
61853
|
-
exports["ɵxl"] =
|
|
61854
|
-
exports["ɵxm"] =
|
|
61855
|
-
exports["ɵxn"] =
|
|
61856
|
-
exports["ɵxo"] =
|
|
61857
|
-
exports["ɵxp"] =
|
|
61858
|
-
exports["ɵxq"] =
|
|
61859
|
-
exports["ɵxr"] =
|
|
61860
|
-
exports["ɵxs"] =
|
|
61861
|
-
exports["ɵxt"] =
|
|
61862
|
-
exports["ɵxu"] =
|
|
61863
|
-
exports["ɵxv"] =
|
|
61864
|
-
exports["ɵxw"] =
|
|
61865
|
-
exports["ɵxx"] =
|
|
61866
|
-
exports["ɵxy"] =
|
|
61867
|
-
exports["ɵxz"] =
|
|
61868
|
-
exports["ɵy"] =
|
|
61869
|
-
exports["ɵya"] =
|
|
61870
|
-
exports["ɵyb"] =
|
|
61871
|
-
exports["ɵyc"] =
|
|
61872
|
-
exports["ɵyd"] =
|
|
61873
|
-
exports["ɵye"] =
|
|
61874
|
-
exports["ɵyf"] =
|
|
61875
|
-
exports["ɵyg"] =
|
|
61876
|
-
exports["ɵyh"] =
|
|
61877
|
-
exports["ɵyi"] =
|
|
61878
|
-
exports["ɵyj"] =
|
|
61879
|
-
exports["ɵyk"] =
|
|
61880
|
-
exports["ɵyl"] =
|
|
61881
|
-
exports["ɵym"] =
|
|
61882
|
-
exports["ɵyn"] =
|
|
61883
|
-
exports["ɵyo"] =
|
|
61884
|
-
exports["ɵyp"] =
|
|
61885
|
-
exports["ɵyq"] =
|
|
61886
|
-
exports["ɵyr"] =
|
|
61887
|
-
exports["ɵys"] =
|
|
61888
|
-
exports["ɵyt"] =
|
|
61889
|
-
exports["ɵyu"] =
|
|
61890
|
-
exports["ɵyv"] =
|
|
61891
|
-
exports["ɵyw"] =
|
|
61892
|
-
exports["ɵyx"] =
|
|
61893
|
-
exports["ɵyy"] =
|
|
61894
|
-
exports["ɵyz"] =
|
|
61895
|
-
exports["ɵz"] =
|
|
61896
|
-
exports["ɵza"] =
|
|
61897
|
-
exports["ɵzb"] =
|
|
61898
|
-
exports["ɵzc"] =
|
|
61899
|
-
exports["ɵzd"] =
|
|
61900
|
-
exports["ɵze"] =
|
|
61901
|
-
exports["ɵzf"] =
|
|
61902
|
-
exports["ɵzg"] =
|
|
61903
|
-
exports["ɵzh"] =
|
|
61904
|
-
exports["ɵzi"] =
|
|
61905
|
-
exports["ɵzj"] =
|
|
61906
|
-
exports["ɵzk"] =
|
|
61907
|
-
exports["ɵzl"] =
|
|
61908
|
-
exports["ɵzm"] = ServiceWizardQuestionsComponent;
|
|
61513
|
+
exports["ɵia"] = TransactionPurchaseOrderLineComponent;
|
|
61514
|
+
exports["ɵib"] = TransactionPurchaseOrderLineBaseComponent;
|
|
61515
|
+
exports["ɵic"] = TransactionCashRegisterOrderLineModule;
|
|
61516
|
+
exports["ɵid"] = TransactionCashRegisterOrderLineComponent;
|
|
61517
|
+
exports["ɵie"] = TransactionSalesOrderQuotationLineModule;
|
|
61518
|
+
exports["ɵif"] = TransactionSalesOrderQuotationLineComponent;
|
|
61519
|
+
exports["ɵig"] = TransactionLineSidePanelModule;
|
|
61520
|
+
exports["ɵih"] = TransactionLineSidePanelDefaultModule;
|
|
61521
|
+
exports["ɵii"] = TransactionLineQuantityModule;
|
|
61522
|
+
exports["ɵij"] = TransactionLineQuantityComponent;
|
|
61523
|
+
exports["ɵik"] = TransactionLineReferenceModule;
|
|
61524
|
+
exports["ɵil"] = TransactionLineReferenceComponent;
|
|
61525
|
+
exports["ɵim"] = TransactionLineSidePanelDefaultComponent;
|
|
61526
|
+
exports["ɵin"] = TransactionReceivingGoodsHistoryModule;
|
|
61527
|
+
exports["ɵio"] = TransactionHistoryGridModule;
|
|
61528
|
+
exports["ɵip"] = TransactionHistoryGridStatusModule;
|
|
61529
|
+
exports["ɵiq"] = TransactionHistoryGridStatusComponent;
|
|
61530
|
+
exports["ɵir"] = TransactionHistoryGridComponent;
|
|
61531
|
+
exports["ɵis"] = TransactionReceivingGoodsHistoryComponent;
|
|
61532
|
+
exports["ɵit"] = TransactionButtonBarModule;
|
|
61533
|
+
exports["ɵiu"] = AnimatedCheckboxModule;
|
|
61534
|
+
exports["ɵiv"] = AnimatedCheckboxComponent;
|
|
61535
|
+
exports["ɵiw"] = TransactionButtonBarComponent;
|
|
61536
|
+
exports["ɵix"] = TransactionMappingService;
|
|
61537
|
+
exports["ɵiy"] = TransactionButtonBarButtonComponent;
|
|
61538
|
+
exports["ɵiz"] = TransactionButtonBarButtonBaseComponent;
|
|
61539
|
+
exports["ɵj"] = CoreModule;
|
|
61540
|
+
exports["ɵja"] = TransactionSalesPurchaseButtonBarButtonComponent;
|
|
61541
|
+
exports["ɵjb"] = TransactionPurchaseReceiveGoodsButtonBarButtonComponent;
|
|
61542
|
+
exports["ɵjc"] = TransactionSalesAllocationButtonBarButtonComponent;
|
|
61543
|
+
exports["ɵjd"] = TransactionPurchaseConfirmationButtonBarButtonComponent;
|
|
61544
|
+
exports["ɵje"] = TransactionSalesDeliveryButtonBarButtonComponent;
|
|
61545
|
+
exports["ɵjf"] = TransactionSalesInvoiceButtonBarButtonComponent;
|
|
61546
|
+
exports["ɵjg"] = TransactionPurchaseInvoiceButtonBarButtonComponent;
|
|
61547
|
+
exports["ɵjh"] = TransactionSalesPickingButtonBarButtonComponent;
|
|
61548
|
+
exports["ɵji"] = TransactionSalesOverviewButtonBarButtonComponent;
|
|
61549
|
+
exports["ɵjj"] = TransactionServiceServiceButtonBarButtonComponent;
|
|
61550
|
+
exports["ɵjk"] = TransactionSalesPlanningButtonBarButtonComponent;
|
|
61551
|
+
exports["ɵjl"] = TransactionLineSidePanelPurchaseModule;
|
|
61552
|
+
exports["ɵjm"] = TransactionAvailableStockGridModule;
|
|
61553
|
+
exports["ɵjn"] = TransactionAvailableStockGridComponent;
|
|
61554
|
+
exports["ɵjo"] = TransactionLinePurchaseReceiveGoodsModule;
|
|
61555
|
+
exports["ɵjp"] = TransactionLabeledWarehouseLocationButtonModule;
|
|
61556
|
+
exports["ɵjq"] = TransactionLabeledWarehouseLocationButtonComponent;
|
|
61557
|
+
exports["ɵjr"] = TransactionLinePurchaseReceiveGoodsComponent;
|
|
61558
|
+
exports["ɵjs"] = TransactionLinePurchaseConfirmationModule;
|
|
61559
|
+
exports["ɵjt"] = DefaultOkCancelButtonsModule;
|
|
61560
|
+
exports["ɵju"] = DefaultOkCancelButtonsComponent;
|
|
61561
|
+
exports["ɵjv"] = TransactionLabeledPriceInputModule;
|
|
61562
|
+
exports["ɵjw"] = TransactionLabeledPriceInputComponent;
|
|
61563
|
+
exports["ɵjx"] = PurchaseConfirmationLinesModule;
|
|
61564
|
+
exports["ɵjy"] = TransactionLinesPopupModule;
|
|
61565
|
+
exports["ɵjz"] = TransactionLinesPopupComponent;
|
|
61566
|
+
exports["ɵk"] = ConfirmationDialogModule;
|
|
61567
|
+
exports["ɵka"] = PurchaseConfirmationLinesComponent;
|
|
61568
|
+
exports["ɵkb"] = TransactionLinePurchaseConfirmationComponent;
|
|
61569
|
+
exports["ɵkc"] = TransactionLineSidePanelPurchaseComponent;
|
|
61570
|
+
exports["ɵkd"] = TransactionLineSidePanelSalesModule;
|
|
61571
|
+
exports["ɵke"] = TransactionAllocateGoodsHistoryModule;
|
|
61572
|
+
exports["ɵkf"] = TransactionAllocateGoodsHistoryComponent;
|
|
61573
|
+
exports["ɵkg"] = TransactionLineSalesAllocationModule;
|
|
61574
|
+
exports["ɵkh"] = TransactionLineSalesAllocationComponent;
|
|
61575
|
+
exports["ɵki"] = TransactionLineSalesDeliveryModule;
|
|
61576
|
+
exports["ɵkj"] = TransactionLineDeliveryHistoryModule;
|
|
61577
|
+
exports["ɵkk"] = TransactionLineDeliveryHistoryComponent;
|
|
61578
|
+
exports["ɵkl"] = TransactionLineSalesDeliveryComponent;
|
|
61579
|
+
exports["ɵkm"] = TransactionLineSalesInvoiceModule;
|
|
61580
|
+
exports["ɵkn"] = TransactionLineInvoiceHistoryModule;
|
|
61581
|
+
exports["ɵko"] = TransactionLineInvoiceHistoryComponent;
|
|
61582
|
+
exports["ɵkp"] = TransactionLineSalesInvoiceComponent;
|
|
61583
|
+
exports["ɵkq"] = TransactionLineSidePanelToBePickedModule;
|
|
61584
|
+
exports["ɵkr"] = TransactionPickingHistoryModule;
|
|
61585
|
+
exports["ɵks"] = TransactionPickingHistoryComponent;
|
|
61586
|
+
exports["ɵkt"] = TransactionLineSidePanelToBePickedComponent;
|
|
61587
|
+
exports["ɵku"] = TransactionLineSidePanelPickedModule;
|
|
61588
|
+
exports["ɵkv"] = TransactionLineSidePanelPickedComponent;
|
|
61589
|
+
exports["ɵkw"] = TransactionLineSidePanelPlanningModule;
|
|
61590
|
+
exports["ɵkx"] = DeliveryPlanningMainModule;
|
|
61591
|
+
exports["ɵky"] = DeliveryPlanningModeSelectionModule;
|
|
61592
|
+
exports["ɵkz"] = DeliveryPlanningModeSelectionComponent;
|
|
61593
|
+
exports["ɵl"] = PipeModule;
|
|
61594
|
+
exports["ɵla"] = DeliveryPlanningSelectionModule;
|
|
61595
|
+
exports["ɵlb"] = DeliveryPlanningSelectionComponent;
|
|
61596
|
+
exports["ɵlc"] = DeliveryPlanningOverviewModule;
|
|
61597
|
+
exports["ɵld"] = DeliveryPlanningOverviewTileModule;
|
|
61598
|
+
exports["ɵle"] = DeliveryPlanningOverviewTileLineModule;
|
|
61599
|
+
exports["ɵlf"] = DeliveryPlanningOverviewTileLineComponent;
|
|
61600
|
+
exports["ɵlg"] = DeliveryPlanningTileStatusModule;
|
|
61601
|
+
exports["ɵlh"] = DeliveryPlanningTileStatusComponent;
|
|
61602
|
+
exports["ɵli"] = DeliveryPlanningOverviewShortLineModule;
|
|
61603
|
+
exports["ɵlj"] = DeliveryPlanningOverviewShortLineComponent;
|
|
61604
|
+
exports["ɵlk"] = DeliveryPlanningOverviewTileComponent;
|
|
61605
|
+
exports["ɵll"] = DeliveryPlanningOverviewComponent;
|
|
61606
|
+
exports["ɵlm"] = DeliveryPlanningOverviewPopupComponent;
|
|
61607
|
+
exports["ɵln"] = DeliveryPlanningOverviewTileSettingsPopupComponent;
|
|
61608
|
+
exports["ɵlo"] = AvatarModule;
|
|
61609
|
+
exports["ɵlp"] = AvatarComponent;
|
|
61610
|
+
exports["ɵlq"] = TransactionSearchSalesOrderTileModule;
|
|
61611
|
+
exports["ɵlr"] = TransactionSearchSalesOrderTileComponent;
|
|
61612
|
+
exports["ɵls"] = TransactionSearchTileBaseComponent;
|
|
61613
|
+
exports["ɵlt"] = TransactionSearchPurchaseOrderTileModule;
|
|
61614
|
+
exports["ɵlu"] = TransactionSearchPurchaseOrderTileComponent;
|
|
61615
|
+
exports["ɵlv"] = TransactionSearchSalesOrderGridModule;
|
|
61616
|
+
exports["ɵlw"] = TransactionSearchSalesOrderGridComponent;
|
|
61617
|
+
exports["ɵlx"] = TransactionSearchGridBaseComponent;
|
|
61618
|
+
exports["ɵly"] = TransactionSearchPurchaseOrderGridModule;
|
|
61619
|
+
exports["ɵlz"] = TransactionSearchPurchaseOrderGridComponent;
|
|
61620
|
+
exports["ɵm"] = AppendPipe;
|
|
61621
|
+
exports["ɵma"] = TransactionSearchSalesQuotationGridModule;
|
|
61622
|
+
exports["ɵmb"] = TransactionSearchSalesQuotationGridComponent;
|
|
61623
|
+
exports["ɵmc"] = TransactionSearchPosGridModule;
|
|
61624
|
+
exports["ɵmd"] = TransactionSearchPosGridComponent;
|
|
61625
|
+
exports["ɵme"] = TransactionSearchSalesQuotationTileModule;
|
|
61626
|
+
exports["ɵmf"] = TransactionSearchSalesQuotationTileComponent;
|
|
61627
|
+
exports["ɵmg"] = TransactionSearchPosOrderTileModule;
|
|
61628
|
+
exports["ɵmh"] = TransactionSearchPosOrderTileComponent;
|
|
61629
|
+
exports["ɵmi"] = TransactionSearchGridModule;
|
|
61630
|
+
exports["ɵmj"] = TransactionSearchGridComponent;
|
|
61631
|
+
exports["ɵmk"] = TransactionSearchTileModule;
|
|
61632
|
+
exports["ɵml"] = TransactionSearchTileComponent;
|
|
61633
|
+
exports["ɵmm"] = TransactionSearchSalesLineSelectTileModule;
|
|
61634
|
+
exports["ɵmn"] = TransactionLineTileModule;
|
|
61635
|
+
exports["ɵmo"] = TransactionLineTileComponent;
|
|
61636
|
+
exports["ɵmp"] = TransactionOrderTileModule;
|
|
61637
|
+
exports["ɵmq"] = TransactionOrderTileComponent;
|
|
61638
|
+
exports["ɵmr"] = TransactionSearchSalesLineSelectTileComponent;
|
|
61639
|
+
exports["ɵms"] = TransactionSalesOrderFilterModule;
|
|
61640
|
+
exports["ɵmt"] = TransactionFilterCategoriesModule;
|
|
61641
|
+
exports["ɵmu"] = TransactionFilterCategoriesComponent;
|
|
61642
|
+
exports["ɵmv"] = TransactionSalesOrderFilterContentOrderModule;
|
|
61643
|
+
exports["ɵmw"] = TransactionFilterItemModule;
|
|
61644
|
+
exports["ɵmx"] = TransactionFilterItemComponent;
|
|
61645
|
+
exports["ɵmy"] = TransactionSalesOrderFilterContentOrderComponent;
|
|
61646
|
+
exports["ɵmz"] = TransactionFilterContentBaseComponent;
|
|
61647
|
+
exports["ɵn"] = DeliveryTimePipe;
|
|
61648
|
+
exports["ɵna"] = TransactionSalesOrderFilterContentLogisticsModule;
|
|
61649
|
+
exports["ɵnb"] = TransactionFilterHistoricStateModule;
|
|
61650
|
+
exports["ɵnc"] = TransactionFilterHistoricStateComponent;
|
|
61651
|
+
exports["ɵnd"] = TransactionSalesOrderFilterContentLogisticsComponent;
|
|
61652
|
+
exports["ɵne"] = TransactionSalesOrderFilterContentArticleModule;
|
|
61653
|
+
exports["ɵnf"] = TransactionSalesOrderFilterContentArticleComponent;
|
|
61654
|
+
exports["ɵng"] = TransactionSalesOrderFilterComponent;
|
|
61655
|
+
exports["ɵnh"] = TransactionFilterBaseComponent;
|
|
61656
|
+
exports["ɵni"] = TransactionPurchaseOrderFilterModule;
|
|
61657
|
+
exports["ɵnj"] = TransactionPurchaseOrderFilterContentOrderModule;
|
|
61658
|
+
exports["ɵnk"] = TransactionPurchaseOrderFilterContentOrderComponent;
|
|
61659
|
+
exports["ɵnl"] = TransactionPurchaseOrderFilterContentLogisticsModule;
|
|
61660
|
+
exports["ɵnm"] = TransactionPurchaseOrderFilterContentLogisticsComponent;
|
|
61661
|
+
exports["ɵnn"] = TransactionPurchaseOrderFilterContentArticleModule;
|
|
61662
|
+
exports["ɵno"] = TransactionPurchaseOrderFilterContentArticleComponent;
|
|
61663
|
+
exports["ɵnp"] = TransactionPurchaseOrderFilterComponent;
|
|
61664
|
+
exports["ɵnq"] = TransactionSalesQuotationFilterModule;
|
|
61665
|
+
exports["ɵnr"] = TransactionSalesQuotationFilterContentOrderModule;
|
|
61666
|
+
exports["ɵns"] = TransactionSalesQuotationFilterContentOrderComponent;
|
|
61667
|
+
exports["ɵnt"] = TransactionSalesQuotationFilterContentLogisticsModule;
|
|
61668
|
+
exports["ɵnu"] = TransactionSalesQuotationFilterContentLogisticsComponent;
|
|
61669
|
+
exports["ɵnv"] = TransactionSalesQuotationFilterContentArticleModule;
|
|
61670
|
+
exports["ɵnw"] = TransactionSalesQuotationFilterContentArticleComponent;
|
|
61671
|
+
exports["ɵnx"] = TransactionSalesQuotationFilterComponent;
|
|
61672
|
+
exports["ɵny"] = TransactionCashDeskFilterModule;
|
|
61673
|
+
exports["ɵnz"] = TransactionCashDeskFilterContentArticleModule;
|
|
61674
|
+
exports["ɵo"] = DateDurationPipe;
|
|
61675
|
+
exports["ɵoa"] = TransactionCashDeskFilterContentArticleComponent;
|
|
61676
|
+
exports["ɵob"] = TransactionCashDeskFilterContentLogisticsModule;
|
|
61677
|
+
exports["ɵoc"] = TransactionCashDeskFilterContentLogisticsComponent;
|
|
61678
|
+
exports["ɵod"] = TransactionCashDeskFilterContentOrderModule;
|
|
61679
|
+
exports["ɵoe"] = TransactionCashDeskFilterContentOrderComponent;
|
|
61680
|
+
exports["ɵof"] = TransactionCashDeskFilterComponent;
|
|
61681
|
+
exports["ɵog"] = TransactionServiceOrderFilterModule;
|
|
61682
|
+
exports["ɵoh"] = TransactionServiceOrderFilterContentOrderModule;
|
|
61683
|
+
exports["ɵoi"] = TransactionServiceOrderFilterContentOrderComponent;
|
|
61684
|
+
exports["ɵoj"] = TransactionServiceOrderFilterContentLogisticsModule;
|
|
61685
|
+
exports["ɵok"] = TransactionServiceOrderFilterContentLogisticsComponent;
|
|
61686
|
+
exports["ɵol"] = TransactionServiceOrderFilterContentArticleModule;
|
|
61687
|
+
exports["ɵom"] = TransactionServiceOrderFilterContentArticleComponent;
|
|
61688
|
+
exports["ɵon"] = TransactionServiceOrderFilterComponent;
|
|
61689
|
+
exports["ɵoo"] = SearchFeatureModule;
|
|
61690
|
+
exports["ɵop"] = SearchHeaderButtonsModule;
|
|
61691
|
+
exports["ɵoq"] = SearchHeaderButtonsComponent;
|
|
61692
|
+
exports["ɵor"] = SearchViewModeService;
|
|
61693
|
+
exports["ɵos"] = SearchFilterPanelModule;
|
|
61694
|
+
exports["ɵot"] = SearchFilterPanelComponent;
|
|
61695
|
+
exports["ɵou"] = SearchComponent;
|
|
61696
|
+
exports["ɵov"] = DeliveryPlanningMainComponent;
|
|
61697
|
+
exports["ɵow"] = DeliveryPlanningPlanOrderListComponent;
|
|
61698
|
+
exports["ɵox"] = DeliveryPlanningPlanOrderListTileComponent;
|
|
61699
|
+
exports["ɵoy"] = TransactionLineSidePanelPlanningComponent;
|
|
61700
|
+
exports["ɵoz"] = TransactionPurchaseReservationOrderTileModule;
|
|
61701
|
+
exports["ɵp"] = LocalizePipe;
|
|
61702
|
+
exports["ɵpa"] = TransactionPurchaseReservationOrderTileComponent;
|
|
61703
|
+
exports["ɵpb"] = TransactionLineSidePanelSalesComponent;
|
|
61704
|
+
exports["ɵpc"] = TransactionLineSidePanelComponent;
|
|
61705
|
+
exports["ɵpd"] = TransactionLineComponent;
|
|
61706
|
+
exports["ɵpe"] = TransactionLinesBaseComponent;
|
|
61707
|
+
exports["ɵpf"] = DialogTransactionHeaderDiscountModule;
|
|
61708
|
+
exports["ɵpg"] = TransactionHeaderDiscountPercentageModule;
|
|
61709
|
+
exports["ɵph"] = TransactionHeaderDiscountPercentageComponent;
|
|
61710
|
+
exports["ɵpi"] = TransactionInputHeaderFieldBaseComponent;
|
|
61711
|
+
exports["ɵpj"] = TransactionHeaderDiscountAmountModule;
|
|
61712
|
+
exports["ɵpk"] = TransactionHeaderDiscountAmountComponent;
|
|
61713
|
+
exports["ɵpl"] = TransactionHeaderDiscountTransactionTotalModule;
|
|
61714
|
+
exports["ɵpm"] = TransactionHeaderDiscountTransactionTotalComponent;
|
|
61715
|
+
exports["ɵpn"] = DialogTransactionHeaderDiscountComponent;
|
|
61716
|
+
exports["ɵpo"] = DialogTransactionHeaderBaseComponent;
|
|
61717
|
+
exports["ɵpp"] = DeliveryTypeTileModule;
|
|
61718
|
+
exports["ɵpq"] = DeliveryTypeTileComponent;
|
|
61719
|
+
exports["ɵpr"] = PaymentModule;
|
|
61720
|
+
exports["ɵps"] = PaymentTileModule;
|
|
61721
|
+
exports["ɵpt"] = PaymentTileComponent;
|
|
61722
|
+
exports["ɵpu"] = PaymentQrCodeModule;
|
|
61723
|
+
exports["ɵpv"] = PaymentQrCodeComponent;
|
|
61724
|
+
exports["ɵpw"] = DepositPaymentModule;
|
|
61725
|
+
exports["ɵpx"] = DepositPaymentComponent;
|
|
61726
|
+
exports["ɵpy"] = PaymentToPayModule;
|
|
61727
|
+
exports["ɵpz"] = PaymentToPayComponent;
|
|
61728
|
+
exports["ɵq"] = CoCurrencyPipe;
|
|
61729
|
+
exports["ɵqa"] = PaymentComponent;
|
|
61730
|
+
exports["ɵqb"] = TransactionPaymentBaseComponent;
|
|
61731
|
+
exports["ɵqc"] = RelationTypeModule;
|
|
61732
|
+
exports["ɵqd"] = RelationTypeComponent;
|
|
61733
|
+
exports["ɵqe"] = RelationGeneralModule;
|
|
61734
|
+
exports["ɵqf"] = RelationContactDetailsModule;
|
|
61735
|
+
exports["ɵqg"] = RelationContactDetailsComponent;
|
|
61736
|
+
exports["ɵqh"] = RelationGeneralComponent;
|
|
61737
|
+
exports["ɵqi"] = RelationAddressesModule;
|
|
61738
|
+
exports["ɵqj"] = RelationAddressesComponent;
|
|
61739
|
+
exports["ɵqk"] = RelationPreferencesModule;
|
|
61740
|
+
exports["ɵql"] = RelationPreferencesComponent;
|
|
61741
|
+
exports["ɵqm"] = TransactionHeaderBlockModule;
|
|
61742
|
+
exports["ɵqn"] = TransactionHeaderBlockComponent;
|
|
61743
|
+
exports["ɵqo"] = TransactionHeaderDeliveryDateModule;
|
|
61744
|
+
exports["ɵqp"] = TransactionHeaderDeliveryDateComponent;
|
|
61745
|
+
exports["ɵqq"] = TransactionHeaderDeliveryOptionsModule;
|
|
61746
|
+
exports["ɵqr"] = TransactionHeaderDeliveryOptionsComponent;
|
|
61747
|
+
exports["ɵqs"] = TransactionHeaderRemarksModule;
|
|
61748
|
+
exports["ɵqt"] = TransactionHeaderRemarksComponent;
|
|
61749
|
+
exports["ɵqu"] = TransactionHeaderReferenceModule;
|
|
61750
|
+
exports["ɵqv"] = TransactionHeaderReferenceComponent;
|
|
61751
|
+
exports["ɵqw"] = TransactionHeaderRelationReferenceModule;
|
|
61752
|
+
exports["ɵqx"] = TransactionHeaderRelationReferenceComponent;
|
|
61753
|
+
exports["ɵqy"] = TransactionHeaderDeliveryMethodModule;
|
|
61754
|
+
exports["ɵqz"] = TransactionHeaderDeliveryMethodComponent;
|
|
61755
|
+
exports["ɵr"] = SafeStylePipe;
|
|
61756
|
+
exports["ɵra"] = TransactionFilterPopupHeaderBaseComponent;
|
|
61757
|
+
exports["ɵrb"] = TransactionHeaderPreferredDeliveryDateModule;
|
|
61758
|
+
exports["ɵrc"] = TransactionHeaderPreferredDeliveryDateComponent;
|
|
61759
|
+
exports["ɵrd"] = DialogTransactionHeaderDeliveryMethodModule;
|
|
61760
|
+
exports["ɵre"] = DialogTransactionHeaderDeliveryMethodComponent;
|
|
61761
|
+
exports["ɵrf"] = TransactionHeaderPopupModule;
|
|
61762
|
+
exports["ɵrg"] = TransactionHeaderBranchModule;
|
|
61763
|
+
exports["ɵrh"] = TransactionHeaderBranchComponent;
|
|
61764
|
+
exports["ɵri"] = TransactionHeaderSalesPersonModule;
|
|
61765
|
+
exports["ɵrj"] = TransactionHeaderSalesPersonComponent;
|
|
61766
|
+
exports["ɵrk"] = TransactionHeaderAdministrativeRelationModule;
|
|
61767
|
+
exports["ɵrl"] = TransactionHeaderAdministrativeRelationComponent;
|
|
61768
|
+
exports["ɵrm"] = TransactionHeaderPriceKindModule;
|
|
61769
|
+
exports["ɵrn"] = TransactionHeaderPriceKindComponent;
|
|
61770
|
+
exports["ɵro"] = TransactionHeaderCurrencyModule;
|
|
61771
|
+
exports["ɵrp"] = TransactionHeaderCurrencyComponent;
|
|
61772
|
+
exports["ɵrq"] = TransactionHeaderTypeModule;
|
|
61773
|
+
exports["ɵrr"] = TransactionHeaderTypeComponent;
|
|
61774
|
+
exports["ɵrs"] = TransactionHeaderPaymentConditionModule;
|
|
61775
|
+
exports["ɵrt"] = TransactionHeaderPaymentConditionComponent;
|
|
61776
|
+
exports["ɵru"] = TransactionHeaderHoldCodesModule;
|
|
61777
|
+
exports["ɵrv"] = TransactionHeaderHoldCodesComponent;
|
|
61778
|
+
exports["ɵrw"] = TransactionHeaderMarketingModule;
|
|
61779
|
+
exports["ɵrx"] = TransactionHeaderMarketingComponent;
|
|
61780
|
+
exports["ɵry"] = TransactionHeaderDeliveryMethodButtonModule;
|
|
61781
|
+
exports["ɵrz"] = TransactionHeaderDeliveryMethodButtonComponent;
|
|
61782
|
+
exports["ɵs"] = SafeHtmlPipe;
|
|
61783
|
+
exports["ɵsa"] = TransactionHeaderDefinitiveModule;
|
|
61784
|
+
exports["ɵsb"] = TransactionHeaderDefinitiveComponent;
|
|
61785
|
+
exports["ɵsc"] = TransactionHeaderDeliverydateDefinitiveButtonModule;
|
|
61786
|
+
exports["ɵsd"] = TransactionHeaderDeliverydateDefinitiveButtonComponent;
|
|
61787
|
+
exports["ɵse"] = TransactionHeaderDepositPercentageModule;
|
|
61788
|
+
exports["ɵsf"] = TransactionHeaderDepositPercentageComponent;
|
|
61789
|
+
exports["ɵsg"] = TransactionHeaderDepositAmountModule;
|
|
61790
|
+
exports["ɵsh"] = TransactionHeaderDepositAmountComponent;
|
|
61791
|
+
exports["ɵsi"] = TransactionHeaderPaymentButtonModule;
|
|
61792
|
+
exports["ɵsj"] = TransactionHeaderPaymentButtonComponent;
|
|
61793
|
+
exports["ɵsk"] = TransactionHeaderDivideEvenlyModule;
|
|
61794
|
+
exports["ɵsl"] = TransactionHeaderDivideEvenlyComponent;
|
|
61795
|
+
exports["ɵsm"] = TransactionHeaderAmountToSettleModule;
|
|
61796
|
+
exports["ɵsn"] = TransactionHeaderAmountToSettleComponent;
|
|
61797
|
+
exports["ɵso"] = TransactionHeaderScoringChanceModule;
|
|
61798
|
+
exports["ɵsp"] = TransactionHeaderScoringChanceComponent;
|
|
61799
|
+
exports["ɵsq"] = TransactionHeaderRetailStadiumModule;
|
|
61800
|
+
exports["ɵsr"] = TransactionHeaderRetailStadiumComponent;
|
|
61801
|
+
exports["ɵss"] = TransactionHeaderScoringDateModule;
|
|
61802
|
+
exports["ɵst"] = TransactionHeaderScoringDateComponent;
|
|
61803
|
+
exports["ɵsu"] = TransactionHeaderPartialDeliveryModule;
|
|
61804
|
+
exports["ɵsv"] = TransactionHeaderPartialDeliveryComponent;
|
|
61805
|
+
exports["ɵsw"] = TransactionHeaderAutoRecalculateDepositModule;
|
|
61806
|
+
exports["ɵsx"] = TransactionHeaderAutoRecalculateDepositComponent;
|
|
61807
|
+
exports["ɵsy"] = TransactionHeaderUseDepositRuleModule;
|
|
61808
|
+
exports["ɵsz"] = TransactionHeaderUseDepositRuleComponent;
|
|
61809
|
+
exports["ɵt"] = PrependPipe;
|
|
61810
|
+
exports["ɵta"] = TransactionHeaderProjectCodeModule;
|
|
61811
|
+
exports["ɵtb"] = TransactionHeaderProjectCodeComponent;
|
|
61812
|
+
exports["ɵtc"] = DialogCatalogModule;
|
|
61813
|
+
exports["ɵtd"] = DialogCatalogComponent;
|
|
61814
|
+
exports["ɵte"] = CatalogScreenConfigurationService;
|
|
61815
|
+
exports["ɵtf"] = ServiceWizardQaModule;
|
|
61816
|
+
exports["ɵtg"] = QuestionAnswerModule;
|
|
61817
|
+
exports["ɵth"] = QuestionAnswerComponent;
|
|
61818
|
+
exports["ɵti"] = ServiceWizardQaComponent;
|
|
61819
|
+
exports["ɵtj"] = DialogTransactionSearchModule;
|
|
61820
|
+
exports["ɵtk"] = TransactionSearchHeaderModule;
|
|
61821
|
+
exports["ɵtl"] = TransactionSearchHeaderComponent;
|
|
61822
|
+
exports["ɵtm"] = DialogTransactionSearchComponent;
|
|
61823
|
+
exports["ɵtn"] = TransactionHeaderPreferredDeliveryTimeModule;
|
|
61824
|
+
exports["ɵto"] = TransactionHeaderPreferredDeliveryTimeComponent;
|
|
61825
|
+
exports["ɵtp"] = TransactionHeaderPopupComponent;
|
|
61826
|
+
exports["ɵtq"] = TransactionHeaderPopupRelationComponent;
|
|
61827
|
+
exports["ɵtr"] = TransactionHeaderPopupBaseComponent;
|
|
61828
|
+
exports["ɵts"] = RelationSuggestionsService;
|
|
61829
|
+
exports["ɵtt"] = TransactionHeaderPopupOrderComponent;
|
|
61830
|
+
exports["ɵtu"] = TransactionHeaderPopupDeliveryComponent;
|
|
61831
|
+
exports["ɵtv"] = TransactionHeaderPopupPaymentComponent;
|
|
61832
|
+
exports["ɵtw"] = CashOnDeliveryModalComponent;
|
|
61833
|
+
exports["ɵtx"] = ProjectCodeyModalComponent;
|
|
61834
|
+
exports["ɵty"] = DialogTransactionHeaderPlanningRequest;
|
|
61835
|
+
exports["ɵtz"] = DialogTransactionPlanningRequest;
|
|
61836
|
+
exports["ɵu"] = ConfirmationDialogComponent;
|
|
61837
|
+
exports["ɵua"] = RelationSuggestionsListModule;
|
|
61838
|
+
exports["ɵub"] = RelationSuggestionsListItemModule;
|
|
61839
|
+
exports["ɵuc"] = RelationSuggestionsListItemComponent;
|
|
61840
|
+
exports["ɵud"] = RelationSuggestionsListComponent;
|
|
61841
|
+
exports["ɵue"] = SuggestionsSidebarModule;
|
|
61842
|
+
exports["ɵuf"] = SuggestionsSidebarComponent;
|
|
61843
|
+
exports["ɵug"] = StepperStepModule;
|
|
61844
|
+
exports["ɵuh"] = CheckoutOverviewRelationEditComponent;
|
|
61845
|
+
exports["ɵui"] = CheckoutOverviewDeliveryEditComponent;
|
|
61846
|
+
exports["ɵuj"] = CheckoutOverviewPaymentComponent;
|
|
61847
|
+
exports["ɵuk"] = TransactionInternalModule;
|
|
61848
|
+
exports["ɵul"] = TransactionHeaderPaymentModule;
|
|
61849
|
+
exports["ɵum"] = TransactionHeaderRemainingAmountModule;
|
|
61850
|
+
exports["ɵun"] = TransactionHeaderRemainingAmountComponent;
|
|
61851
|
+
exports["ɵuo"] = TransactionHeaderPaymentComponent;
|
|
61852
|
+
exports["ɵup"] = TransactionQuickAccessOverviewModule;
|
|
61853
|
+
exports["ɵuq"] = TransactionSendDocumentsModule;
|
|
61854
|
+
exports["ɵur"] = TransactionSendDocumentsComponent;
|
|
61855
|
+
exports["ɵus"] = DigitalSignatureModule;
|
|
61856
|
+
exports["ɵut"] = DigitalSignatureComponent;
|
|
61857
|
+
exports["ɵuu"] = TransactionQuickAccessOverviewComponent;
|
|
61858
|
+
exports["ɵuv"] = TransactionQuickAccessOrderDeliveryModule;
|
|
61859
|
+
exports["ɵuw"] = TransactionUndoDeliveryModule;
|
|
61860
|
+
exports["ɵux"] = TransactionUndoDeliveryComponent;
|
|
61861
|
+
exports["ɵuy"] = TransactionQuickAccessOrderDeliveryComponent;
|
|
61862
|
+
exports["ɵuz"] = TransactionQuickAccessOrderPurchaseModule;
|
|
61863
|
+
exports["ɵv"] = DialogBaseComponent;
|
|
61864
|
+
exports["ɵva"] = TransactionQuickAccessOrderPurchaseComponent;
|
|
61865
|
+
exports["ɵvb"] = TransactionQuickAccessGoodsAllocationModule;
|
|
61866
|
+
exports["ɵvc"] = TransactionQuickAccessGoodsAllocationComponent;
|
|
61867
|
+
exports["ɵvd"] = TransactionQuickAccessPurchaseOrderOverviewModule;
|
|
61868
|
+
exports["ɵve"] = TransactionQuickAccessPurchaseOrderOverviewComponent;
|
|
61869
|
+
exports["ɵvf"] = TransactionQuickAccessInvoiceModule;
|
|
61870
|
+
exports["ɵvg"] = TransactionQuickAccessInvoiceComponent;
|
|
61871
|
+
exports["ɵvh"] = TransactionQuickAccessToBePickedModule;
|
|
61872
|
+
exports["ɵvi"] = TransactionQuickAccessToBePickedComponent;
|
|
61873
|
+
exports["ɵvj"] = TransactionQuickAccessPickedModule;
|
|
61874
|
+
exports["ɵvk"] = TransactionQuickAccessPickedComponent;
|
|
61875
|
+
exports["ɵvl"] = TransactionQuickAccessSalesQuotationModule;
|
|
61876
|
+
exports["ɵvm"] = TransactionQuickAccessSalesQuotationComponent;
|
|
61877
|
+
exports["ɵvn"] = TransactionCreationService;
|
|
61878
|
+
exports["ɵvo"] = TransactionQuickAccessPlanningModule;
|
|
61879
|
+
exports["ɵvp"] = TransactionQuickAccessPlanningComponent;
|
|
61880
|
+
exports["ɵvq"] = TransactionQuickAccessPlanningPopupComponent;
|
|
61881
|
+
exports["ɵvr"] = TransactionCardModule;
|
|
61882
|
+
exports["ɵvs"] = TransactionCardPurchaseOverviewModule;
|
|
61883
|
+
exports["ɵvt"] = TransactionCardHeaderModule;
|
|
61884
|
+
exports["ɵvu"] = TransactionCardHeaderComponent;
|
|
61885
|
+
exports["ɵvv"] = TransactionCardFooterModule;
|
|
61886
|
+
exports["ɵvw"] = TransactionCardFooterComponent;
|
|
61887
|
+
exports["ɵvx"] = TransactionCardPurchaseOverviewComponent;
|
|
61888
|
+
exports["ɵvy"] = TransactionCardSalesOverviewModule;
|
|
61889
|
+
exports["ɵvz"] = TransactionCardSalesOverviewComponent;
|
|
61890
|
+
exports["ɵw"] = IconCacheService;
|
|
61891
|
+
exports["ɵwa"] = TransactionCardReceiveGoodsModule;
|
|
61892
|
+
exports["ɵwb"] = TransactionCardReceiveGoodsComponent;
|
|
61893
|
+
exports["ɵwc"] = TransactionCardInvoiceModule;
|
|
61894
|
+
exports["ɵwd"] = TransactionCardInvoiceComponent;
|
|
61895
|
+
exports["ɵwe"] = TransactionCardOrderDeliveryModule;
|
|
61896
|
+
exports["ɵwf"] = TransactionCardOrderDeliveryComponent;
|
|
61897
|
+
exports["ɵwg"] = TransactionCardPurchaseModule;
|
|
61898
|
+
exports["ɵwh"] = TransactionCardPurchaseComponent;
|
|
61899
|
+
exports["ɵwi"] = TransactionCardGoodsAllocationModule;
|
|
61900
|
+
exports["ɵwj"] = TransactionCardGoodsAllocationComponent;
|
|
61901
|
+
exports["ɵwk"] = TransactionCardToBePickedModule;
|
|
61902
|
+
exports["ɵwl"] = TransactionCardToBePickedComponent;
|
|
61903
|
+
exports["ɵwm"] = TransactionCardPickedModule;
|
|
61904
|
+
exports["ɵwn"] = TransactionCardPickedComponent;
|
|
61905
|
+
exports["ɵwo"] = TransactionCardPurchaseConfirmationModule;
|
|
61906
|
+
exports["ɵwp"] = TransactionBaseCardModule;
|
|
61907
|
+
exports["ɵwq"] = TransactionBaseCardComponent;
|
|
61908
|
+
exports["ɵwr"] = TransactionCardPurchaseConfirmationComponent;
|
|
61909
|
+
exports["ɵws"] = TransactionCardPlanningModule;
|
|
61910
|
+
exports["ɵwt"] = TransactionCardPlanningComponent;
|
|
61911
|
+
exports["ɵwu"] = TransactionCardMarginModule;
|
|
61912
|
+
exports["ɵwv"] = TransactionCardMarginComponent;
|
|
61913
|
+
exports["ɵww"] = TransactionCardComponent;
|
|
61914
|
+
exports["ɵwx"] = TransactionCopyOrderModule;
|
|
61915
|
+
exports["ɵwy"] = DefaultConfirmCancelButtonsModule;
|
|
61916
|
+
exports["ɵwz"] = DefaultConfirmCancelButtonsComponent;
|
|
61917
|
+
exports["ɵx"] = CharacteristicAnswerModule;
|
|
61918
|
+
exports["ɵxa"] = TransactionCopyOrderComponent;
|
|
61919
|
+
exports["ɵxb"] = TransactionLinesSidePanelModule;
|
|
61920
|
+
exports["ɵxc"] = TransactionLinesSidePanelCashDeskModule;
|
|
61921
|
+
exports["ɵxd"] = TransactionCashRegisterPaymentDialogModule;
|
|
61922
|
+
exports["ɵxe"] = TransactionCashRegisterPaymentPinModule;
|
|
61923
|
+
exports["ɵxf"] = TransactionCashRegisterPaymentButtonsModule;
|
|
61924
|
+
exports["ɵxg"] = TransactionCashRegisterPaymentButtonsComponent;
|
|
61925
|
+
exports["ɵxh"] = TransactionCashRegisterPaymentPinComponent;
|
|
61926
|
+
exports["ɵxi"] = TransactionCashRegisterPaymentCashModule;
|
|
61927
|
+
exports["ɵxj"] = RegisteredPaymentModule;
|
|
61928
|
+
exports["ɵxk"] = RegisteredPaymentComponent;
|
|
61929
|
+
exports["ɵxl"] = TransactionCashRegisterPaymentCashComponent;
|
|
61930
|
+
exports["ɵxm"] = TransactionCashRegisterPaymentDoneModule;
|
|
61931
|
+
exports["ɵxn"] = TransactionCashRegisterPaymentDoneComponent;
|
|
61932
|
+
exports["ɵxo"] = TransactionCashRegisterPaymentMethodModule;
|
|
61933
|
+
exports["ɵxp"] = TransactionCashRegisterPaymentMethodComponent;
|
|
61934
|
+
exports["ɵxq"] = TransactionCashRegisterPaymentQrCodeModule;
|
|
61935
|
+
exports["ɵxr"] = TransactionCashRegisterPaymentQrCodeComponent;
|
|
61936
|
+
exports["ɵxs"] = TransactionCashRegisterPaymentDialogComponent;
|
|
61937
|
+
exports["ɵxt"] = TransactionCashRegisterOrderExpenseDialogModule;
|
|
61938
|
+
exports["ɵxu"] = TransactionCashRegisterOrderExpenseDialogComponent;
|
|
61939
|
+
exports["ɵxv"] = TransactionLinesSidePanelCashDeskComponent;
|
|
61940
|
+
exports["ɵxw"] = TransactionLinesSidePanelServiceOrderModule;
|
|
61941
|
+
exports["ɵxx"] = TransactionLinesSidePanelServiceOrderComponent;
|
|
61942
|
+
exports["ɵxy"] = TransactionLinesSidePanelComponent;
|
|
61943
|
+
exports["ɵxz"] = TransactionServiceOverviewModule;
|
|
61944
|
+
exports["ɵy"] = CharacteristicAnswerComponent;
|
|
61945
|
+
exports["ɵya"] = TransactionServiceMessageModule;
|
|
61946
|
+
exports["ɵyb"] = TransactionServiceMessageComponent;
|
|
61947
|
+
exports["ɵyc"] = TransactionServiceOverviewComponent;
|
|
61948
|
+
exports["ɵyd"] = TransactionCardsModule;
|
|
61949
|
+
exports["ɵye"] = TransactionCardsComponent;
|
|
61950
|
+
exports["ɵyf"] = TransactionMarginBlockComponent;
|
|
61951
|
+
exports["ɵyg"] = ClickBlockModule;
|
|
61952
|
+
exports["ɵyh"] = ClickBlockComponent;
|
|
61953
|
+
exports["ɵyi"] = DialogTransactionLineWarehouseCcModule;
|
|
61954
|
+
exports["ɵyj"] = DialogTransactionLineWarehouseCcComponent;
|
|
61955
|
+
exports["ɵyk"] = TransactionLineWarehouseCcGeneralComponent;
|
|
61956
|
+
exports["ɵyl"] = TransactionLineWarehouseCcBaseComponent;
|
|
61957
|
+
exports["ɵym"] = TransactionLineWarehouseCcDirectsellComponent;
|
|
61958
|
+
exports["ɵyn"] = TransactionLineWarehouseCcInterbranchComponent;
|
|
61959
|
+
exports["ɵyo"] = DialogTransactionHeaderBranchModule;
|
|
61960
|
+
exports["ɵyp"] = DialogTransactionHeaderBranchComponent;
|
|
61961
|
+
exports["ɵyq"] = DialogBranchModule;
|
|
61962
|
+
exports["ɵyr"] = DialogBranchComponent;
|
|
61963
|
+
exports["ɵys"] = TransactionArticleStockModule;
|
|
61964
|
+
exports["ɵyt"] = TransactionArticleStockComponent;
|
|
61965
|
+
exports["ɵyu"] = TransactionHeaderCustomerPortalModule;
|
|
61966
|
+
exports["ɵyv"] = TransactionHeaderCustomerPortalComponent;
|
|
61967
|
+
exports["ɵyw"] = TransactionInternalComponent;
|
|
61968
|
+
exports["ɵyx"] = TransactionSalesReservationPopupComponent;
|
|
61969
|
+
exports["ɵyy"] = TransactionCashRegisterOrderReceiptDialogModule;
|
|
61970
|
+
exports["ɵyz"] = TransactionCashRegisterOrderReceiptDialogComponent;
|
|
61971
|
+
exports["ɵz"] = WarehouseModule;
|
|
61972
|
+
exports["ɵza"] = SaveCancelButtonsModule;
|
|
61973
|
+
exports["ɵzb"] = SaveCancelButtonsComponent;
|
|
61974
|
+
exports["ɵzc"] = TransactionTagComponent;
|
|
61975
|
+
exports["ɵzd"] = SimpleVerticalStepperModule;
|
|
61976
|
+
exports["ɵze"] = SimpleVerticalStepperComponent;
|
|
61977
|
+
exports["ɵzf"] = TransactionCreateService;
|
|
61978
|
+
exports["ɵzg"] = ServiceWizardRelationComponent;
|
|
61979
|
+
exports["ɵzh"] = ServiceWizardSlaComponent;
|
|
61980
|
+
exports["ɵzi"] = ServiceWizardCreateServiceComponent;
|
|
61981
|
+
exports["ɵzj"] = ServiceWizardServiceFieldsComponent;
|
|
61982
|
+
exports["ɵzk"] = ServiceWizardArtOrTransComponent;
|
|
61983
|
+
exports["ɵzl"] = ServiceWizardQuestionsComponent;
|
|
61909
61984
|
|
|
61910
61985
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
61911
61986
|
|