@colijnit/transaction 12.1.36 → 12.1.38
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 +279 -189
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +80 -80
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +81 -81
- package/esm2015/lib/component/checkout/checkout.component.js +3 -1
- package/esm2015/lib/component/core/base/transaction-filter-popup-base.component.js +37 -14
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.component.js +3 -1
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.js +4 -1
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.component.js +3 -1
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.component.js +3 -1
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.component.js +3 -1
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.component.js +3 -1
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.js +6 -2
- package/esm2015/lib/component/shopping-cart-preview/shopping-cart-preview.component.js +2 -1
- package/esm2015/lib/component/transaction/transaction.component.js +2 -1
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.js +2 -2
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +2 -1
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-date.component.js +5 -1
- package/esm2015/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.component.js +6 -2
- package/esm2015/lib/component/transaction-line/transaction-line.component.js +18 -7
- package/esm2015/lib/component/transaction-line/transaction-line.module.js +4 -2
- package/esm2015/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.js +21 -16
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.component.js +45 -5
- package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +6 -2
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.js +7 -6
- package/esm2015/lib/service/article-connector.service.js +2 -2
- package/esm2015/lib/service/dialog.service.js +4 -3
- package/esm2015/lib/service/transaction.service.js +3 -3
- package/fesm2015/colijnit-transaction.js +218 -107
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/core/base/transaction-filter-popup-base.component.d.ts +4 -2
- package/lib/component/dialog/dialog-header-search/style/_layout.scss +16 -0
- package/lib/component/dialog/dialog-header-search/style/_material-definition.scss +4 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_material-definition.scss +1 -1
- package/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_material-definition.scss +1 -1
- package/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_material-definition.scss +1 -1
- package/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_material-definition.scss +1 -1
- package/lib/component/dialog/transaction-line/dialog-transaction-line-vat/style/_material-definition.scss +1 -1
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_material-definition.scss +1 -1
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.d.ts +1 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_material-definition.scss +1 -1
- package/lib/component/transaction-line/style/_layout.scss +6 -0
- package/lib/component/transaction-line/transaction-line.component.d.ts +2 -0
- package/lib/component/transaction-line-checkbox-list/style/_layout.scss +27 -33
- package/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.d.ts +5 -5
- package/lib/component/transaction-line-fields/transaction-line-delivery-date.component.d.ts +9 -0
- package/lib/component/transaction-lines/transaction-lines.component.d.ts +2 -0
- package/lib/service/dialog.service.d.ts +1 -1
- package/lib/service/transaction.service.d.ts +1 -1
- package/lib/style/_variables.scss +1 -0
- package/lib/style/transaction-globals.scss +6 -2
- package/package.json +2 -2
|
@@ -2641,8 +2641,10 @@
|
|
|
2641
2641
|
|
|
2642
2642
|
var TransactionFilterPopupBaseComponent = /** @class */ (function () {
|
|
2643
2643
|
function TransactionFilterPopupBaseComponent() {
|
|
2644
|
+
this.autoClose = false;
|
|
2644
2645
|
this.useModel = true;
|
|
2645
2646
|
this.valueChange = new i0.EventEmitter();
|
|
2647
|
+
this.closeAfterCommit = new i0.EventEmitter();
|
|
2646
2648
|
this.viewModels = [];
|
|
2647
2649
|
this.viewModelsFiltered = [];
|
|
2648
2650
|
this.propsForLabel = [];
|
|
@@ -2677,20 +2679,44 @@
|
|
|
2677
2679
|
enumerable: false,
|
|
2678
2680
|
configurable: true
|
|
2679
2681
|
});
|
|
2680
|
-
TransactionFilterPopupBaseComponent.prototype.commit = function (value) {
|
|
2682
|
+
TransactionFilterPopupBaseComponent.prototype.commit = function (value) {
|
|
2683
|
+
return Promise.resolve(true);
|
|
2684
|
+
};
|
|
2681
2685
|
TransactionFilterPopupBaseComponent.prototype.handleChecked = function (row) {
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2686
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2687
|
+
var currentModel, i;
|
|
2688
|
+
return __generator(this, function (_a) {
|
|
2689
|
+
switch (_a.label) {
|
|
2690
|
+
case 0:
|
|
2691
|
+
row.checked = true;
|
|
2692
|
+
currentModel = this.viewModels.find(function (v) { return v.value === row.value; });
|
|
2693
|
+
if (currentModel) {
|
|
2694
|
+
currentModel.checked = true;
|
|
2695
|
+
}
|
|
2696
|
+
for (i = 0; i < this.viewModels.length; i++) {
|
|
2697
|
+
if (this.viewModels[i].value !== row.value) {
|
|
2698
|
+
this.viewModels[i].checked = false;
|
|
2699
|
+
}
|
|
2700
|
+
}
|
|
2701
|
+
if (!this.useModel) return [3 /*break*/, 4];
|
|
2702
|
+
if (!this.autoClose) return [3 /*break*/, 2];
|
|
2703
|
+
return [4 /*yield*/, this.commit(row.value)];
|
|
2704
|
+
case 1:
|
|
2705
|
+
if (_a.sent()) {
|
|
2706
|
+
this.closeAfterCommit.emit();
|
|
2707
|
+
}
|
|
2708
|
+
return [3 /*break*/, 3];
|
|
2709
|
+
case 2:
|
|
2710
|
+
this.commit(row.value);
|
|
2711
|
+
_a.label = 3;
|
|
2712
|
+
case 3: return [3 /*break*/, 5];
|
|
2713
|
+
case 4:
|
|
2714
|
+
this.valueChange.emit(row.value);
|
|
2715
|
+
_a.label = 5;
|
|
2716
|
+
case 5: return [2 /*return*/];
|
|
2717
|
+
}
|
|
2718
|
+
});
|
|
2719
|
+
});
|
|
2694
2720
|
};
|
|
2695
2721
|
TransactionFilterPopupBaseComponent.prototype.prepareViewModels = function () {
|
|
2696
2722
|
var _this = this;
|
|
@@ -2703,6 +2729,9 @@
|
|
|
2703
2729
|
});
|
|
2704
2730
|
});
|
|
2705
2731
|
this.viewModelsFiltered = this.viewModels.slice();
|
|
2732
|
+
if (!this.useModel && this.viewModels.length > 0) {
|
|
2733
|
+
this.valueChange.next(this.viewModels[0].value);
|
|
2734
|
+
}
|
|
2706
2735
|
};
|
|
2707
2736
|
TransactionFilterPopupBaseComponent.prototype._doSearch = function () {
|
|
2708
2737
|
var _this = this;
|
|
@@ -2731,9 +2760,11 @@
|
|
|
2731
2760
|
{ type: i0.Directive }
|
|
2732
2761
|
];
|
|
2733
2762
|
TransactionFilterPopupBaseComponent.propDecorators = {
|
|
2763
|
+
autoClose: [{ type: i0.Input }],
|
|
2734
2764
|
useModel: [{ type: i0.Input }],
|
|
2735
2765
|
searchText: [{ type: i0.Input }],
|
|
2736
|
-
valueChange: [{ type: i0.Output }]
|
|
2766
|
+
valueChange: [{ type: i0.Output }],
|
|
2767
|
+
closeAfterCommit: [{ type: i0.Output }]
|
|
2737
2768
|
};
|
|
2738
2769
|
|
|
2739
2770
|
var TransactionLineBaseComponent = /** @class */ (function (_super) {
|
|
@@ -2841,7 +2872,7 @@
|
|
|
2841
2872
|
DialogTransactionLineWarehouseComponent.decorators = [
|
|
2842
2873
|
{ type: i0.Component, args: [{
|
|
2843
2874
|
selector: "co-dialog-transaction-line-warehouse",
|
|
2844
|
-
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-warehouse\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (valueChange)=\"handleValueChange($event)\"\n ></co-transaction-line-warehouse>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'WAREHOUSE'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
2875
|
+
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-warehouse\n [autoClose]=\"autoClose\"\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (closeAfterCommit)=\"handleClose(buttonType.Ok)\"\n (valueChange)=\"handleValueChange($event)\"\n ></co-transaction-line-warehouse>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'WAREHOUSE'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
2845
2876
|
encapsulation: i0.ViewEncapsulation.None
|
|
2846
2877
|
},] }
|
|
2847
2878
|
];
|
|
@@ -2862,7 +2893,7 @@
|
|
|
2862
2893
|
DialogTransactionLineCommissionCodeComponent.decorators = [
|
|
2863
2894
|
{ type: i0.Component, args: [{
|
|
2864
2895
|
selector: "co-dialog-transaction-line-commission-code",
|
|
2865
|
-
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-commission-code\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n (valueChange)=\"handleValueChange($event)\"></co-transaction-line-commission-code>\n </co-dialog>\n <ng-template #dialogHeader>\n <div class=\"dialog-header-title\" [textContent]=\"'COMMISSION_CODE' | localize\"></div>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
2896
|
+
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-commission-code\n [autoClose]=\"autoClose\"\n [useModel]=\"useModel\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n (closeAfterCommit)=\"handleClose(buttonType.Ok)\"\n (valueChange)=\"handleValueChange($event)\"></co-transaction-line-commission-code>\n </co-dialog>\n <ng-template #dialogHeader>\n <div class=\"dialog-header-title\" [textContent]=\"'COMMISSION_CODE' | localize\"></div>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
2866
2897
|
encapsulation: i0.ViewEncapsulation.None
|
|
2867
2898
|
},] }
|
|
2868
2899
|
];
|
|
@@ -2954,11 +2985,12 @@
|
|
|
2954
2985
|
DialogTransactionLineWarehouseLocationComponent.decorators = [
|
|
2955
2986
|
{ type: i0.Component, args: [{
|
|
2956
2987
|
selector: "co-dialog-transaction-line-warehouse-location",
|
|
2957
|
-
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"onClose(buttonType.Ok)\">\n <co-transaction-line-warehouse-location\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (valueChange)=\"handleValueChange($event)\"\n ></co-transaction-line-warehouse-location>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'LOCATION'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
2988
|
+
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"onClose(buttonType.Ok)\">\n <co-transaction-line-warehouse-location\n [autoClose]=\"autoClose\"\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n [warehouseNr]=\"warehouseNr\"\n (closeAfterCommit)=\"handleClose(buttonType.Ok)\"\n (valueChange)=\"handleValueChange($event)\"\n ></co-transaction-line-warehouse-location>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'LOCATION'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
2958
2989
|
encapsulation: i0.ViewEncapsulation.None
|
|
2959
2990
|
},] }
|
|
2960
2991
|
];
|
|
2961
2992
|
DialogTransactionLineWarehouseLocationComponent.propDecorators = {
|
|
2993
|
+
warehouseNr: [{ type: i0.Input }],
|
|
2962
2994
|
showClass: [{ type: i0.HostBinding, args: ["class.co-dialog-transaction-line-warehouse-location",] }]
|
|
2963
2995
|
};
|
|
2964
2996
|
|
|
@@ -3040,9 +3072,10 @@
|
|
|
3040
3072
|
};
|
|
3041
3073
|
return this.dynamicComponentService.createComponent(DialogTransactionLineCommissionCodeComponent, data);
|
|
3042
3074
|
};
|
|
3043
|
-
DialogService.prototype.showWarehouseLocation = function () {
|
|
3075
|
+
DialogService.prototype.showWarehouseLocation = function (warehouseNr) {
|
|
3044
3076
|
var data = {
|
|
3045
|
-
useModel: false
|
|
3077
|
+
useModel: false,
|
|
3078
|
+
warehouseNr: warehouseNr
|
|
3046
3079
|
};
|
|
3047
3080
|
return this.dynamicComponentService.createComponent(DialogTransactionLineWarehouseLocationComponent, data);
|
|
3048
3081
|
};
|
|
@@ -5905,7 +5938,7 @@
|
|
|
5905
5938
|
return _this.connector.getStockManagementLocations(warehouseNr).then(function (response) {
|
|
5906
5939
|
if (response && response.validationResult && response.validationResult.success) {
|
|
5907
5940
|
var collection = _this._boFactory.makeBOArrayFromRawBackendDataArray(stockLocation_bo.StockLocation, response.resultObjects);
|
|
5908
|
-
resolve(collection
|
|
5941
|
+
resolve(collection);
|
|
5909
5942
|
}
|
|
5910
5943
|
else {
|
|
5911
5944
|
reject(response.validationMessagesAsString);
|
|
@@ -7085,10 +7118,7 @@
|
|
|
7085
7118
|
TransactionService.prototype.getRelationListObjects = function (relationRequest) {
|
|
7086
7119
|
return this.connector.getRelationListObjects(relationRequest);
|
|
7087
7120
|
};
|
|
7088
|
-
TransactionService.prototype.addArticle = function (articleNo,
|
|
7089
|
-
if (amount === void 0) { amount = 1; }
|
|
7090
|
-
if (warehouseNo === void 0) { warehouseNo = 1; }
|
|
7091
|
-
if (commissionCode === void 0) { commissionCode = "2"; }
|
|
7121
|
+
TransactionService.prototype.addArticle = function (articleNo, isReturn, aboveLineNr, belowLineNr) {
|
|
7092
7122
|
if (isReturn === void 0) { isReturn = false; }
|
|
7093
7123
|
if (aboveLineNr === void 0) { aboveLineNr = 0; }
|
|
7094
7124
|
if (belowLineNr === void 0) { belowLineNr = 0; }
|
|
@@ -7099,7 +7129,7 @@
|
|
|
7099
7129
|
case 0: return [4 /*yield*/, this._checkAndCreateTransaction()];
|
|
7100
7130
|
case 1:
|
|
7101
7131
|
_a.sent();
|
|
7102
|
-
return [4 /*yield*/, this.connector.addTransactionLine(this.currentTransaction.transactionInfo.uuid, transactionLineType_enum.TransactionLineType.ArticleLine, articleNo,
|
|
7132
|
+
return [4 /*yield*/, this.connector.addTransactionLine(this.currentTransaction.transactionInfo.uuid, transactionLineType_enum.TransactionLineType.ArticleLine, articleNo, null, null, null, isReturn, aboveLineNr, belowLineNr)];
|
|
7103
7133
|
case 2:
|
|
7104
7134
|
response = _a.sent();
|
|
7105
7135
|
return [4 /*yield*/, this.handleLineOperationStatuses(response)];
|
|
@@ -7594,6 +7624,7 @@
|
|
|
7594
7624
|
};
|
|
7595
7625
|
CheckoutComponent.prototype.handleTransactionFinished = function (id) {
|
|
7596
7626
|
this.service.currentTransaction = new transactionInfoResponse_bo.TransactionInfoResponse();
|
|
7627
|
+
this.service.relation = new customerFullObject_bo.CustomerFullObject();
|
|
7597
7628
|
this.service.articleAmount = 0;
|
|
7598
7629
|
this.transactionFinished.emit(id);
|
|
7599
7630
|
};
|
|
@@ -9773,6 +9804,7 @@
|
|
|
9773
9804
|
this._imageService = _imageService;
|
|
9774
9805
|
this.icons = Icon;
|
|
9775
9806
|
this.preview = false;
|
|
9807
|
+
this.transactionInfo = new transactionInfo_bo.TransactionInfo();
|
|
9776
9808
|
this.waitingForUserAction = new i0.EventEmitter();
|
|
9777
9809
|
this.sidePanelButtonClicked = new i0.EventEmitter();
|
|
9778
9810
|
this.stock = stockStatus_enum.StockStatus.Low;
|
|
@@ -9933,7 +9965,7 @@
|
|
|
9933
9965
|
TransactionLineComponent.decorators = [
|
|
9934
9966
|
{ type: i0.Component, args: [{
|
|
9935
9967
|
selector: "co-transaction-line",
|
|
9936
|
-
template: "\n <div class=\"transaction-line\">\n <ng-container *ngIf=\"line.isArticle\">\n <div class=\"transaction-line-wrapper\">\n <div class=\"transaction-line-image\" [class.preview]=\"preview\">\n <co-image-display [model]=\"image\"></co-image-display>\n </div>\n <div class=\"transaction-line-description\">\n <div class=\"description-wrapper\">\n <co-transaction-line-description class=\"transaction-line-description-description\"\n [transactionLine]=\"line\"\n [defaultEditMode]=\"false\"\n [showLabel]=\"false\"\n ></co-transaction-line-description>\n <span *ngIf=\"line.goodDescription && line.articleNumber\" class=\"transaction-line-description-divider\">|</span>\n <span [textContent]=\"line.articleNumber\" class=\"transaction-line-description-sku\"></span>\n <co-icon class=\"delete-icon\" [iconData]=\"iconCacheService.getIcon(icons.TrashCanLight)\" (click)=\"deleteTransactionLineClick()\"></co-icon>\n </div>\n <div *ngIf=!preview class=\"article-text-wrapper\">\n <div class=\"article-text\" *ngFor=\"let text of line.articleTestAsArray\">\n <span [innerHTML]=\"text | safeHtml\" (dblclick)=\"handleOpenArticleText(text)\"></span>\n </div>\n </div>\n <div *ngIf=!preview class=\"configuration-text-wrapper\">\n <span [innerHTML]=\"line.configurationReadable\"></span>\n </div>\n </div>\n <div *ngIf=!preview class=\"transaction-line-stock\">\n <div class=\"transaction-line-stock-wrapper\">\n <stock-status-indicator [model]=\"stock\"></stock-status-indicator>\n </div>\n </div>\n <div *ngIf=!preview class=\"transaction-line-extended-wrapper\">\n <div class=\"transaction-line-button\" (click)=\"openTheCommissionCodeDialog()\">\n <span class=\"co-transaction-overflow-ellipsis\" [textContent]=\"line.commissionCode | append:' | ' | append:line.commissionDescription\"></span>\n </div>\n <div class=\"transaction-line-button\" (click)=\"openTheWarehouseDialog()\">\n <co-icon class=\"header-warehouse-icon\" [iconData]=\"iconCacheService.getIcon(icons.Warehouse)\"></co-icon>\n <span class=\"co-transaction-overflow-ellipsis\" [textContent]=\"line.warehouseNumber\"></span>\n </div>\n <div class=\"transaction-line-button big\" (click)=\"openTheDeliveryMethodDialog()\">\n <co-icon class=\"header-delivery-truck-icon\" [iconData]=\"iconCacheService.getIcon(icons.TruckFastSolid)\"></co-icon>\n <span class=\"co-transaction-overflow-ellipsis\" [textContent]=\"line.deliveryMethodDescription\"></span>\n </div>\n <div class=\"transaction-line-button custom-width no-border two-column\">\n <span [textContent]=\"'DELIVERY_DATE' | localize | append:':'\" class=\"small-font\"></span>\n <
|
|
9968
|
+
template: "\n <div class=\"transaction-line\">\n <ng-container *ngIf=\"line.isArticle\">\n <div class=\"transaction-line-wrapper\">\n <div class=\"transaction-line-image\" [class.preview]=\"preview\">\n <co-image-display [model]=\"image\"></co-image-display>\n </div>\n <div class=\"transaction-line-description\">\n <div class=\"description-wrapper\">\n <co-transaction-line-description class=\"transaction-line-description-description\"\n [transactionLine]=\"line\"\n [defaultEditMode]=\"false\"\n [showLabel]=\"false\"\n ></co-transaction-line-description>\n <span *ngIf=\"line.goodDescription && line.articleNumber\" class=\"transaction-line-description-divider\">|</span>\n <span [textContent]=\"line.articleNumber\" class=\"transaction-line-description-sku\"></span>\n <co-icon class=\"delete-icon\" [iconData]=\"iconCacheService.getIcon(icons.TrashCanLight)\" (click)=\"deleteTransactionLineClick()\"></co-icon>\n </div>\n <div *ngIf=!preview class=\"article-text-wrapper\">\n <div class=\"article-text\" *ngFor=\"let text of line.articleTestAsArray\">\n <span [innerHTML]=\"text | safeHtml\" (dblclick)=\"handleOpenArticleText(text)\"></span>\n </div>\n </div>\n <div *ngIf=!preview class=\"configuration-text-wrapper\">\n <span [innerHTML]=\"line.configurationReadable\"></span>\n </div>\n </div>\n <div *ngIf=!preview class=\"transaction-line-stock\">\n <div class=\"transaction-line-stock-wrapper\">\n <stock-status-indicator [model]=\"stock\"></stock-status-indicator>\n </div>\n </div>\n <div *ngIf=!preview class=\"transaction-line-extended-wrapper\">\n <div class=\"transaction-line-button\" (click)=\"openTheCommissionCodeDialog()\">\n <span class=\"co-transaction-overflow-ellipsis\" [textContent]=\"line.commissionCode | append:' | ' | append:line.commissionDescription\"></span>\n </div>\n <div class=\"transaction-line-button\" (click)=\"openTheWarehouseDialog()\">\n <co-icon class=\"header-warehouse-icon\" [iconData]=\"iconCacheService.getIcon(icons.Warehouse)\"></co-icon>\n <span class=\"co-transaction-overflow-ellipsis\" [textContent]=\"line.warehouseNumber\"></span>\n </div>\n <div class=\"transaction-line-button big\" (click)=\"openTheDeliveryMethodDialog()\">\n <co-icon class=\"header-delivery-truck-icon\" [iconData]=\"iconCacheService.getIcon(icons.TruckFastSolid)\"></co-icon>\n <span class=\"co-transaction-overflow-ellipsis\" [textContent]=\"line.deliveryMethodDescription\"></span>\n </div>\n <div class=\"transaction-line-button custom-width no-border no-pointer two-column\">\n <span [textContent]=\"'DELIVERY_DATE' | localize | append:':'\" class=\"small-font\"></span>\n <co-transaction-line-delivery-date class=\"transaction-line-deliverydate\"\n [transactionLine]=\"line\"\n [transactionInfo]=\"transactionInfo\"\n [showLabel]=\"false\"\n [defaultEditMode]=\"false\"\n ></co-transaction-line-delivery-date>\n </div>\n </div>\n <div *ngIf=\"!preview\" class=\"transaction-line-button\" (click)=\"openVatDialog()\">\n <span class=\"co-transaction-overflow-ellipsis\" [textContent]=\"line.vatDescription\"></span>\n </div>\n <div class=\"transaction-line-totals\">\n <co-transaction-line-price class=\"transaction-line-totals-price price\"\n [transactionLine]=\"line\"\n [showLabel]=\"false\"\n [defaultEditMode]=\"false\"\n ></co-transaction-line-price>\n <div class=\"transaction-line-button center-align custom-width\" (click)=\"openTheDiscountDialog()\">\n <span class=\"co-transaction-overflow-ellipsis transaction-line-discount\" [class.negative]=\"line.lineTotalDiscountAmount < 0\"\n [textContent]=\"(line.lineTotalDiscountAmount | coCurrency) || ('DISCOUNT' | localize)\"></span>\n </div>\n <div *ngIf=!preview class=\"transaction-line-totals-amount\">\n <co-input-number-picker class=\"amount-number-picker\"\n [(model)]=\"localAmount\" [min]=\"0\"\n [readonly]=\"readonly\"\n (modelChange)=\"changeLineAmount($event)\"></co-input-number-picker>\n </div>\n <co-editable-label class=\"transaction-line-totals-total price\"\n [model]=\"line.displayNetLineTotal | coCurrency\"\n [editModel]=\"line.displayNetLineTotal\"\n [readonly]=\"true\"\n [commit]=\"false\"\n ></co-editable-label>\n </div>\n <div *ngIf=\"!preview\" class=\"transaction-line-buttons\">\n <co-transaction-line-action-buttons\n [transactionLine]=\"line\"\n (waitingForUserAction)=\"waitingForUserAction.next($event)\"\n (sidePanelButtonClicked)=\"handleShowSidePanel()\"\n ></co-transaction-line-action-buttons>\n </div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"line.isText\">\n <div [textContent]=\"line.text\"></div>\n <div class=\"transaction-line-delete\" *ngIf=\"!preview\">\n <co-icon class=\"delete-icon\" [iconData]=\"iconCacheService.getIcon(icons.TrashCanLight)\" (click)=\"deleteTransactionLineClick()\"></co-icon>\n </div>\n </ng-container>\n <co-dialog-transaction-line-delivery-method *ngIf=\"showDialogDeliveryMethod\"\n [autoClose]=\"true\"\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLine]=\"line\"\n (close)=\"showDialogDeliveryMethod = false\"\n ></co-dialog-transaction-line-delivery-method>\n <co-dialog-transaction-line-commission-code *ngIf=\"showDialogCommissionCode\"\n [autoClose]=\"true\"\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLine]=\"line\"\n (close)=\"showDialogCommissionCode = false\"\n ></co-dialog-transaction-line-commission-code>\n <co-dialog-transaction-line-vat *ngIf=\"showDialogVat\"\n [autoClose]=\"true\"\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLine]=\"line\"\n (close)=\"showDialogVat = false\"\n ></co-dialog-transaction-line-vat>\n <co-dialog-transaction-line-warehouse *ngIf=\"showDialogWarehouse\"\n [autoClose]=\"true\"\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLine]=\"line\"\n (close)=\"showDialogWarehouse = false\"\n ></co-dialog-transaction-line-warehouse>\n <co-dialog-transaction-line-discount *ngIf=\"showDialogDiscount\"\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLine]=\"line\"\n (close)=\"showDialogDiscount = false\"\n ></co-dialog-transaction-line-discount>\n </div>\n ",
|
|
9937
9969
|
encapsulation: i0.ViewEncapsulation.None
|
|
9938
9970
|
},] }
|
|
9939
9971
|
];
|
|
@@ -9946,6 +9978,7 @@
|
|
|
9946
9978
|
]; };
|
|
9947
9979
|
TransactionLineComponent.propDecorators = {
|
|
9948
9980
|
preview: [{ type: i0.HostBinding, args: ["class.preview",] }, { type: i0.Input }],
|
|
9981
|
+
transactionInfo: [{ type: i0.Input }],
|
|
9949
9982
|
line: [{ type: i0.Input }],
|
|
9950
9983
|
waitingForUserAction: [{ type: i0.Output }],
|
|
9951
9984
|
sidePanelButtonClicked: [{ type: i0.Output }],
|
|
@@ -10415,7 +10448,7 @@
|
|
|
10415
10448
|
DialogTransactionLineDeliveryMethodComponent.decorators = [
|
|
10416
10449
|
{ type: i0.Component, args: [{
|
|
10417
10450
|
selector: "co-dialog-transaction-line-delivery-method",
|
|
10418
|
-
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-delivery-method\n [useModel]=\"useModel\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (valueChange)=\"handleValueChange($event)\"></co-transaction-line-delivery-method>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'DELIVERY_METHOD'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
10451
|
+
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-delivery-method\n [autoClose]=\"autoClose\"\n [useModel]=\"useModel\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (closeAfterCommit)=\"handleClose(buttonType.Ok)\"\n (valueChange)=\"handleValueChange($event)\"></co-transaction-line-delivery-method>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'DELIVERY_METHOD'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
10419
10452
|
encapsulation: i0.ViewEncapsulation.None
|
|
10420
10453
|
},] }
|
|
10421
10454
|
];
|
|
@@ -10483,26 +10516,29 @@
|
|
|
10483
10516
|
this.checked = new i0.EventEmitter();
|
|
10484
10517
|
this.showClass = true;
|
|
10485
10518
|
this.smallToolbar = true;
|
|
10519
|
+
this.itemHeight = 1000;
|
|
10486
10520
|
}
|
|
10521
|
+
TransactionLineCheckboxListComponent.prototype.ngAfterViewChecked = function () {
|
|
10522
|
+
if (this.scrollingItem && this.itemHeight === 1000) {
|
|
10523
|
+
this.itemHeight = this.scrollingItem.nativeElement.offsetHeight;
|
|
10524
|
+
}
|
|
10525
|
+
};
|
|
10487
10526
|
TransactionLineCheckboxListComponent.prototype.handleChecked = function (event, row) {
|
|
10488
10527
|
event.preventDefault();
|
|
10489
10528
|
event.stopPropagation();
|
|
10490
10529
|
this.checked.emit(row);
|
|
10491
10530
|
};
|
|
10492
|
-
TransactionLineCheckboxListComponent.prototype._initObserver = function () {
|
|
10493
|
-
};
|
|
10494
|
-
TransactionLineCheckboxListComponent.prototype._handleVisibility = function () {
|
|
10495
|
-
};
|
|
10496
10531
|
return TransactionLineCheckboxListComponent;
|
|
10497
10532
|
}());
|
|
10498
10533
|
TransactionLineCheckboxListComponent.decorators = [
|
|
10499
10534
|
{ type: i0.Component, args: [{
|
|
10500
10535
|
selector: "co-transaction-line-checkbox-list",
|
|
10501
|
-
template: "\n <
|
|
10536
|
+
template: "\n <cdk-virtual-scroll-viewport [itemSize]=\"itemHeight\" class=\"virtual-scroll-container\">\n <div *cdkVirtualFor=\"let row of collection\" #scrollingItem class=\"virtual-scroll-item\">\n <div class=\"checkbox-wrapper\">\n <co-input-checkbox\n [model]=\"row.checked\"\n [readonly]=\"readonly\"\n (click)=\"handleChecked($event, row)\"\n ></co-input-checkbox>\n </div>\n <div class=\"label-wrapper\">\n <span *ngFor=\"let label of row.propsForLabel\" [innerHTML]=\"label\" class=\"label\"></span>\n </div>\n </div>\n </cdk-virtual-scroll-viewport>\n ",
|
|
10502
10537
|
encapsulation: i0.ViewEncapsulation.None
|
|
10503
10538
|
},] }
|
|
10504
10539
|
];
|
|
10505
10540
|
TransactionLineCheckboxListComponent.propDecorators = {
|
|
10541
|
+
scrollingItem: [{ type: i0.ViewChild, args: ['scrollingItem',] }],
|
|
10506
10542
|
collection: [{ type: i0.Input }],
|
|
10507
10543
|
readonly: [{ type: i0.Input }],
|
|
10508
10544
|
checked: [{ type: i0.Output }],
|
|
@@ -10752,7 +10788,7 @@
|
|
|
10752
10788
|
DialogTransactionLineVatComponent.decorators = [
|
|
10753
10789
|
{ type: i0.Component, args: [{
|
|
10754
10790
|
selector: "co-dialog-transaction-line-vat",
|
|
10755
|
-
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-vat\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (valueChange)=\"handleValueChange($event)\"\n ></co-transaction-line-vat>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'VAT'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
10791
|
+
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-vat\n [autoClose]=\"autoClose\"\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (closeAfterCommit)=\"handleClose(buttonType.Ok)\"\n (valueChange)=\"handleValueChange($event)\"\n ></co-transaction-line-vat>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'VAT'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
10756
10792
|
encapsulation: i0.ViewEncapsulation.None
|
|
10757
10793
|
},] }
|
|
10758
10794
|
];
|
|
@@ -11400,7 +11436,7 @@
|
|
|
11400
11436
|
DialogTransactionLinePriceListComponent.decorators = [
|
|
11401
11437
|
{ type: i0.Component, args: [{
|
|
11402
11438
|
selector: "co-dialog-transaction-line-price-list",
|
|
11403
|
-
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-price-list\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (valueChange)=\"handleValueChange($event)\"></co-transaction-line-price-list>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'PRICE_LIST'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
11439
|
+
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-line-price-list\n [autoClose]=\"autoClose\"\n [useModel]=\"useModel\"\n [transactionLine]=\"transactionLine\"\n [searchText]=\"searchText\"\n (closeAfterCommit)=\"handleClose(buttonType.Ok)\"\n (valueChange)=\"handleValueChange($event)\"></co-transaction-line-price-list>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'PRICE_LIST'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
11404
11440
|
encapsulation: i0.ViewEncapsulation.None
|
|
11405
11441
|
},] }
|
|
11406
11442
|
];
|
|
@@ -11460,6 +11496,115 @@
|
|
|
11460
11496
|
},] }
|
|
11461
11497
|
];
|
|
11462
11498
|
|
|
11499
|
+
var TransactionLineDeliveryDateComponent = /** @class */ (function (_super) {
|
|
11500
|
+
__extends(TransactionLineDeliveryDateComponent, _super);
|
|
11501
|
+
function TransactionLineDeliveryDateComponent(_transactionService) {
|
|
11502
|
+
var _this = _super.call(this) || this;
|
|
11503
|
+
_this._transactionService = _transactionService;
|
|
11504
|
+
_this.showLabel = true;
|
|
11505
|
+
_this.defaultEditMode = true;
|
|
11506
|
+
_this._editMode = false;
|
|
11507
|
+
return _this;
|
|
11508
|
+
}
|
|
11509
|
+
Object.defineProperty(TransactionLineDeliveryDateComponent.prototype, "child", {
|
|
11510
|
+
set: function (content) {
|
|
11511
|
+
var _this = this;
|
|
11512
|
+
if (content) {
|
|
11513
|
+
this.input = content;
|
|
11514
|
+
this.input.commit = function (date) { return _this.commit(date); };
|
|
11515
|
+
if (this._editMode) {
|
|
11516
|
+
this.input.requestFocus();
|
|
11517
|
+
}
|
|
11518
|
+
}
|
|
11519
|
+
},
|
|
11520
|
+
enumerable: false,
|
|
11521
|
+
configurable: true
|
|
11522
|
+
});
|
|
11523
|
+
Object.defineProperty(TransactionLineDeliveryDateComponent.prototype, "editMode", {
|
|
11524
|
+
get: function () {
|
|
11525
|
+
return this._editMode;
|
|
11526
|
+
},
|
|
11527
|
+
set: function (value) {
|
|
11528
|
+
this._editMode = value;
|
|
11529
|
+
if (this._editMode && this.input) {
|
|
11530
|
+
this.input.doFocus();
|
|
11531
|
+
}
|
|
11532
|
+
},
|
|
11533
|
+
enumerable: false,
|
|
11534
|
+
configurable: true
|
|
11535
|
+
});
|
|
11536
|
+
TransactionLineDeliveryDateComponent.prototype.handleClick = function (event) {
|
|
11537
|
+
if (!this.readonly) {
|
|
11538
|
+
this.editMode = true;
|
|
11539
|
+
}
|
|
11540
|
+
};
|
|
11541
|
+
TransactionLineDeliveryDateComponent.prototype.commit = function (date) {
|
|
11542
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
11543
|
+
var oldDate, success;
|
|
11544
|
+
return __generator(this, function (_a) {
|
|
11545
|
+
switch (_a.label) {
|
|
11546
|
+
case 0:
|
|
11547
|
+
if (!(this.transactionLine.deliveryDate !== date)) return [3 /*break*/, 2];
|
|
11548
|
+
oldDate = this.transactionLine.deliveryDate;
|
|
11549
|
+
return [4 /*yield*/, this._transactionService.updateDeliveryDateTransactionLine(this._transactionService.currentTransaction.transactionInfo.uuid, this.transactionLine.uuid, date)];
|
|
11550
|
+
case 1:
|
|
11551
|
+
success = _a.sent();
|
|
11552
|
+
if (!success) {
|
|
11553
|
+
this.transactionLine.deliveryDate = oldDate;
|
|
11554
|
+
}
|
|
11555
|
+
else {
|
|
11556
|
+
this.editMode = false;
|
|
11557
|
+
}
|
|
11558
|
+
return [2 /*return*/, success];
|
|
11559
|
+
case 2: return [2 /*return*/, true];
|
|
11560
|
+
}
|
|
11561
|
+
});
|
|
11562
|
+
});
|
|
11563
|
+
};
|
|
11564
|
+
TransactionLineDeliveryDateComponent.prototype.transactionInfoSet = function () {
|
|
11565
|
+
this.readonly = this.readonly || (this.transactionInfo.deliveryDateDefinitive || !this.transactionInfo.allowPartialDelivery);
|
|
11566
|
+
};
|
|
11567
|
+
return TransactionLineDeliveryDateComponent;
|
|
11568
|
+
}(TransactionLineBaseComponent));
|
|
11569
|
+
TransactionLineDeliveryDateComponent.decorators = [
|
|
11570
|
+
{ type: i0.Component, args: [{
|
|
11571
|
+
selector: "co-transaction-line-delivery-date",
|
|
11572
|
+
template: "\n <span *ngIf=\"(!editMode || readonly) && !defaultEditMode\" [textContent]=\"transactionLine.deliveryDate | date:'dd MMM yyyy'\"></span>\n <co-input-date #input *ngIf=\"editMode || defaultEditMode\"\n [placeholder]=\"showLabel ? ('DELIVERY_DATE' | localize) : ''\"\n [showSaveCancel]=\"!readonly\"\n [readonly]=\"readonly\"\n [model]=\"transactionLine.deliveryDate\"\n (modelChange)=\"commit($event)\"\n (blur)=\"editMode = false\"\n ></co-input-date>\n ",
|
|
11573
|
+
encapsulation: i0.ViewEncapsulation.None
|
|
11574
|
+
},] }
|
|
11575
|
+
];
|
|
11576
|
+
TransactionLineDeliveryDateComponent.ctorParameters = function () { return [
|
|
11577
|
+
{ type: TransactionService }
|
|
11578
|
+
]; };
|
|
11579
|
+
TransactionLineDeliveryDateComponent.propDecorators = {
|
|
11580
|
+
child: [{ type: i0.ViewChild, args: ['input', { read: corecomponents_v12.InputDatePickerComponent },] }],
|
|
11581
|
+
showLabel: [{ type: i0.Input }],
|
|
11582
|
+
defaultEditMode: [{ type: i0.Input }],
|
|
11583
|
+
editMode: [{ type: i0.Input }],
|
|
11584
|
+
handleClick: [{ type: i0.HostListener, args: ["click", ["$event"],] }]
|
|
11585
|
+
};
|
|
11586
|
+
|
|
11587
|
+
var TransactionLineDeliveryDateModule = /** @class */ (function () {
|
|
11588
|
+
function TransactionLineDeliveryDateModule() {
|
|
11589
|
+
}
|
|
11590
|
+
return TransactionLineDeliveryDateModule;
|
|
11591
|
+
}());
|
|
11592
|
+
TransactionLineDeliveryDateModule.decorators = [
|
|
11593
|
+
{ type: i0.NgModule, args: [{
|
|
11594
|
+
imports: [
|
|
11595
|
+
common.CommonModule,
|
|
11596
|
+
PipeModule,
|
|
11597
|
+
corecomponents_v12.InputDatePickerModule
|
|
11598
|
+
],
|
|
11599
|
+
declarations: [
|
|
11600
|
+
TransactionLineDeliveryDateComponent
|
|
11601
|
+
],
|
|
11602
|
+
exports: [
|
|
11603
|
+
TransactionLineDeliveryDateComponent
|
|
11604
|
+
]
|
|
11605
|
+
},] }
|
|
11606
|
+
];
|
|
11607
|
+
|
|
11463
11608
|
var TransactionLineModule = /** @class */ (function () {
|
|
11464
11609
|
function TransactionLineModule() {
|
|
11465
11610
|
}
|
|
@@ -11485,7 +11630,8 @@
|
|
|
11485
11630
|
DialogTransactionLineCommissionCodeModule,
|
|
11486
11631
|
DialogTransactionLineVatModule,
|
|
11487
11632
|
DialogTransactionLineWarehouseModule,
|
|
11488
|
-
DialogTransactionLineDiscountModule
|
|
11633
|
+
DialogTransactionLineDiscountModule,
|
|
11634
|
+
TransactionLineDeliveryDateModule
|
|
11489
11635
|
],
|
|
11490
11636
|
declarations: [
|
|
11491
11637
|
TransactionLineComponent
|
|
@@ -11501,6 +11647,7 @@
|
|
|
11501
11647
|
this.iconCacheService = iconCacheService;
|
|
11502
11648
|
this.service = service;
|
|
11503
11649
|
this.icons = Icon;
|
|
11650
|
+
this.transactionInfo = new transactionInfo_bo.TransactionInfo();
|
|
11504
11651
|
this.transactionLines = [];
|
|
11505
11652
|
this.preview = false;
|
|
11506
11653
|
this.saveTransactionLine = new i0.EventEmitter();
|
|
@@ -11574,7 +11721,7 @@
|
|
|
11574
11721
|
TransactionLinesComponent.decorators = [
|
|
11575
11722
|
{ type: i0.Component, args: [{
|
|
11576
11723
|
selector: "co-transaction-lines",
|
|
11577
|
-
template: "\n <div cdkDropListGroup class=\"drop-list-group\">\n <div #dropList cdkDropList cdkDropListOrientation=\"vertical\"\n class=\"transaction-lines-drag-drop-list narrow-scrollbar\"\n [cdkDropListDisabled]=\"preview || userActionRequired\"\n [cdkDropListData]=\"transactionLines\"\n [cdkDropListEnterPredicate]=\"handleCanDragDrop\"\n (cdkDropListDropped)=\"handleDrop($event)\"\n >\n <div class=\"draggable-transaction-line\" *ngFor=\"let line of transactionLines; trackBy:trackByFn;\" cdkDrag>\n <co-icon class=\"transaction-line-drag-handle\" [class.show]=\"line === selectedTransactionLine && transactionLines.length > 1\" cdkDragHandle\n [iconData]=\"iconCacheService.getIcon(icons.GripDotsVerticalSolid)\">\n </co-icon>\n <co-transaction-line\n [preview]=\"preview\"\n [line]=\"line\"\n [selected]=\"line === selectedTransactionLine\"\n (dblclick)=\"handleTransactionLineDblClick(line)\"\n (sidePanelButtonClicked)=\"handleShowSidePanelClicked(line)\"\n (waitingForUserAction)=\"userActionRequired = $event\"\n (click)=\"selectedTransactionLine = line\"\n ></co-transaction-line>\n </div>\n </div>\n </div>\n <co-button *ngIf=!preview class=\"add-text-button circle\" [iconData]=\"iconCacheService.getIcon(icons.Txt)\" (click)=\"handleTransactionArticleText($event)\"></co-button>\n <co-transaction-article-text *ngIf=\"showTransactionArticleText\"\n [header]=\"'TEXT' | localize\"\n [transactionLine]=\"selectedArticleText\"\n [editText]=\"textToEdit\"\n (saveClick)=\"saveTransactionArticleLineText($event)\"\n (closeClick)=\"closeTransactionArticleText($event)\"\n (cancelClick)=\"closeTransactionArticleText($event)\"\n ></co-transaction-article-text>\n ",
|
|
11724
|
+
template: "\n <div cdkDropListGroup class=\"drop-list-group\">\n <div #dropList cdkDropList cdkDropListOrientation=\"vertical\"\n class=\"transaction-lines-drag-drop-list narrow-scrollbar\"\n [cdkDropListDisabled]=\"preview || userActionRequired\"\n [cdkDropListData]=\"transactionLines\"\n [cdkDropListEnterPredicate]=\"handleCanDragDrop\"\n (cdkDropListDropped)=\"handleDrop($event)\"\n >\n <div class=\"draggable-transaction-line\" *ngFor=\"let line of transactionLines; trackBy:trackByFn;\" cdkDrag>\n <co-icon *ngIf=\"!preview\" class=\"transaction-line-drag-handle\" [class.show]=\"line === selectedTransactionLine && transactionLines.length > 1\" cdkDragHandle\n [iconData]=\"iconCacheService.getIcon(icons.GripDotsVerticalSolid)\">\n </co-icon>\n <co-transaction-line\n [preview]=\"preview\"\n [transactionInfo]=\"transactionInfo\"\n [line]=\"line\"\n [selected]=\"line === selectedTransactionLine\"\n (dblclick)=\"handleTransactionLineDblClick(line)\"\n (sidePanelButtonClicked)=\"handleShowSidePanelClicked(line)\"\n (waitingForUserAction)=\"userActionRequired = $event\"\n (click)=\"selectedTransactionLine = line\"\n ></co-transaction-line>\n </div>\n </div>\n </div>\n <co-button *ngIf=!preview class=\"add-text-button circle\" [iconData]=\"iconCacheService.getIcon(icons.Txt)\" (click)=\"handleTransactionArticleText($event)\"></co-button>\n <co-transaction-article-text *ngIf=\"showTransactionArticleText\"\n [header]=\"'TEXT' | localize\"\n [transactionLine]=\"selectedArticleText\"\n [editText]=\"textToEdit\"\n (saveClick)=\"saveTransactionArticleLineText($event)\"\n (closeClick)=\"closeTransactionArticleText($event)\"\n (cancelClick)=\"closeTransactionArticleText($event)\"\n ></co-transaction-article-text>\n ",
|
|
11578
11725
|
encapsulation: i0.ViewEncapsulation.None
|
|
11579
11726
|
},] }
|
|
11580
11727
|
];
|
|
@@ -11584,6 +11731,7 @@
|
|
|
11584
11731
|
]; };
|
|
11585
11732
|
TransactionLinesComponent.propDecorators = {
|
|
11586
11733
|
transactionArticleText: [{ type: i0.ViewChild, args: [TransactionArticleTextComponent,] }],
|
|
11734
|
+
transactionInfo: [{ type: i0.Input }],
|
|
11587
11735
|
transactionLines: [{ type: i0.Input }],
|
|
11588
11736
|
preview: [{ type: i0.Input }],
|
|
11589
11737
|
saveTransactionLine: [{ type: i0.Output }],
|
|
@@ -11634,7 +11782,7 @@
|
|
|
11634
11782
|
ShoppingCartPreviewComponent.decorators = [
|
|
11635
11783
|
{ type: i0.Component, args: [{
|
|
11636
11784
|
selector: "co-shopping-cart-preview",
|
|
11637
|
-
template: "\n <div class=\"cart-header\">\n <span class=\"cart-header-label\" [textContent]=\"'CART' | localize\"></span>\n </div>\n <div class=\"cart-lines\">\n <co-transaction-lines\n [transactionLines]=\"service.currentTransaction.transactionLines\"\n [preview]=\"true\"\n ></co-transaction-lines>\n </div>\n <div class=\"preview-totals-wrapper\">\n <co-transaction-totals [totals]=\"service.currentTransaction.transactionTotal\"></co-transaction-totals>\n </div>\n <div class=\"cart-buttons\">\n <a class=\"button-edit-cart\" [textContent]=\"'EDIT_CART' | localize\"\n (click)=\"editCartClick.emit()\"\n ></a>\n <co-button *ngIf=\"showCheckoutButton\" class=\"button-checkout\" [label]=\"'SHOPPING_CART_CHECKOUT' | localize\"\n [disabled]=\"!service.articleAmount\"\n (click)=\"checkout.emit()\"></co-button>\n </div>\n ",
|
|
11785
|
+
template: "\n <div class=\"cart-header\">\n <span class=\"cart-header-label\" [textContent]=\"'CART' | localize\"></span>\n </div>\n <div class=\"cart-lines\">\n <co-transaction-lines\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLines]=\"service.currentTransaction.transactionLines\"\n [preview]=\"true\"\n ></co-transaction-lines>\n </div>\n <div class=\"preview-totals-wrapper\">\n <co-transaction-totals [totals]=\"service.currentTransaction.transactionTotal\"></co-transaction-totals>\n </div>\n <div class=\"cart-buttons\">\n <a class=\"button-edit-cart\" [textContent]=\"'EDIT_CART' | localize\"\n (click)=\"editCartClick.emit()\"\n ></a>\n <co-button *ngIf=\"showCheckoutButton\" class=\"button-checkout\" [label]=\"'SHOPPING_CART_CHECKOUT' | localize\"\n [disabled]=\"!service.articleAmount\"\n (click)=\"checkout.emit()\"></co-button>\n </div>\n ",
|
|
11638
11786
|
encapsulation: i0.ViewEncapsulation.None
|
|
11639
11787
|
},] }
|
|
11640
11788
|
];
|
|
@@ -13056,7 +13204,7 @@
|
|
|
13056
13204
|
TransactionHeaderDeliveryComponent.decorators = [
|
|
13057
13205
|
{ type: i0.Component, args: [{
|
|
13058
13206
|
selector: "co-transaction-header-delivery",
|
|
13059
|
-
template: "\n <co-transaction-header-block\n [headerBlockTemplate]=\"headerBlock\"\n [firstBlockTemplate]=\"firstBlock\"\n [secondBlockTemplate]=\"secondBlock\"\n [thirdBlockTemplate]=\"thirdBlock\"\n [hasDetails]=\"true\"\n (headerClick)=\"showDialog = true\"\n >\n </co-transaction-header-block>\n <ng-template #headerBlock>\n <div class=\"header-delivery-method\" (click)=\"showTheDeliveryMethodDialog()\">\n <co-icon class=\"header-delivery-truck-icon\" [iconData]=\"iconService.getIcon(icons.TruckFastSolid)\"></co-icon>\n <span [textContent]=\"deliveryMethod?.description\"></span>\n </div>\n <div class=\"header-planning-request-button\">\n <co-icon class=\"planning-request-button\" [class.co-transaction-check]=\"transactionInfo.deliveryDateDefinitive\"\n [iconData]=\"iconService.getIcon(icons.CalendarDayRegular)\"></co-icon>\n </div>\n </ng-template>\n <ng-template #firstBlock>\n <div class=\"header-delivery-deliverydate-label co-transaction-label\" [textContent]=\"'DELIVERY_DATE' | localize\"></div>\n <div class=\"header-delivery-deliverydate-wrapper\" [class.closed]=\"transactionInfo.deliveryDateDefinitive\">\n <co-transaction-header-delivery-date class=\"header-delivery-deliverydate\"\n [transactionInfo]=\"transactionInfo\"\n [defaultEditMode]=\"false\"\n [showLabel]=\"false\"\n ></co-transaction-header-delivery-date>\n <co-icon *ngIf=\"transactionInfo.deliveryDateDefinitive\" [iconData]=\"iconService.getIcon(icons.LockKeyholeSolid)\"></co-icon>\n <co-icon *ngIf=\"!transactionInfo.deliveryDateDefinitive\" [iconData]=\"iconService.getIcon(icons.LockKeyholeOpenSolid)\"></co-icon>\n </div>\n </ng-template>\n <ng-template #secondBlock>\n <div class=\"header-delivery-preferred-deliverydate-label co-transaction-label\" [textContent]=\"'PREFERRED_DATE' | localize\"></div>\n <co-transaction-header-preferred-delivery-date class=\"header-delivery-deliverydate\"\n [transactionInfo]=\"transactionInfo\"\n [defaultEditMode]=\"false\"\n [showLabel]=\"false\"\n ></co-transaction-header-preferred-delivery-date>\n </ng-template>\n <ng-template #thirdBlock>\n <div class=\"header-delivery-partial-delivery-label co-transaction-label\" [textContent]=\"'PART_DELIVERY' | localize\"></div>\n <co-input-checkbox class=\"header-delivery-partial-delivery\" [model]=\"transactionInfo.allowPartialDelivery\"></co-input-checkbox>\n </ng-template>\n <co-dialog *ngIf=\"showDialog\" [headerTemplate]=\"headerTemplate\" (closeClick)=\"showDialog = false\">\n <ng-template #headerTemplate>\n <div class=\"co-transaction-dialog-header-title\" [textContent]=\"'DELIVERY_INFORMATION' | localize\"></div>\n <co-transaction-header-block\n [headerBlockTemplate]=\"headerBlock\"\n [firstBlockTemplate]=\"firstBlock\"\n [secondBlockTemplate]=\"secondBlock\"\n [thirdBlockTemplate]=\"thirdBlock\"\n >\n </co-transaction-header-block>\n </ng-template>\n <co-transaction-header-delivery-options\n [transactionInfo]=\"transactionInfo\"\n [deliveryMethod]=\"deliveryMethod\"\n ></co-transaction-header-delivery-options>\n <co-transaction-header-remarks [transactionInfo]=\"transactionInfo\"></co-transaction-header-remarks>\n <co-transaction-header-reference [transactionInfo]=\"transactionInfo\"></co-transaction-header-reference>\n <co-transaction-header-relation-reference [transactionInfo]=\"transactionInfo\"></co-transaction-header-relation-reference>\n </co-dialog>\n <co-dialog-transaction-header-delivery-method *ngIf=\"showDeliveryMethodDialog\"\n [transactionInfo]=\"transactionInfo\" (close)=\"showDeliveryMethodDialog = false\">\n </co-dialog-transaction-header-delivery-method>\n ",
|
|
13207
|
+
template: "\n <co-transaction-header-block\n [headerBlockTemplate]=\"headerBlock\"\n [firstBlockTemplate]=\"firstBlock\"\n [secondBlockTemplate]=\"secondBlock\"\n [thirdBlockTemplate]=\"thirdBlock\"\n [hasDetails]=\"true\"\n (headerClick)=\"showDialog = true\"\n >\n </co-transaction-header-block>\n <ng-template #headerBlock>\n <div class=\"header-delivery-method\" (click)=\"showTheDeliveryMethodDialog()\">\n <co-icon class=\"header-delivery-truck-icon\" [iconData]=\"iconService.getIcon(icons.TruckFastSolid)\"></co-icon>\n <span [textContent]=\"deliveryMethod?.description\"></span>\n </div>\n <div class=\"header-planning-request-button\">\n <co-icon class=\"planning-request-button\" [class.co-transaction-check]=\"transactionInfo.deliveryDateDefinitive\"\n [iconData]=\"iconService.getIcon(icons.CalendarDayRegular)\"></co-icon>\n </div>\n </ng-template>\n <ng-template #firstBlock>\n <div class=\"header-delivery-deliverydate-label co-transaction-label\" [textContent]=\"'DELIVERY_DATE' | localize\"></div>\n <div class=\"header-delivery-deliverydate-wrapper\" [class.closed]=\"transactionInfo.deliveryDateDefinitive\">\n <co-transaction-header-delivery-date class=\"header-delivery-deliverydate\"\n [transactionInfo]=\"transactionInfo\"\n [defaultEditMode]=\"false\"\n [showLabel]=\"false\"\n ></co-transaction-header-delivery-date>\n <co-icon *ngIf=\"transactionInfo.deliveryDateDefinitive\" [iconData]=\"iconService.getIcon(icons.LockKeyholeSolid)\"></co-icon>\n <co-icon *ngIf=\"!transactionInfo.deliveryDateDefinitive\" [iconData]=\"iconService.getIcon(icons.LockKeyholeOpenSolid)\"></co-icon>\n </div>\n </ng-template>\n <ng-template #secondBlock>\n <div class=\"header-delivery-preferred-deliverydate-label co-transaction-label\" [textContent]=\"'PREFERRED_DATE' | localize\"></div>\n <co-transaction-header-preferred-delivery-date class=\"header-delivery-deliverydate\"\n [transactionInfo]=\"transactionInfo\"\n [defaultEditMode]=\"false\"\n [showLabel]=\"false\"\n ></co-transaction-header-preferred-delivery-date>\n </ng-template>\n <ng-template #thirdBlock>\n <div class=\"header-delivery-partial-delivery-label co-transaction-label\" [textContent]=\"'PART_DELIVERY' | localize\"></div>\n <co-input-checkbox class=\"header-delivery-partial-delivery\" [model]=\"transactionInfo.allowPartialDelivery\"></co-input-checkbox>\n </ng-template>\n <co-dialog *ngIf=\"showDialog\" [headerTemplate]=\"headerTemplate\" (closeClick)=\"showDialog = false\">\n <ng-template #headerTemplate>\n <div class=\"co-transaction-dialog-header-title\" [textContent]=\"'DELIVERY_INFORMATION' | localize\"></div>\n <co-transaction-header-block\n [headerBlockTemplate]=\"headerBlock\"\n [firstBlockTemplate]=\"firstBlock\"\n [secondBlockTemplate]=\"secondBlock\"\n [thirdBlockTemplate]=\"thirdBlock\"\n >\n </co-transaction-header-block>\n </ng-template>\n <co-transaction-header-delivery-options\n [transactionInfo]=\"transactionInfo\"\n [deliveryMethod]=\"deliveryMethod\"\n ></co-transaction-header-delivery-options>\n <co-transaction-header-remarks [transactionInfo]=\"transactionInfo\"></co-transaction-header-remarks>\n <co-transaction-header-reference [transactionInfo]=\"transactionInfo\"></co-transaction-header-reference>\n <co-transaction-header-relation-reference [transactionInfo]=\"transactionInfo\"></co-transaction-header-relation-reference>\n </co-dialog>\n <co-dialog-transaction-header-delivery-method *ngIf=\"showDeliveryMethodDialog\"\n [autoClose]=\"true\"\n [transactionInfo]=\"transactionInfo\" (close)=\"showDeliveryMethodDialog = false\">\n </co-dialog-transaction-header-delivery-method>\n ",
|
|
13060
13208
|
encapsulation: i0.ViewEncapsulation.None
|
|
13061
13209
|
},] }
|
|
13062
13210
|
];
|
|
@@ -13211,6 +13359,9 @@
|
|
|
13211
13359
|
if (!success) {
|
|
13212
13360
|
this.input.model = oldDate;
|
|
13213
13361
|
}
|
|
13362
|
+
else {
|
|
13363
|
+
this.editMode = false;
|
|
13364
|
+
}
|
|
13214
13365
|
return [2 /*return*/, success];
|
|
13215
13366
|
case 2: return [2 /*return*/, true];
|
|
13216
13367
|
}
|
|
@@ -13225,7 +13376,7 @@
|
|
|
13225
13376
|
TransactionHeaderDeliveryDateComponent.decorators = [
|
|
13226
13377
|
{ type: i0.Component, args: [{
|
|
13227
13378
|
selector: "co-transaction-header-delivery-date",
|
|
13228
|
-
template: "\n <span *ngIf=\"(!editMode || readonly) && !defaultEditMode\" [textContent]=\"transactionInfo.deliveryDate | date:'dd MMM yyyy'\"></span>\n <co-input-date #input *ngIf=\"editMode || defaultEditMode\"\n [placeholder]=\"showLabel ? ('DELIVERY_DATE' | localize) : ''\"\n [showSaveCancel]=\"!readonly\"\n [readonly]=\"readonly\"\n [model]=\"transactionInfo.deliveryDate\"\n (blur)=\"editMode = false\"\n ></co-input-date>\n ",
|
|
13379
|
+
template: "\n <span *ngIf=\"(!editMode || readonly) && !defaultEditMode\" [textContent]=\"transactionInfo.deliveryDate | date:'dd MMM yyyy'\"></span>\n <co-input-date #input *ngIf=\"editMode || defaultEditMode\"\n [placeholder]=\"showLabel ? ('DELIVERY_DATE' | localize) : ''\"\n [showSaveCancel]=\"!readonly\"\n [readonly]=\"readonly\"\n [model]=\"transactionInfo.deliveryDate\"\n (modelChange)=\"commitDeliveryDate($event)\"\n (blur)=\"editMode = false\"\n ></co-input-date>\n ",
|
|
13229
13380
|
encapsulation: i0.ViewEncapsulation.None
|
|
13230
13381
|
},] }
|
|
13231
13382
|
];
|
|
@@ -13829,6 +13980,9 @@
|
|
|
13829
13980
|
if (!success) {
|
|
13830
13981
|
this.input.model = oldDate;
|
|
13831
13982
|
}
|
|
13983
|
+
else {
|
|
13984
|
+
this.editMode = false;
|
|
13985
|
+
}
|
|
13832
13986
|
return [2 /*return*/, success];
|
|
13833
13987
|
case 2: return [2 /*return*/, true];
|
|
13834
13988
|
}
|
|
@@ -13843,7 +13997,7 @@
|
|
|
13843
13997
|
TransactionHeaderPreferredDeliveryDateComponent.decorators = [
|
|
13844
13998
|
{ type: i0.Component, args: [{
|
|
13845
13999
|
selector: "co-transaction-header-preferred-delivery-date",
|
|
13846
|
-
template: "\n <span *ngIf=\"(!editMode || readonly) && !defaultEditMode\" [textContent]=\"transactionInfo.preferredDeliveryDate | date:'dd MMM yyyy'\"></span>\n <co-input-date #input *ngIf=\"editMode || defaultEditMode\"\n [placeholder]=\"showLabel ? ('PREFERRED_DATE' | localize) : ''\"\n [showSaveCancel]=\"!readonly\"\n [readonly]=\"readonly\"\n [model]=\"transactionInfo.preferredDeliveryDate\"\n (blur)=\"editMode = false\"\n ></co-input-date>\n ",
|
|
14000
|
+
template: "\n <span *ngIf=\"(!editMode || readonly) && !defaultEditMode\" [textContent]=\"(transactionInfo.preferredDeliveryDate | date:'dd MMM yyyy') || '<invullen>'\"></span>\n <co-input-date #input *ngIf=\"editMode || defaultEditMode\"\n [placeholder]=\"showLabel ? ('PREFERRED_DATE' | localize) : ''\"\n [showSaveCancel]=\"!readonly\"\n [readonly]=\"readonly\"\n [model]=\"transactionInfo.preferredDeliveryDate\"\n (modelChange)=\"commitPreferredDeliveryDate($event)\"\n (blur)=\"editMode = false\"\n ></co-input-date>\n ",
|
|
13847
14001
|
encapsulation: i0.ViewEncapsulation.None
|
|
13848
14002
|
},] }
|
|
13849
14003
|
];
|
|
@@ -13925,7 +14079,7 @@
|
|
|
13925
14079
|
DialogTransactionHeaderDeliveryMethodComponent.decorators = [
|
|
13926
14080
|
{ type: i0.Component, args: [{
|
|
13927
14081
|
selector: "co-dialog-transaction-header-delivery-method",
|
|
13928
|
-
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-header-delivery-method\n [showAsCarousel]=\"false\"\n [useModel]=\"useModel\"\n [transactionInfo]=\"transactionInfo\"\n [searchText]=\"searchText\"\n (valueChange)=\"handleValueChange($event)\"></co-transaction-header-delivery-method>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'DELIVERY_METHOD'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
14082
|
+
template: "\n <co-dialog [headerTemplate]=\"dialogHeader\" [footerTemplate]=\"footerTemplate\" [showCloseIcon]=\"useModel\" (closeClick)=\"handleClose(buttonType.Ok)\">\n <co-transaction-header-delivery-method\n [autoClose]=\"autoClose\"\n [showAsCarousel]=\"false\"\n [useModel]=\"useModel\"\n [transactionInfo]=\"transactionInfo\"\n [searchText]=\"searchText\"\n (closeAfterCommit)=\"handleClose(buttonType.Ok)\"\n (valueChange)=\"handleValueChange($event)\"></co-transaction-header-delivery-method>\n </co-dialog>\n <ng-template #dialogHeader>\n <co-dialog-header-search [title]=\"'DELIVERY_METHOD'\" (search)=\"handleSearch($event)\"></co-dialog-header-search>\n </ng-template>\n <ng-template #footerTemplate>\n <div class=\"dialog-footer-button-wrapper\" *ngIf=\"!useModel\">\n <co-button [label]=\"'OK' | localize\" (click)=\"handleOkClick()\"></co-button>\n </div>\n </ng-template>\n ",
|
|
13929
14083
|
encapsulation: i0.ViewEncapsulation.None
|
|
13930
14084
|
},] }
|
|
13931
14085
|
];
|
|
@@ -14894,7 +15048,7 @@
|
|
|
14894
15048
|
TransactionComponent.decorators = [
|
|
14895
15049
|
{ type: i0.Component, args: [{
|
|
14896
15050
|
selector: "co-transaction",
|
|
14897
|
-
template: "\n <co-transaction-header *ngIf=\"showHeader\" [transaction]=\"transaction\"></co-transaction-header>\n\n <div class=\"transaction-lines-header\">\n <co-transaction-quick-access *ngIf=\"showQuickAccess\" class=\"transaction-lines-header-item\"\n [transactionType]=\"transaction.transactionInfo.transactionKind\"\n [activeCategory]=\"activeCategory\"\n ></co-transaction-quick-access>\n\n <co-transaction-button-bar *ngIf=\"showButtonBar\" class=\"transaction-lines-header-item\"\n [transactionType]=\"transaction.transactionInfo.transactionKind\"\n [selectedCategory]=\"activeCategory\"\n (buttonClicked)=\"handleButtonBarButtonClicked($event)\"\n ></co-transaction-button-bar>\n\n <co-view-mode-buttons class=\"transaction-lines-header-item\"\n [showViewModes]=\"[viewModes.List, viewModes.Grid, viewModes.Tiles]\" (viewModeChange)=\"activeViewMode = $event\"></co-view-mode-buttons>\n </div>\n\n <div class=\"transaction-tiles-wrapper\" *ngIf=\"activeViewMode === viewModes.Tiles\">\n <co-transaction-tile\n *ngFor=\"let transaction of transaction.transactionLines\"\n [transactionLine]=\"transaction\"\n (showSidePanelClicked)=\"handleShowSidePanel($event)\"\n ></co-transaction-tile>\n </div>\n <div class=\"transaction-lines-wrapper\" *ngIf=\"activeViewMode === viewModes.List\">\n <co-transaction-lines\n [transactionLines]=\"transaction.transactionLines\"\n (showSidePanelClicked)=\"handleShowSidePanel($event)\"\n (saveTransactionLine)=\"saveTransactionLine($event)\"\n ></co-transaction-lines>\n </div>\n <div class=\"transaction-lines-grid-wrapper\" *ngIf=\"activeViewMode === viewModes.Grid\">\n <co-transaction-grid\n [transactionLines]=\"transaction.transactionLines\"\n [transactionId]=\"transactionId\"\n [transactionType]=\"transaction.transactionInfo.transactionKind\"\n [activeCategory]=\"activeCategory\"\n (sidePanelClicked)=\"handleShowSidePanel($event)\"\n ></co-transaction-grid>\n <!--\n <co-transaction-order-confirmation-grid\n *ngIf=\"activeCategory === 1\"\n [transactionLines]=\"transaction.transactionLines\"\n (sidePanelClicked)=\"handleShowSidePanel($event)\"\n ></co-transaction-order-confirmation-grid>\n -->\n </div>\n <div class=\"transaction-footer-wrapper\">\n <co-transaction-totals [totals]=\"transaction.transactionTotal\" [showDiscount]=\"true\" (discountClick)=\"addDiscount()\"></co-transaction-totals>\n </div>\n <co-discount *ngIf=\"showDiscountsSidebar\">\n </co-discount>\n ",
|
|
15051
|
+
template: "\n <co-transaction-header *ngIf=\"showHeader\" [transaction]=\"transaction\"></co-transaction-header>\n\n <div class=\"transaction-lines-header\">\n <co-transaction-quick-access *ngIf=\"showQuickAccess\" class=\"transaction-lines-header-item\"\n [transactionType]=\"transaction.transactionInfo.transactionKind\"\n [activeCategory]=\"activeCategory\"\n ></co-transaction-quick-access>\n\n <co-transaction-button-bar *ngIf=\"showButtonBar\" class=\"transaction-lines-header-item\"\n [transactionType]=\"transaction.transactionInfo.transactionKind\"\n [selectedCategory]=\"activeCategory\"\n (buttonClicked)=\"handleButtonBarButtonClicked($event)\"\n ></co-transaction-button-bar>\n\n <co-view-mode-buttons class=\"transaction-lines-header-item\"\n [showViewModes]=\"[viewModes.List, viewModes.Grid, viewModes.Tiles]\" (viewModeChange)=\"activeViewMode = $event\"></co-view-mode-buttons>\n </div>\n\n <div class=\"transaction-tiles-wrapper\" *ngIf=\"activeViewMode === viewModes.Tiles\">\n <co-transaction-tile\n *ngFor=\"let transaction of transaction.transactionLines\"\n [transactionLine]=\"transaction\"\n (showSidePanelClicked)=\"handleShowSidePanel($event)\"\n ></co-transaction-tile>\n </div>\n <div class=\"transaction-lines-wrapper\" *ngIf=\"activeViewMode === viewModes.List\">\n <co-transaction-lines\n [transactionInfo]=\"transaction.transactionInfo\"\n [transactionLines]=\"transaction.transactionLines\"\n (showSidePanelClicked)=\"handleShowSidePanel($event)\"\n (saveTransactionLine)=\"saveTransactionLine($event)\"\n ></co-transaction-lines>\n </div>\n <div class=\"transaction-lines-grid-wrapper\" *ngIf=\"activeViewMode === viewModes.Grid\">\n <co-transaction-grid\n [transactionLines]=\"transaction.transactionLines\"\n [transactionId]=\"transactionId\"\n [transactionType]=\"transaction.transactionInfo.transactionKind\"\n [activeCategory]=\"activeCategory\"\n (sidePanelClicked)=\"handleShowSidePanel($event)\"\n ></co-transaction-grid>\n <!--\n <co-transaction-order-confirmation-grid\n *ngIf=\"activeCategory === 1\"\n [transactionLines]=\"transaction.transactionLines\"\n (sidePanelClicked)=\"handleShowSidePanel($event)\"\n ></co-transaction-order-confirmation-grid>\n -->\n </div>\n <div class=\"transaction-footer-wrapper\">\n <co-transaction-totals [totals]=\"transaction.transactionTotal\" [showDiscount]=\"true\" (discountClick)=\"addDiscount()\"></co-transaction-totals>\n </div>\n <co-discount *ngIf=\"showDiscountsSidebar\">\n </co-discount>\n ",
|
|
14898
15052
|
encapsulation: i0.ViewEncapsulation.None
|
|
14899
15053
|
},] }
|
|
14900
15054
|
];
|
|
@@ -15482,70 +15636,6 @@
|
|
|
15482
15636
|
},] }
|
|
15483
15637
|
];
|
|
15484
15638
|
|
|
15485
|
-
var TransactionLineDeliveryDateComponent = /** @class */ (function (_super) {
|
|
15486
|
-
__extends(TransactionLineDeliveryDateComponent, _super);
|
|
15487
|
-
function TransactionLineDeliveryDateComponent(_transactionService) {
|
|
15488
|
-
var _this = _super.call(this) || this;
|
|
15489
|
-
_this._transactionService = _transactionService;
|
|
15490
|
-
return _this;
|
|
15491
|
-
}
|
|
15492
|
-
TransactionLineDeliveryDateComponent.prototype.commit = function (date) {
|
|
15493
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
15494
|
-
var oldDate, success;
|
|
15495
|
-
return __generator(this, function (_a) {
|
|
15496
|
-
switch (_a.label) {
|
|
15497
|
-
case 0:
|
|
15498
|
-
if (!(this.transactionLine.deliveryDate !== date)) return [3 /*break*/, 2];
|
|
15499
|
-
oldDate = this.transactionLine.deliveryDate;
|
|
15500
|
-
return [4 /*yield*/, this._transactionService.updateDeliveryDateTransactionLine(this._transactionService.currentTransaction.transactionInfo.uuid, this.transactionLine.uuid, date)];
|
|
15501
|
-
case 1:
|
|
15502
|
-
success = _a.sent();
|
|
15503
|
-
if (!success) {
|
|
15504
|
-
this.transactionLine.deliveryDate = oldDate;
|
|
15505
|
-
}
|
|
15506
|
-
return [2 /*return*/, success];
|
|
15507
|
-
case 2: return [2 /*return*/, true];
|
|
15508
|
-
}
|
|
15509
|
-
});
|
|
15510
|
-
});
|
|
15511
|
-
};
|
|
15512
|
-
TransactionLineDeliveryDateComponent.prototype.transactionInfoSet = function () {
|
|
15513
|
-
this.readonly = this.readonly || (this.transactionInfo.deliveryDateDefinitive || !this.transactionInfo.allowPartialDelivery);
|
|
15514
|
-
};
|
|
15515
|
-
return TransactionLineDeliveryDateComponent;
|
|
15516
|
-
}(TransactionLineBaseComponent));
|
|
15517
|
-
TransactionLineDeliveryDateComponent.decorators = [
|
|
15518
|
-
{ type: i0.Component, args: [{
|
|
15519
|
-
selector: "co-transaction-line-delivery-date",
|
|
15520
|
-
template: "\n <co-input-date\n [placeholder]=\"'DELIVERY_DATE' | localize\"\n [model]=\"transactionLine.deliveryDate\"\n [readonly]=\"readonly\"\n (modelChange)=\"commit($event)\"\n ></co-input-date>\n ",
|
|
15521
|
-
encapsulation: i0.ViewEncapsulation.None
|
|
15522
|
-
},] }
|
|
15523
|
-
];
|
|
15524
|
-
TransactionLineDeliveryDateComponent.ctorParameters = function () { return [
|
|
15525
|
-
{ type: TransactionService }
|
|
15526
|
-
]; };
|
|
15527
|
-
|
|
15528
|
-
var TransactionLineDeliveryDateModule = /** @class */ (function () {
|
|
15529
|
-
function TransactionLineDeliveryDateModule() {
|
|
15530
|
-
}
|
|
15531
|
-
return TransactionLineDeliveryDateModule;
|
|
15532
|
-
}());
|
|
15533
|
-
TransactionLineDeliveryDateModule.decorators = [
|
|
15534
|
-
{ type: i0.NgModule, args: [{
|
|
15535
|
-
imports: [
|
|
15536
|
-
common.CommonModule,
|
|
15537
|
-
PipeModule,
|
|
15538
|
-
corecomponents_v12.InputDatePickerModule
|
|
15539
|
-
],
|
|
15540
|
-
declarations: [
|
|
15541
|
-
TransactionLineDeliveryDateComponent
|
|
15542
|
-
],
|
|
15543
|
-
exports: [
|
|
15544
|
-
TransactionLineDeliveryDateComponent
|
|
15545
|
-
]
|
|
15546
|
-
},] }
|
|
15547
|
-
];
|
|
15548
|
-
|
|
15549
15639
|
var TransactionLineReferenceComponent = /** @class */ (function (_super) {
|
|
15550
15640
|
__extends(TransactionLineReferenceComponent, _super);
|
|
15551
15641
|
function TransactionLineReferenceComponent(_transactionService) {
|
|
@@ -16098,7 +16188,7 @@
|
|
|
16098
16188
|
var _this = this;
|
|
16099
16189
|
return __generator(this, function (_a) {
|
|
16100
16190
|
switch (_a.label) {
|
|
16101
|
-
case 0: return [4 /*yield*/, this._dialogService.showWarehouseLocation().then(function (result) {
|
|
16191
|
+
case 0: return [4 /*yield*/, this._dialogService.showWarehouseLocation(this.receiptDetails.warehouseNr).then(function (result) {
|
|
16102
16192
|
_this.receiptDetails.locationNr = result;
|
|
16103
16193
|
})];
|
|
16104
16194
|
case 1:
|
|
@@ -16113,7 +16203,7 @@
|
|
|
16113
16203
|
TransactionReceivingGoodsDetailsComponent.decorators = [
|
|
16114
16204
|
{ type: i0.Component, args: [{
|
|
16115
16205
|
selector: 'co-transaction-receiving-goods-details',
|
|
16116
|
-
template: "\n <div class=\"receipt-details-wrapper\">\n <co-form>\n <div class=\"details-header\" [textContent]=\"'RECEIPT_DETAILS' | localize | uppercase\"></div>\n <div class=\"columns-wrapper\">\n <div class=\"details-column\">\n <co-input-text class=\"details-input\"\n [max]=\"amountLeftToReceive\"\n [(model)]=\"receiptDetails.serialNr ? 1 : receiptDetails.quantityToReceive\"\n [disabled]=\"!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0\"\n [readonly]=\"!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0 || readonly\"\n [required]=\"true\"\n [type]=\"'number'\"\n [min]=\"1\"\n [placeholder]=\"'AMOUNT' | localize\"></co-input-text>\n <co-input-text class=\"details-input\" [(model)]=\"receiptDetails.warehouseNr\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"transactionLine.warehouseNumber !== undefined || readonly\"\n [disabled]=\"transactionLine.warehouseNumber !== undefined\"\n [required]=\"transactionLine.isWarehouseRequired\"\n [placeholder]=\"'WAREHOUSE' | localize\"></co-input-text>\n <div class=\"location-wrapper\" (click)=\"openWarehouseLocationDialog()\">\n <div [textContent]=\"receiptDetails.locationNr ? receiptDetails.locationNr : ('LOCATION' | localize)\"></div>\n </div>\n <co-input-text class=\"details-input\"\n [(model)]=\"request.packingSlipNr\"\n [placeholder]=\"'PACKING_SLIP' | localize\"\n [readonly]=\"readonly\"\n ></co-input-text>\n </div>\n <div class=\"divider-wrapper\">\n <div class=\"divider\"></div>\n </div>\n <div class=\"details-column\">\n <co-input-date class=\"details-input\"\n [(model)]=\"request.receivedDate\"\n [readonly]=\"readonly\"\n ></co-input-date>\n <co-input-text class=\"details-input\" [(model)]=\"receiptDetails.batchNr\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"readonly
|
|
16206
|
+
template: "\n <div class=\"receipt-details-wrapper\">\n <co-form>\n <div class=\"details-header\" [textContent]=\"'RECEIPT_DETAILS' | localize | uppercase\"></div>\n <div class=\"columns-wrapper\">\n <div class=\"details-column\">\n <co-input-text class=\"details-input\"\n [max]=\"amountLeftToReceive\"\n [(model)]=\"receiptDetails.serialNr ? 1 : receiptDetails.quantityToReceive\"\n [disabled]=\"!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0\"\n [readonly]=\"!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0 || readonly\"\n [required]=\"true\"\n [type]=\"'number'\"\n [min]=\"1\"\n [placeholder]=\"'AMOUNT' | localize\"></co-input-text>\n <co-input-text class=\"details-input\" [(model)]=\"receiptDetails.warehouseNr\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"transactionLine.warehouseNumber !== undefined || readonly\"\n [disabled]=\"transactionLine.warehouseNumber !== undefined\"\n [required]=\"transactionLine.isWarehouseRequired\"\n [placeholder]=\"'WAREHOUSE' | localize\"></co-input-text>\n <div class=\"location-wrapper\" (click)=\"openWarehouseLocationDialog()\">\n <div [textContent]=\"receiptDetails.locationNr ? receiptDetails.locationNr : ('LOCATION' | localize)\"></div>\n </div>\n <co-input-text class=\"details-input\"\n [(model)]=\"request.packingSlipNr\"\n [placeholder]=\"'PACKING_SLIP' | localize\"\n [required]=\"true\"\n [readonly]=\"readonly\"\n ></co-input-text>\n </div>\n <div class=\"divider-wrapper\">\n <div class=\"divider\"></div>\n </div>\n <div class=\"details-column\">\n <co-input-date class=\"details-input\"\n [(model)]=\"request.receivedDate\"\n [readonly]=\"readonly\"\n ></co-input-date>\n <co-input-text *ngIf=\"transactionLine.isBatchNrRequired\" class=\"details-input\" [(model)]=\"receiptDetails.batchNr\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"readonly\"\n [required]=\"transactionLine.isBatchNrRequired\"\n [placeholder]=\"'BATCH_NUMBER' | localize\"></co-input-text>\n <co-input-text *ngIf=\"transactionLine.isSerialNrRequired\" class=\"details-input\" [(model)]=\"receiptDetails.serialNr\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"readonly\"\n [required]=\"transactionLine.isSerialNrRequired\"\n [placeholder]=\"'SERIAL_NUMBER' | localize\"></co-input-text>\n <!-- <co-input-text class=\"details-input\" [(model)]=\"receiptDetails.refLineNr\"-->\n <!-- [placeholder]=\"'REFERENCE_ID' | localize\"></co-input-text>-->\n </div>\n </div>\n </co-form>\n\n <div class=\"save-cancel-wrapper\" *ngIf=\"!readonly\">\n <co-button class=\"button-wrapper clickable\" [disabled]=\"saveButtonDisabled || amountLeftToReceive === 0\" [label]=\"'SAVE' | localize\" (click)=\"handleSaveDetailsEdit()\"></co-button>\n <co-button class=\"button-wrapper clickable\" [label]=\"'CANCEL' | localize\" (click)=\"handleCancelDetailsEdit()\"></co-button>\n </div>\n </div>\n ",
|
|
16117
16207
|
providers: [
|
|
16118
16208
|
corecomponents_v12.FormMasterService
|
|
16119
16209
|
],
|
|
@@ -16756,7 +16846,7 @@
|
|
|
16756
16846
|
var _this = this;
|
|
16757
16847
|
return __generator(this, function (_a) {
|
|
16758
16848
|
switch (_a.label) {
|
|
16759
|
-
case 0: return [4 /*yield*/, this._dialogService.showWarehouseLocation().then(function (result) {
|
|
16849
|
+
case 0: return [4 /*yield*/, this._dialogService.showWarehouseLocation(line.warehouseNumber).then(function (result) {
|
|
16760
16850
|
_this.getRowViewModel(line).location = result;
|
|
16761
16851
|
})];
|
|
16762
16852
|
case 1:
|
|
@@ -20131,89 +20221,89 @@
|
|
|
20131
20221
|
exports["ɵdt"] = DialogTransactionLinePriceListModule;
|
|
20132
20222
|
exports["ɵdu"] = DialogTransactionLinePriceListComponent;
|
|
20133
20223
|
exports["ɵdv"] = DialogTransactionLineDiscountComponent;
|
|
20134
|
-
exports["ɵdw"] =
|
|
20135
|
-
exports["ɵdx"] =
|
|
20136
|
-
exports["ɵdy"] =
|
|
20137
|
-
exports["ɵdz"] =
|
|
20224
|
+
exports["ɵdw"] = TransactionLineDeliveryDateModule;
|
|
20225
|
+
exports["ɵdx"] = TransactionLineDeliveryDateComponent;
|
|
20226
|
+
exports["ɵdy"] = TransactionImageService;
|
|
20227
|
+
exports["ɵdz"] = AvatarModule;
|
|
20138
20228
|
exports["ɵe"] = DictionaryService;
|
|
20139
|
-
exports["ɵea"] =
|
|
20140
|
-
exports["ɵeb"] =
|
|
20141
|
-
exports["ɵec"] =
|
|
20142
|
-
exports["ɵed"] =
|
|
20143
|
-
exports["ɵee"] =
|
|
20144
|
-
exports["ɵef"] =
|
|
20145
|
-
exports["ɵeg"] =
|
|
20146
|
-
exports["ɵeh"] =
|
|
20147
|
-
exports["ɵei"] =
|
|
20148
|
-
exports["ɵej"] =
|
|
20149
|
-
exports["ɵek"] =
|
|
20150
|
-
exports["ɵel"] =
|
|
20151
|
-
exports["ɵem"] =
|
|
20152
|
-
exports["ɵen"] =
|
|
20153
|
-
exports["ɵeo"] =
|
|
20154
|
-
exports["ɵep"] =
|
|
20155
|
-
exports["ɵeq"] =
|
|
20156
|
-
exports["ɵer"] =
|
|
20157
|
-
exports["ɵes"] =
|
|
20158
|
-
exports["ɵet"] =
|
|
20159
|
-
exports["ɵeu"] =
|
|
20160
|
-
exports["ɵev"] =
|
|
20161
|
-
exports["ɵew"] =
|
|
20162
|
-
exports["ɵex"] =
|
|
20163
|
-
exports["ɵey"] =
|
|
20164
|
-
exports["ɵez"] =
|
|
20229
|
+
exports["ɵea"] = AvatarComponent;
|
|
20230
|
+
exports["ɵeb"] = SharedService;
|
|
20231
|
+
exports["ɵec"] = SharedConnectorService;
|
|
20232
|
+
exports["ɵed"] = DeliveryTypeTileModule;
|
|
20233
|
+
exports["ɵee"] = DeliveryTypeTileComponent;
|
|
20234
|
+
exports["ɵef"] = PaymentModule;
|
|
20235
|
+
exports["ɵeg"] = PaymentTileModule;
|
|
20236
|
+
exports["ɵeh"] = PaymentTileComponent;
|
|
20237
|
+
exports["ɵei"] = PaymentQrCodeModule;
|
|
20238
|
+
exports["ɵej"] = PaymentQrCodeComponent;
|
|
20239
|
+
exports["ɵek"] = PaymentComponent;
|
|
20240
|
+
exports["ɵel"] = PaymentService;
|
|
20241
|
+
exports["ɵem"] = RelationTypeModule;
|
|
20242
|
+
exports["ɵen"] = RelationTypeComponent;
|
|
20243
|
+
exports["ɵeo"] = RelationGeneralModule;
|
|
20244
|
+
exports["ɵep"] = RelationSuggestionsListModule;
|
|
20245
|
+
exports["ɵeq"] = RelationSuggestionsListItemModule;
|
|
20246
|
+
exports["ɵer"] = RelationSuggestionsListItemComponent;
|
|
20247
|
+
exports["ɵes"] = RelationSuggestionsListComponent;
|
|
20248
|
+
exports["ɵet"] = RelationGeneralComponent;
|
|
20249
|
+
exports["ɵeu"] = RelationAddressesModule;
|
|
20250
|
+
exports["ɵev"] = RelationAddressesComponent;
|
|
20251
|
+
exports["ɵew"] = RelationContactDetailsModule;
|
|
20252
|
+
exports["ɵex"] = RelationContactDetailsComponent;
|
|
20253
|
+
exports["ɵey"] = RelationPreferencesModule;
|
|
20254
|
+
exports["ɵez"] = RelationPreferencesComponent;
|
|
20165
20255
|
exports["ɵf"] = TransactionConnectorService;
|
|
20166
|
-
exports["ɵfa"] =
|
|
20167
|
-
exports["ɵfb"] =
|
|
20168
|
-
exports["ɵfc"] =
|
|
20169
|
-
exports["ɵfd"] =
|
|
20170
|
-
exports["ɵfe"] =
|
|
20171
|
-
exports["ɵff"] =
|
|
20172
|
-
exports["ɵfg"] =
|
|
20173
|
-
exports["ɵfh"] =
|
|
20174
|
-
exports["ɵfi"] =
|
|
20175
|
-
exports["ɵfj"] =
|
|
20176
|
-
exports["ɵfk"] =
|
|
20177
|
-
exports["ɵfl"] =
|
|
20178
|
-
exports["ɵfm"] =
|
|
20179
|
-
exports["ɵfn"] =
|
|
20180
|
-
exports["ɵfo"] =
|
|
20181
|
-
exports["ɵfp"] =
|
|
20182
|
-
exports["ɵfq"] =
|
|
20183
|
-
exports["ɵfr"] =
|
|
20184
|
-
exports["ɵfs"] =
|
|
20185
|
-
exports["ɵft"] =
|
|
20186
|
-
exports["ɵfu"] =
|
|
20187
|
-
exports["ɵfv"] =
|
|
20188
|
-
exports["ɵfw"] =
|
|
20189
|
-
exports["ɵfx"] =
|
|
20190
|
-
exports["ɵfy"] =
|
|
20191
|
-
exports["ɵfz"] =
|
|
20256
|
+
exports["ɵfa"] = TransactionHeaderBlockModule;
|
|
20257
|
+
exports["ɵfb"] = TransactionHeaderBlockComponent;
|
|
20258
|
+
exports["ɵfc"] = TransactionHeaderDeliveryDateModule;
|
|
20259
|
+
exports["ɵfd"] = TransactionHeaderDeliveryDateComponent;
|
|
20260
|
+
exports["ɵfe"] = TransactionHeaderBaseComponent;
|
|
20261
|
+
exports["ɵff"] = TransactionHeaderDeliveryOptionsModule;
|
|
20262
|
+
exports["ɵfg"] = TransactionHeaderDeliveryOptionsComponent;
|
|
20263
|
+
exports["ɵfh"] = TransactionHeaderRemarksModule;
|
|
20264
|
+
exports["ɵfi"] = TransactionHeaderRemarksComponent;
|
|
20265
|
+
exports["ɵfj"] = TransactionHeaderReferenceModule;
|
|
20266
|
+
exports["ɵfk"] = TransactionHeaderReferenceComponent;
|
|
20267
|
+
exports["ɵfl"] = TransactionHeaderRelationReferenceModule;
|
|
20268
|
+
exports["ɵfm"] = TransactionHeaderRelationReferenceComponent;
|
|
20269
|
+
exports["ɵfn"] = TransactionHeaderDeliveryMethodModule;
|
|
20270
|
+
exports["ɵfo"] = TransactionHeaderDeliveryMethodComponent;
|
|
20271
|
+
exports["ɵfp"] = TransactionHeaderPreferredDeliveryDateModule;
|
|
20272
|
+
exports["ɵfq"] = TransactionHeaderPreferredDeliveryDateComponent;
|
|
20273
|
+
exports["ɵfr"] = DialogTransactionHeaderDeliveryMethodModule;
|
|
20274
|
+
exports["ɵfs"] = DialogTransactionHeaderDeliveryMethodComponent;
|
|
20275
|
+
exports["ɵft"] = DialogTransactionHeaderBaseComponent;
|
|
20276
|
+
exports["ɵfu"] = TransactionBaseComponent;
|
|
20277
|
+
exports["ɵfv"] = TransactionHeaderPartialDeliveryModule;
|
|
20278
|
+
exports["ɵfw"] = TransactionHeaderPartialDeliveryComponent;
|
|
20279
|
+
exports["ɵfx"] = TransactionHeaderDownpaymentPercentageModule;
|
|
20280
|
+
exports["ɵfy"] = TransactionHeaderDownpaymentPercentageComponent;
|
|
20281
|
+
exports["ɵfz"] = TransactionHeaderDownpaymentAmountModule;
|
|
20192
20282
|
exports["ɵg"] = TransactionConnectorAdapterService;
|
|
20193
|
-
exports["ɵga"] =
|
|
20194
|
-
exports["ɵgb"] =
|
|
20195
|
-
exports["ɵgc"] =
|
|
20196
|
-
exports["ɵgd"] =
|
|
20197
|
-
exports["ɵge"] =
|
|
20198
|
-
exports["ɵgf"] =
|
|
20199
|
-
exports["ɵgg"] =
|
|
20200
|
-
exports["ɵgh"] =
|
|
20201
|
-
exports["ɵgi"] =
|
|
20202
|
-
exports["ɵgj"] =
|
|
20203
|
-
exports["ɵgk"] =
|
|
20204
|
-
exports["ɵgl"] =
|
|
20205
|
-
exports["ɵgm"] =
|
|
20206
|
-
exports["ɵgn"] =
|
|
20207
|
-
exports["ɵgo"] =
|
|
20208
|
-
exports["ɵgp"] =
|
|
20209
|
-
exports["ɵgq"] =
|
|
20210
|
-
exports["ɵgr"] =
|
|
20211
|
-
exports["ɵgs"] =
|
|
20212
|
-
exports["ɵgt"] =
|
|
20213
|
-
exports["ɵgu"] =
|
|
20214
|
-
exports["ɵgv"] =
|
|
20215
|
-
exports["ɵgw"] =
|
|
20216
|
-
exports["ɵgx"] =
|
|
20283
|
+
exports["ɵga"] = TransactionHeaderDownpaymentAmountComponent;
|
|
20284
|
+
exports["ɵgb"] = TransactionHeaderDefinitiveModule;
|
|
20285
|
+
exports["ɵgc"] = TransactionHeaderDefinitiveComponent;
|
|
20286
|
+
exports["ɵgd"] = TransactionHeaderBranchModule;
|
|
20287
|
+
exports["ɵge"] = TransactionHeaderBranchComponent;
|
|
20288
|
+
exports["ɵgf"] = TransactionHeaderAdministrativeRelationModule;
|
|
20289
|
+
exports["ɵgg"] = TransactionHeaderAdministrativeRelationComponent;
|
|
20290
|
+
exports["ɵgh"] = TransactionHeaderMarketingModule;
|
|
20291
|
+
exports["ɵgi"] = TransactionHeaderMarketingComponent;
|
|
20292
|
+
exports["ɵgj"] = CheckoutOverviewRelationEditComponent;
|
|
20293
|
+
exports["ɵgk"] = CheckoutOverviewDeliveryEditComponent;
|
|
20294
|
+
exports["ɵgl"] = CheckoutOverviewDeliveryAddressComponent;
|
|
20295
|
+
exports["ɵgm"] = CheckoutOverviewPaymentComponent;
|
|
20296
|
+
exports["ɵgn"] = CheckoutLoginComponent;
|
|
20297
|
+
exports["ɵgo"] = TransactionFilterCategoriesModule;
|
|
20298
|
+
exports["ɵgp"] = TransactionFilterCategoriesComponent;
|
|
20299
|
+
exports["ɵgq"] = TransactionHeaderPaymentModule;
|
|
20300
|
+
exports["ɵgr"] = TransactionHeaderPaymentComponent;
|
|
20301
|
+
exports["ɵgs"] = TransactionLinesGridModule;
|
|
20302
|
+
exports["ɵgt"] = TransactionBaseGridModule;
|
|
20303
|
+
exports["ɵgu"] = TransactionLineSidePanelModule;
|
|
20304
|
+
exports["ɵgv"] = TransactionLineSidePanelDefaultModule;
|
|
20305
|
+
exports["ɵgw"] = TransactionLineQuantityModule;
|
|
20306
|
+
exports["ɵgx"] = TransactionLineQuantityComponent;
|
|
20217
20307
|
exports["ɵgy"] = TransactionLineReferenceModule;
|
|
20218
20308
|
exports["ɵgz"] = TransactionLineReferenceComponent;
|
|
20219
20309
|
exports["ɵh"] = SelectMultipleCacheService;
|