@colijnit/transaction 12.1.162 → 12.1.163

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.
Files changed (44) hide show
  1. package/bundles/colijnit-transaction.umd.js +475 -448
  2. package/bundles/colijnit-transaction.umd.js.map +1 -1
  3. package/colijnit-transaction.d.ts +304 -305
  4. package/colijnit-transaction.metadata.json +1 -1
  5. package/esm2015/colijnit-transaction.js +305 -306
  6. package/esm2015/lib/component/core/base/transaction-base.component.js +3 -3
  7. package/esm2015/lib/component/core/base/transaction-filter-popup-base.component.js +1 -1
  8. package/esm2015/lib/component/shopping-cart/shopping-cart.component.js +7 -5
  9. package/esm2015/lib/component/shopping-cart/shopping-cart.module.js +3 -3
  10. package/esm2015/lib/component/shopping-cart-preview/shopping-cart-preview.component.js +7 -5
  11. package/esm2015/lib/component/transaction-header-fields/transaction-header-price-kind.component.js +32 -20
  12. package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line-base.component.js +6 -6
  13. package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.component.js +2 -2
  14. package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.js +2 -2
  15. package/esm2015/lib/component/transaction-line-fields/transaction-line-vat-button.component.js +2 -2
  16. package/esm2015/lib/component/transaction-line-fields/transaction-line-vat.component.js +2 -2
  17. package/esm2015/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.component.js +23 -2
  18. package/esm2015/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.component.js +3 -5
  19. package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +2 -2
  20. package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +7 -2
  21. package/esm2015/lib/service/dialog.service.js +9 -3
  22. package/esm2015/lib/service/transaction-base.service.js +2 -1
  23. package/esm2015/lib/service/transaction-connector-adapter.service.js +13 -1
  24. package/esm2015/lib/service/transaction-connector.service.js +6 -1
  25. package/esm2015/lib/service/transaction.service.js +8 -1
  26. package/esm2015/lib/transaction-version.js +3 -3
  27. package/fesm2015/colijnit-transaction.js +159 -137
  28. package/fesm2015/colijnit-transaction.js.map +1 -1
  29. package/lib/component/core/base/transaction-base.component.d.ts +4 -3
  30. package/lib/component/core/base/transaction-filter-popup-base.component.d.ts +1 -1
  31. package/lib/component/shopping-cart/shopping-cart.component.d.ts +4 -2
  32. package/lib/component/shopping-cart-preview/shopping-cart-preview.component.d.ts +4 -2
  33. package/lib/component/transaction-header-fields/transaction-header-price-kind.component.d.ts +5 -4
  34. package/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.component.d.ts +3 -0
  35. package/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.component.d.ts +0 -1
  36. package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +2 -0
  37. package/lib/service/dialog.service.d.ts +1 -1
  38. package/lib/service/transaction-base.service.d.ts +1 -0
  39. package/lib/service/transaction-connector-adapter.service.d.ts +1 -0
  40. package/lib/service/transaction-connector.service.d.ts +1 -0
  41. package/lib/service/transaction.service.d.ts +5 -3
  42. package/package.json +3 -3
  43. package/esm2015/lib/service/cart-screen-configuration.service.js +0 -51
  44. package/lib/service/cart-screen-configuration.service.d.ts +0 -13
@@ -32,8 +32,8 @@
32
32
  function Version() {
33
33
  this.name = "@colijnit/transaction";
34
34
  this.description = "Colijn IT transaction package";
35
- this.symVer = "12.1.162";
36
- this.publishDate = "8-11-2023 14:31:25";
35
+ this.symVer = "12.1.163";
36
+ this.publishDate = "9-11-2023 17:43:21";
37
37
  }
38
38
  return Version;
39
39
  }());
@@ -6615,6 +6615,26 @@
6615
6615
  });
6616
6616
  });
6617
6617
  };
6618
+ TransactionConnectorAdapterService.prototype.getPriceKindCollection = function (languageCode) {
6619
+ return __awaiter(this, void 0, void 0, function () {
6620
+ var response;
6621
+ return __generator(this, function (_a) {
6622
+ switch (_a.label) {
6623
+ case 0: return [4 /*yield*/, this.mainConnector.getDomainCollection(languageCode, domainName_enum.DomainName.PriceKind)];
6624
+ case 1:
6625
+ response = _a.sent();
6626
+ if (response && response.validationResult && response.validationResult.success) {
6627
+ return [2 /*return*/, this._boFactory.makeBOArrayFromRawBackendDataArray(coDomainValue_bo.CoDomainValue, response.resultObjects)];
6628
+ }
6629
+ else {
6630
+ this._handleExceptionFromResponse(response);
6631
+ return [2 /*return*/, []];
6632
+ }
6633
+ return [2 /*return*/];
6634
+ }
6635
+ });
6636
+ });
6637
+ };
6618
6638
  TransactionConnectorAdapterService.prototype.processPosTransactionByUuid = function (uuid) {
6619
6639
  return __awaiter(this, void 0, void 0, function () {
6620
6640
  var response;
@@ -7201,6 +7221,13 @@
7201
7221
  });
7202
7222
  });
7203
7223
  };
7224
+ TransactionConnectorService.prototype.getPriceKindCollection = function (languageCode) {
7225
+ return __awaiter(this, void 0, void 0, function () {
7226
+ return __generator(this, function (_a) {
7227
+ return [2 /*return*/, this._adapterService.getPriceKindCollection(languageCode)];
7228
+ });
7229
+ });
7230
+ };
7204
7231
  TransactionConnectorService.prototype.getTransactionArticleWarehouses = function (goodId) {
7205
7232
  return __awaiter(this, void 0, void 0, function () {
7206
7233
  return __generator(this, function (_a) {
@@ -8731,6 +8758,59 @@
8731
8758
  /* Invoice_check rubric */
8732
8759
  })(TransactionCfgName || (TransactionCfgName = {}));
8733
8760
 
8761
+ var TransactionScreenConfigurationService = /** @class */ (function (_super) {
8762
+ __extends(TransactionScreenConfigurationService, _super);
8763
+ function TransactionScreenConfigurationService(_transactionAdapterService) {
8764
+ var _this = _super.call(this) || this;
8765
+ _this._transactionAdapterService = _transactionAdapterService;
8766
+ _this.screenModuleName = "Transactions";
8767
+ _this._screenConfigurationObjectCache = new Map();
8768
+ return _this;
8769
+ }
8770
+ TransactionScreenConfigurationService.prototype.clear = function () {
8771
+ this._screenConfigurationObjectCache.clear();
8772
+ };
8773
+ TransactionScreenConfigurationService.prototype.loadConfigForModule = function (params, insertRights) {
8774
+ return __awaiter(this, void 0, void 0, function () {
8775
+ var transactionKind, config;
8776
+ return __generator(this, function (_a) {
8777
+ switch (_a.label) {
8778
+ case 0:
8779
+ if (!params) return [3 /*break*/, 3];
8780
+ transactionKind = params[0];
8781
+ if (!!this._screenConfigurationLoaded(transactionKind)) return [3 /*break*/, 2];
8782
+ return [4 /*yield*/, this._transactionAdapterService.getObjectConfiguration(this.screenModuleName, transactionKind)];
8783
+ case 1:
8784
+ config = _a.sent();
8785
+ if (config) {
8786
+ this._setScreenConfigurationObjectCache(transactionKind, config);
8787
+ return [2 /*return*/, config];
8788
+ }
8789
+ return [3 /*break*/, 3];
8790
+ case 2: return [2 /*return*/, Promise.resolve(this._screenConfigurationObjectCache.get(transactionKind))];
8791
+ case 3: return [2 /*return*/, Promise.resolve([])];
8792
+ }
8793
+ });
8794
+ });
8795
+ };
8796
+ TransactionScreenConfigurationService.prototype._setScreenConfigurationObjectCache = function (transactionKind, objects) {
8797
+ this._screenConfigurationObjectCache.set(transactionKind, objects);
8798
+ };
8799
+ TransactionScreenConfigurationService.prototype._screenConfigurationLoaded = function (transactionKind) {
8800
+ return this._screenConfigurationObjectCache.has(transactionKind);
8801
+ };
8802
+ return TransactionScreenConfigurationService;
8803
+ }(corecomponents_v12.BaseModuleScreenConfigService));
8804
+ TransactionScreenConfigurationService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function TransactionScreenConfigurationService_Factory() { return new TransactionScreenConfigurationService(i0__namespace.ɵɵinject(TransactionConnectorAdapterService)); }, token: TransactionScreenConfigurationService, providedIn: "root" });
8805
+ TransactionScreenConfigurationService.decorators = [
8806
+ { type: i0.Injectable, args: [{
8807
+ providedIn: "root"
8808
+ },] }
8809
+ ];
8810
+ TransactionScreenConfigurationService.ctorParameters = function () { return [
8811
+ { type: TransactionConnectorAdapterService }
8812
+ ]; };
8813
+
8734
8814
  var TransactionBaseComponent = /** @class */ (function () {
8735
8815
  function TransactionBaseComponent(transactionEventService, iconCacheService, screenConfigService, imageService, dictionaryService, transactionService, changeDetector) {
8736
8816
  this.transactionEventService = transactionEventService;
@@ -9123,7 +9203,7 @@
9123
9203
  TransactionBaseComponent.ctorParameters = function () { return [
9124
9204
  { type: TransactionEventService },
9125
9205
  { type: IconCacheService },
9126
- { type: corecomponents_v12.BaseModuleScreenConfigService },
9206
+ { type: TransactionScreenConfigurationService },
9127
9207
  { type: TransactionImageService },
9128
9208
  { type: DictionaryService },
9129
9209
  { type: TransactionService },
@@ -9394,7 +9474,11 @@
9394
9474
  transactionKind: transactionKind,
9395
9475
  transactionLine: transactionLine
9396
9476
  };
9397
- return this.dynamicComponentService.createComponent(DialogTransactionLineWarehouseCcComponent, data);
9477
+ var provider = {
9478
+ provide: corecomponents_v12.BaseModuleScreenConfigService,
9479
+ useExisting: TransactionScreenConfigurationService
9480
+ };
9481
+ return this.dynamicComponentService.createComponent(DialogTransactionLineWarehouseCcComponent, data, undefined, [provider]);
9398
9482
  };
9399
9483
  DialogService.prototype.showBranch = function (transaction) {
9400
9484
  var data = {
@@ -9663,59 +9747,6 @@
9663
9747
  { type: SelectMultipleParameterizedCacheService }
9664
9748
  ]; };
9665
9749
 
9666
- var TransactionScreenConfigurationService = /** @class */ (function (_super) {
9667
- __extends(TransactionScreenConfigurationService, _super);
9668
- function TransactionScreenConfigurationService(_transactionAdapterService) {
9669
- var _this = _super.call(this) || this;
9670
- _this._transactionAdapterService = _transactionAdapterService;
9671
- _this.screenModuleName = "Transactions";
9672
- _this._screenConfigurationObjectCache = new Map();
9673
- return _this;
9674
- }
9675
- TransactionScreenConfigurationService.prototype.clear = function () {
9676
- this._screenConfigurationObjectCache.clear();
9677
- };
9678
- TransactionScreenConfigurationService.prototype.loadConfigForModule = function (params, insertRights) {
9679
- return __awaiter(this, void 0, void 0, function () {
9680
- var transactionKind, config;
9681
- return __generator(this, function (_a) {
9682
- switch (_a.label) {
9683
- case 0:
9684
- if (!params) return [3 /*break*/, 3];
9685
- transactionKind = params[0];
9686
- if (!!this._screenConfigurationLoaded(transactionKind)) return [3 /*break*/, 2];
9687
- return [4 /*yield*/, this._transactionAdapterService.getObjectConfiguration(this.screenModuleName, transactionKind)];
9688
- case 1:
9689
- config = _a.sent();
9690
- if (config) {
9691
- this._setScreenConfigurationObjectCache(transactionKind, config);
9692
- return [2 /*return*/, config];
9693
- }
9694
- return [3 /*break*/, 3];
9695
- case 2: return [2 /*return*/, Promise.resolve(this._screenConfigurationObjectCache.get(transactionKind))];
9696
- case 3: return [2 /*return*/, Promise.resolve([])];
9697
- }
9698
- });
9699
- });
9700
- };
9701
- TransactionScreenConfigurationService.prototype._setScreenConfigurationObjectCache = function (transactionKind, objects) {
9702
- this._screenConfigurationObjectCache.set(transactionKind, objects);
9703
- };
9704
- TransactionScreenConfigurationService.prototype._screenConfigurationLoaded = function (transactionKind) {
9705
- return this._screenConfigurationObjectCache.has(transactionKind);
9706
- };
9707
- return TransactionScreenConfigurationService;
9708
- }(corecomponents_v12.BaseModuleScreenConfigService));
9709
- TransactionScreenConfigurationService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function TransactionScreenConfigurationService_Factory() { return new TransactionScreenConfigurationService(i0__namespace.ɵɵinject(TransactionConnectorAdapterService)); }, token: TransactionScreenConfigurationService, providedIn: "root" });
9710
- TransactionScreenConfigurationService.decorators = [
9711
- { type: i0.Injectable, args: [{
9712
- providedIn: "root"
9713
- },] }
9714
- ];
9715
- TransactionScreenConfigurationService.ctorParameters = function () { return [
9716
- { type: TransactionConnectorAdapterService }
9717
- ]; };
9718
-
9719
9750
  var TransactionBaseService = /** @class */ (function (_super) {
9720
9751
  __extends(TransactionBaseService, _super);
9721
9752
  function TransactionBaseService(optionsService, dialogService, connector, sharedService, articleConnector, dictionaryService, transactionEventService, relationService, screenConfigService) {
@@ -9768,6 +9799,7 @@
9768
9799
  _this.internalParameterAllowsDropShipment = false;
9769
9800
  _this.internalParameterReceiveGoodsWithDataTerminal = false;
9770
9801
  _this.internalParameterPakBinnen = false;
9802
+ _this.internalParameterMLocat = false;
9771
9803
  _this.articleAmount = 0;
9772
9804
  _this.transactionLineAdded = false;
9773
9805
  // not being used at the moment, so it should be false
@@ -10776,6 +10808,10 @@
10776
10808
  });
10777
10809
  });
10778
10810
  };
10811
+ TransactionService.prototype.prepareMLocatInternalParam = function () {
10812
+ var _this = this;
10813
+ this.getInternalParameter(internalParam_enum.InternalParam.MLocat).then(function (value) { return _this.internalParameterMLocat = value; });
10814
+ };
10779
10815
  TransactionService.prototype.preparePakBinnenInternalParam = function () {
10780
10816
  var _this = this;
10781
10817
  this.getInternalParameter(internalParam_enum.InternalParam.ReceiveGoodsWithDataTerminal).then(function (value) { return _this.internalParameterPakBinnen = value; });
@@ -11812,6 +11848,9 @@
11812
11848
  TransactionService.prototype.getYesNo = function (languageCode) {
11813
11849
  return this.connector.getYesNoCollection(languageCode);
11814
11850
  };
11851
+ TransactionService.prototype.getPriceKind = function (languageCode) {
11852
+ return this.connector.getPriceKindCollection(languageCode);
11853
+ };
11815
11854
  TransactionService.prototype.getInOutCollection = function (languageCode) {
11816
11855
  return this.connector.getInOutCollection(languageCode);
11817
11856
  };
@@ -13565,8 +13604,11 @@
13565
13604
  return __awaiter(this, void 0, void 0, function () {
13566
13605
  return __generator(this, function (_a) {
13567
13606
  switch (_a.label) {
13568
- case 0: return [4 /*yield*/, this.preparePakBinnenInternalParam()];
13607
+ case 0: return [4 /*yield*/, this.prepareMLocatInternalParam()];
13569
13608
  case 1:
13609
+ _a.sent();
13610
+ return [4 /*yield*/, this.preparePakBinnenInternalParam()];
13611
+ case 2:
13570
13612
  _a.sent();
13571
13613
  return [2 /*return*/];
13572
13614
  }
@@ -17460,7 +17502,7 @@
17460
17502
  .map(function (line) {
17461
17503
  var details = new purchaseOrderConfirmationLineDetails.PurchaseOrderConfirmationLineDetails();
17462
17504
  details.lineNumber = line.lineNr;
17463
- details.amountConfirmed = +line.purchasePortalLine.amountToBeConfirmed;
17505
+ details.amountConfirmed = +line.purchasePortalLine.amountConfirmedTarget;
17464
17506
  details.confirmedDate = line.purchasePortalLine.deliveryDateConfirmed ? new Date(line.purchasePortalLine.deliveryDateConfirmed) : _this.purchaseOrderConfirmation.confirmationDate;
17465
17507
  details.confirmedPrice = +line.purchasePortalLine.confirmedPrice;
17466
17508
  return details;
@@ -17632,6 +17674,7 @@
17632
17674
  _this.localCheckboxState = false;
17633
17675
  _this.commitDate = new Date();
17634
17676
  _this.globalWarehouseLocation = '-';
17677
+ _this.internalParamMLocat = false;
17635
17678
  _this._subs = [];
17636
17679
  return _this;
17637
17680
  }
@@ -17689,6 +17732,10 @@
17689
17732
  TransactionQuickAccessReceivedGoodsComponent.prototype.emailDocument = function (emailInvoiceRequest) {
17690
17733
  return;
17691
17734
  };
17735
+ TransactionQuickAccessReceivedGoodsComponent.prototype.transactionInfoSet = function () {
17736
+ _super.prototype.transactionInfoSet.call(this);
17737
+ this.internalParamMLocat = this.transactionService.internalParameterMLocat;
17738
+ };
17692
17739
  TransactionQuickAccessReceivedGoodsComponent.prototype.handleGlobalLocationChange = function (location) {
17693
17740
  var _this = this;
17694
17741
  this.globalWarehouseLocation = location;
@@ -17704,7 +17751,7 @@
17704
17751
  TransactionQuickAccessReceivedGoodsComponent.decorators = [
17705
17752
  { type: i0.Component, args: [{
17706
17753
  selector: "co-transaction-quick-access-received-goods",
17707
- template: "\n <div class=\"quick-access-wrapper\" *ngIf=\"!hideQuickAccessContent\">\n <co-input-checkbox\n class=\"checkbox-wrapper\"\n [(model)]=\"localCheckboxState\"\n (modelChange)=\"handleSelectAllLines($event)\"\n ></co-input-checkbox>\n <co-input-date\n [placeholder]=\"'RECEIVED_DATE' | localize\"\n [(model)]=\"commitDate\"\n ></co-input-date>\n <co-input-text\n [placeholder]=\"'PACKING_SLIP' | localize\"\n [(model)]=\"packingSlipNr\"\n ></co-input-text>\n <co-transaction-labeled-warehouse-location-button\n [locationNr]=\"globalWarehouseLocation\"\n (locationNrChange)=\"handleGlobalLocationChange($event)\"\n ></co-transaction-labeled-warehouse-location-button>\n <co-quick-send-button\n [showSendMethodIcon]=\"false\"\n [icon]=\"icons.CheckDuotone\"\n [showLoader]=\"showLoader\"\n [title]=\"'PROCESS'\"\n (sendIconClicked)=\"handleCommitEvent()\"\n (openSendMethodDialog)=\"showSendMethodDialog = true\"\n ></co-quick-send-button>\n </div>\n <co-send-method-dialog *ngIf=\"showSendMethodDialog\"\n [printerList]=\"printerList\"\n [headerTitle]=\"'Printer en lay-out selectie'\"\n [defaultSendMethod]=\"defaultSendMethod\"\n [visibleMethods]=\"[sendMethodType.Print]\"\n [emailAddresses]=\"emailAddresses\"\n [emailLayouts]=\"emailLayouts\"\n [printLayouts]=\"printLayouts\"\n [isDocSignEnabled]=\"true\"\n [(reportingDocumentEmailRequest)]=\"reportDocumentEmailRequest\"\n [(reportingDocumentPrintRequest)]=\"reportDocumentPrintRequest\"\n [(reportingDocumentPdfRequest)]=\"reportDocumentPdfRequest\"\n (closeClick)=\"showSendMethodDialog = false\"\n (okClick)=\"handleSendMethodOkClick($event)\"\n ></co-send-method-dialog>\n ",
17754
+ template: "\n <div class=\"quick-access-wrapper\" *ngIf=\"!hideQuickAccessContent\">\n <co-input-checkbox\n class=\"checkbox-wrapper\"\n [(model)]=\"localCheckboxState\"\n (modelChange)=\"handleSelectAllLines($event)\"\n ></co-input-checkbox>\n <co-input-date\n [placeholder]=\"'RECEIVED_DATE' | localize\"\n [(model)]=\"commitDate\"\n ></co-input-date>\n <co-input-text\n [placeholder]=\"'PACKING_SLIP' | localize\"\n [(model)]=\"packingSlipNr\"\n ></co-input-text>\n <co-transaction-labeled-warehouse-location-button *ngIf=\"internalParamMLocat\"\n [locationNr]=\"globalWarehouseLocation\"\n (locationNrChange)=\"handleGlobalLocationChange($event)\"\n ></co-transaction-labeled-warehouse-location-button>\n <co-quick-send-button\n [showSendMethodIcon]=\"false\"\n [icon]=\"icons.CheckDuotone\"\n [showLoader]=\"showLoader\"\n [title]=\"'PROCESS'\"\n (sendIconClicked)=\"handleCommitEvent()\"\n (openSendMethodDialog)=\"showSendMethodDialog = true\"\n ></co-quick-send-button>\n </div>\n <co-send-method-dialog *ngIf=\"showSendMethodDialog\"\n [printerList]=\"printerList\"\n [headerTitle]=\"'Printer en lay-out selectie'\"\n [defaultSendMethod]=\"defaultSendMethod\"\n [visibleMethods]=\"[sendMethodType.Print]\"\n [emailAddresses]=\"emailAddresses\"\n [emailLayouts]=\"emailLayouts\"\n [printLayouts]=\"printLayouts\"\n [isDocSignEnabled]=\"true\"\n [(reportingDocumentEmailRequest)]=\"reportDocumentEmailRequest\"\n [(reportingDocumentPrintRequest)]=\"reportDocumentPrintRequest\"\n [(reportingDocumentPdfRequest)]=\"reportDocumentPdfRequest\"\n (closeClick)=\"showSendMethodDialog = false\"\n (okClick)=\"handleSendMethodOkClick($event)\"\n ></co-send-method-dialog>\n ",
17708
17755
  encapsulation: i0.ViewEncapsulation.None
17709
17756
  },] }
17710
17757
  ];
@@ -18704,7 +18751,7 @@
18704
18751
  TransactionReceiveGoodsLineComponent.decorators = [
18705
18752
  { type: i0.Component, args: [{
18706
18753
  selector: "co-transaction-receive-goods-line",
18707
- template: "\n <co-transaction-base-line\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [preview]=\"preview\"\n [checkbox]=\"showCheckboxForLine\"\n [checkboxValue]=\"transactionLine.selected\"\n [actionButtons]=\"false\"\n (checkboxValueChanged)=\"transactionLine.selected = $event\"\n (click)=\"handleLineClicked($event)\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(transactionLine, $event)\">\n <div class=\"line-content-wrapper\" data-action=\"openSidePanel\">\n <co-transaction-line-statusbar\n [screenConfigurationObject]=\"cfgNames.StatusBar\"\n [configNames]=\"statusBarConfigNames\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [activeCategory]=\"transactionTypeCategory.PurchaseOrderReceivedGoods\"></co-transaction-line-statusbar>\n <co-transaction-line-warehouse-button\n [screenConfigurationObject]=\"cfgNames.LineWarehouse\"\n [transactionLine]=\"transactionLine\"\n [transactionInfo]=\"transactionInfo\"></co-transaction-line-warehouse-button>\n <co-transaction-line-warehouse-location-button\n [screenConfigurationObject]=\"cfgNames.LineWarehouseLocation\"\n [readonly]=\"warehouseLocationButtonDisabled\"\n [transactionLine]=\"transactionLine\"></co-transaction-line-warehouse-location-button>\n <co-input-text\n [screenConfigurationObject]=\"cfgNames.LineAmount\"\n [model]=\"transactionLine.amount\"\n [leftIconData]=\"iconCacheService.getIcon(icons.CartShoppingRegular)\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-input-text\n [model]=\"transactionLine.articleLineStatus.quantityReceived\"\n [leftIconData]=\"iconCacheService.getIcon(icons.RegularCartFlatbedBoxesCircleCheck)\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <div class=\"transaction-line-totals-amount\">\n <co-input-number-picker class=\"amount-number-picker\"\n [screenConfigurationObject]=\"cfgNames.LineQuantityToReceive\"\n [(model)]=\"lineQuantityToReceive\"\n [min]=\"1\"\n [max]=\"transactionLine.amount - lineQuantityReceived\"\n [leftIconData]=\"iconCacheService.getIcon(icons.CartFlatbedBoxesRegular)\"\n [readonly]=\"readonly || lineQuantityReceived === transactionLine.amount\"\n (modelChange)=\"changeLineAmount($event)\">\n </co-input-number-picker>\n </div>\n <co-transaction-print-package-sticker\n [screenConfigurationObject]=\"cfgNames.StickerAmount\"\n [transactionLine]=\"transactionLine\"\n [transactionInfo]=\"transactionInfo\"\n ></co-transaction-print-package-sticker>\n </div>\n </co-transaction-base-line>\n ",
18754
+ template: "\n <co-transaction-base-line\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [preview]=\"preview\"\n [checkbox]=\"showCheckboxForLine\"\n [checkboxValue]=\"transactionLine.selected\"\n [actionButtons]=\"false\"\n (checkboxValueChanged)=\"transactionLine.selected = $event\"\n (click)=\"handleLineClicked($event)\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(transactionLine, $event)\">\n <div class=\"line-content-wrapper\" data-action=\"openSidePanel\">\n <co-transaction-line-statusbar\n [screenConfigurationObject]=\"cfgNames.StatusBar\"\n [configNames]=\"statusBarConfigNames\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [activeCategory]=\"transactionTypeCategory.PurchaseOrderReceivedGoods\"></co-transaction-line-statusbar>\n <co-transaction-line-warehouse-button\n [screenConfigurationObject]=\"cfgNames.LineWarehouse\"\n [transactionLine]=\"transactionLine\"\n [transactionInfo]=\"transactionInfo\"></co-transaction-line-warehouse-button>\n <co-transaction-line-warehouse-location-button *ngIf=\"transactionLine.isLocationRequired\"\n [screenConfigurationObject]=\"cfgNames.LineWarehouseLocation\"\n [readonly]=\"warehouseLocationButtonDisabled\"\n [transactionLine]=\"transactionLine\"></co-transaction-line-warehouse-location-button>\n <co-input-text\n [screenConfigurationObject]=\"cfgNames.LineAmount\"\n [model]=\"transactionLine.amount\"\n [leftIconData]=\"iconCacheService.getIcon(icons.CartShoppingRegular)\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-input-text\n [model]=\"transactionLine.articleLineStatus.quantityReceived\"\n [leftIconData]=\"iconCacheService.getIcon(icons.RegularCartFlatbedBoxesCircleCheck)\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <div class=\"transaction-line-totals-amount\">\n <co-input-number-picker class=\"amount-number-picker\"\n [screenConfigurationObject]=\"cfgNames.LineQuantityToReceive\"\n [(model)]=\"lineQuantityToReceive\"\n [min]=\"1\"\n [max]=\"transactionLine.amount - lineQuantityReceived\"\n [leftIconData]=\"iconCacheService.getIcon(icons.CartFlatbedBoxesRegular)\"\n [readonly]=\"readonly || lineQuantityReceived === transactionLine.amount\"\n (modelChange)=\"changeLineAmount($event)\">\n </co-input-number-picker>\n </div>\n <co-transaction-print-package-sticker\n [screenConfigurationObject]=\"cfgNames.StickerAmount\"\n [transactionLine]=\"transactionLine\"\n [transactionInfo]=\"transactionInfo\"\n ></co-transaction-print-package-sticker>\n </div>\n </co-transaction-base-line>\n ",
18708
18755
  encapsulation: i0.ViewEncapsulation.None,
18709
18756
  changeDetection: i0.ChangeDetectionStrategy.OnPush
18710
18757
  },] }
@@ -19278,9 +19325,9 @@
19278
19325
  }
19279
19326
  TransactionPurchaseOrderLineBaseComponent.prototype.ngOnInit = function () {
19280
19327
  var _this = this;
19281
- if (this.transactionLine.purchasePortalLine.amountToBeConfirmed === null || this.transactionLine.purchasePortalLine.amountToBeConfirmed === undefined) {
19282
- this.transactionLine.purchasePortalLine.amountToBeConfirmed = this.transactionLine.amount.toString();
19283
- }
19328
+ // if (this.transactionLine.purchasePortalLine.amountToBeConfirmed === null || this.transactionLine.purchasePortalLine.amountToBeConfirmed === undefined) {
19329
+ // this.transactionLine.purchasePortalLine.amountToBeConfirmed = this.transactionLine.amount.toString();
19330
+ // }
19284
19331
  this._subs.push(this.transactionEventService.selectAllSalesOrderLinesForPurchase.subscribe(function (value) {
19285
19332
  _this.selected = value && _this.showCheckboxForLine;
19286
19333
  _this.detectChanges();
@@ -19321,7 +19368,7 @@
19321
19368
  purchasePortalLinesResponse = _a.sent();
19322
19369
  if (purchasePortalLinesResponse.length > 0) {
19323
19370
  this.transactionLine.purchasePortalLine = purchasePortalLinesResponse[0];
19324
- this.transactionLine.quantityPurchaseToConfirm = +this.transactionLine.purchasePortalLine.amountToBeConfirmed;
19371
+ this.transactionLine.quantityPurchaseToConfirm = +this.transactionLine.purchasePortalLine.amountConfirmedTarget;
19325
19372
  this.transactionEventService.transactionLineChanged.next(this.transactionLine);
19326
19373
  this.detectChanges();
19327
19374
  }
@@ -19333,7 +19380,7 @@
19333
19380
  TransactionPurchaseOrderLineBaseComponent.prototype._handleConfirmationOverwrite = function () {
19334
19381
  if (this.transactionLine.purchasePortalLine) {
19335
19382
  this.transactionLine.purchasePortalLine.amountConfirmed = '0';
19336
- this.transactionLine.quantityPurchaseToConfirm = +this.transactionLine.purchasePortalLine.amountToBeConfirmed;
19383
+ this.transactionLine.quantityPurchaseToConfirm = +this.transactionLine.purchasePortalLine.amountConfirmedTarget;
19337
19384
  this.showCheckboxForLine = true;
19338
19385
  this.detectChanges();
19339
19386
  }
@@ -19365,7 +19412,7 @@
19365
19412
  TransactionPurchaseOrderLineComponent.decorators = [
19366
19413
  { type: i0.Component, args: [{
19367
19414
  selector: "co-transaction-purchase-order-line",
19368
- template: "\n <co-transaction-base-line\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [preview]=\"preview\"\n [checkbox]=\"showCheckboxForLine\"\n [checkboxValue]=\"selected\"\n (click)=\"handleOpenSidePanel($event)\"\n (checkboxValueChanged)=\"selected = $event\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(transactionLine, $event)\">\n <div class=\"transaction-line-content-wrapper\">\n <co-transaction-line-statusbar data-action=\"openSidePanel\"\n [screenConfigurationObject]=\"cfgNames.StatusBar\"\n [configNames]=\"statusBarConfigNames\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [activeCategory]=\"transactionTypeCategory.PurchaseOrderOrderConfirmation\"\n ></co-transaction-line-statusbar>\n <div class=\"transaction-line-content\" data-action=\"openSidePanel\">\n <co-input-text\n [screenConfigurationObject]=\"cfgNames.LineAmount\"\n [model]=\"transactionLine.amount\"\n [leftIconData]=\"iconCacheService.getIcon(icons.CartShoppingRegular)\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-input-text class=\"transaction-input-right-align\"\n [screenConfigurationObject]=\"cfgNames.LineGrossOrderPrice\"\n [model]=\"transactionLine.purchasePortalLine.grossOrderPrice | coCurrency\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-transaction-line-discount-button\n [screenConfigurationObject]=\"cfgNames.LineDiscount\"\n [transactionLine]=\"transactionLine\"\n [transactionInfo]=\"transactionInfo\"\n ></co-transaction-line-discount-button>\n <co-input-text class=\"transaction-input-right-align\"\n [screenConfigurationObject]=\"cfgNames.LineNetOrderPrice\"\n [model]=\"transactionLine.purchasePortalLine.netOrderPrice | coCurrency\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-transaction-line-delivery-date-button\n [screenConfigurationObject]=\"cfgNames.DeliveryDate\"\n [transactionLine]=\"transactionLine\"\n [transactionInfo]=\"transactionInfo\"></co-transaction-line-delivery-date-button>\n </div>\n <div class=\"transaction-line-content\" data-action=\"openSidePanel\">\n <co-input-text\n [screenConfigurationObject]=\"cfgNames.LineArticleNrSupplier\"\n [model]=\"transactionLine.purchasePortalLine.articleNoSupplier ? transactionLine.purchasePortalLine.articleNoSupplier : '-'\"\n [leftIconData]=\"iconCacheService.getIcon(icons.RegularIndustryTag)\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-transaction-line-confirmed-price class=\"transaction-line-confirmed-price price\"\n [screenConfigurationObject]=\"cfgNames.LineConfirmedPrice\"\n [(price)]=\"transactionLine.purchasePortalLine.confirmedPrice\"\n [showLabel]=\"false\"\n [defaultEditMode]=\"false\"\n ></co-transaction-line-confirmed-price>\n <co-input-number-picker class=\"amount-number-picker\"\n [screenConfigurationObject]=\"cfgNames.LineConfirmedAmount\"\n [required]=\"true\"\n [(model)]=\"transactionLine.purchasePortalLine.amountToBeConfirmed\"\n [min]=\"1\"\n [max]=\"+transactionLine.purchasePortalLine.amountOrdered\"\n [leftIconData]=\"iconCacheService.getIcon(icons.FileCircleInfoRegular)\"\n ></co-input-number-picker>\n <co-transaction-line-supplier-delivery-date-button\n [screenConfigurationObject]=\"cfgNames.LineConfirmedDate\"\n [transactionLine]=\"transactionLine\"\n ></co-transaction-line-supplier-delivery-date-button>\n </div>\n </div>\n </co-transaction-base-line>\n ",
19415
+ template: "\n <co-transaction-base-line\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [preview]=\"preview\"\n [checkbox]=\"showCheckboxForLine\"\n [checkboxValue]=\"selected\"\n (click)=\"handleOpenSidePanel($event)\"\n (checkboxValueChanged)=\"selected = $event\"\n observeVisibility #observer=visibilityObserve (visibilityChange)=\"handleVisibilityChange(transactionLine, $event)\">\n <div class=\"transaction-line-content-wrapper\">\n <co-transaction-line-statusbar data-action=\"openSidePanel\"\n [screenConfigurationObject]=\"cfgNames.StatusBar\"\n [configNames]=\"statusBarConfigNames\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [activeCategory]=\"transactionTypeCategory.PurchaseOrderOrderConfirmation\"\n ></co-transaction-line-statusbar>\n <div class=\"transaction-line-content\" data-action=\"openSidePanel\">\n <co-input-text\n [screenConfigurationObject]=\"cfgNames.LineAmount\"\n [model]=\"transactionLine.amount\"\n [leftIconData]=\"iconCacheService.getIcon(icons.CartShoppingRegular)\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-input-text class=\"transaction-input-right-align\"\n [screenConfigurationObject]=\"cfgNames.LineGrossOrderPrice\"\n [model]=\"transactionLine.purchasePortalLine.grossOrderPrice | coCurrency\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-transaction-line-discount-button\n [screenConfigurationObject]=\"cfgNames.LineDiscount\"\n [transactionLine]=\"transactionLine\"\n [transactionInfo]=\"transactionInfo\"\n ></co-transaction-line-discount-button>\n <co-input-text class=\"transaction-input-right-align\"\n [screenConfigurationObject]=\"cfgNames.LineNetOrderPrice\"\n [model]=\"transactionLine.purchasePortalLine.netOrderPrice | coCurrency\"\n [readonly]=\"true\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-transaction-line-delivery-date-button\n [screenConfigurationObject]=\"cfgNames.DeliveryDate\"\n [transactionLine]=\"transactionLine\"\n [transactionInfo]=\"transactionInfo\"></co-transaction-line-delivery-date-button>\n </div>\n <div class=\"transaction-line-content\" data-action=\"openSidePanel\">\n <co-input-text\n [screenConfigurationObject]=\"cfgNames.LineArticleNrSupplier\"\n [model]=\"transactionLine.purchasePortalLine.articleNoSupplier ? transactionLine.purchasePortalLine.articleNoSupplier : '-'\"\n [leftIconData]=\"iconCacheService.getIcon(icons.RegularIndustryTag)\"\n [customHeight]=\"true\"\n ></co-input-text>\n <co-transaction-line-confirmed-price class=\"transaction-line-confirmed-price price\"\n [screenConfigurationObject]=\"cfgNames.LineConfirmedPrice\"\n [(price)]=\"transactionLine.purchasePortalLine.confirmedPrice\"\n [showLabel]=\"false\"\n [defaultEditMode]=\"false\"\n ></co-transaction-line-confirmed-price>\n <co-input-number-picker class=\"amount-number-picker\"\n [screenConfigurationObject]=\"cfgNames.LineConfirmedAmount\"\n [required]=\"true\"\n [(model)]=\"+transactionLine.purchasePortalLine.amountConfirmedTarget\"\n [min]=\"1\"\n [max]=\"+transactionLine.purchasePortalLine.amountOrdered\"\n [leftIconData]=\"iconCacheService.getIcon(icons.FileCircleInfoRegular)\"\n ></co-input-number-picker>\n <co-transaction-line-supplier-delivery-date-button\n [screenConfigurationObject]=\"cfgNames.LineConfirmedDate\"\n [transactionLine]=\"transactionLine\"\n ></co-transaction-line-supplier-delivery-date-button>\n </div>\n </div>\n </co-transaction-base-line>\n ",
19369
19416
  encapsulation: i0.ViewEncapsulation.None,
19370
19417
  changeDetection: i0.ChangeDetectionStrategy.OnPush
19371
19418
  },] }
@@ -22808,7 +22855,7 @@
22808
22855
  var _this = this;
22809
22856
  _super.prototype.transactionInfoSet.call(this);
22810
22857
  if (this.transactionInfo && this.transactionInfo.id) {
22811
- this.transactionService.getTransVatCodes(this.transactionInfo.transactionKind === (transactionKind_enum.TransactionKind.InternalDelivery || transactionKind_enum.TransactionKind.PurchaseOrder) ? 'I' : 'V', this.transactionInfo.transactionDate)
22858
+ this.transactionService.getTransVatCodes((this.transactionInfo.transactionKind === transactionKind_enum.TransactionKind.InternalDelivery || this.transactionInfo.transactionKind === transactionKind_enum.TransactionKind.PurchaseOrder) ? 'I' : 'V', this.transactionInfo.transactionDate)
22812
22859
  .then(function (vatList) {
22813
22860
  _this.collection = vatList;
22814
22861
  _this.detectChanges();
@@ -23812,7 +23859,7 @@
23812
23859
  TransactionLineVatButtonComponent.prototype._getVatDescription = function () {
23813
23860
  var _this = this;
23814
23861
  if (this.transactionInfo && this.transactionInfo.id && this.transactionLine && this.transactionLine.isArticle && !this.transactionLine.vatDescription && this.visible) {
23815
- this.transactionService.getTransVatCodes(this.transactionInfo.transactionKind === (transactionKind_enum.TransactionKind.InternalDelivery || transactionKind_enum.TransactionKind.PurchaseOrder) ? 'I' : 'V', this.transactionInfo.transactionDate)
23862
+ this.transactionService.getTransVatCodes((this.transactionInfo.transactionKind === transactionKind_enum.TransactionKind.InternalDelivery || this.transactionInfo.transactionKind === transactionKind_enum.TransactionKind.PurchaseOrder) ? 'I' : 'V', this.transactionInfo.transactionDate)
23816
23863
  .then(function (vatList) {
23817
23864
  var vat = vatList.find(function (v) { return v.vatId === _this.transactionLine.vatId; });
23818
23865
  _this.transactionLine.vatDescription = vat ? (vat.percentage + "% " + _this.dictionaryService.get('VAT2')) : '';
@@ -25980,63 +26027,11 @@
25980
26027
  },] }
25981
26028
  ];
25982
26029
 
25983
- var CartScreenConfigurationService = /** @class */ (function (_super) {
25984
- __extends(CartScreenConfigurationService, _super);
25985
- function CartScreenConfigurationService(_transactionAdapterService) {
25986
- var _this = _super.call(this) || this;
25987
- _this._transactionAdapterService = _transactionAdapterService;
25988
- _this.screenModuleName = "Transactions";
25989
- _this._screenConfigurationObjectCache = new Map();
25990
- return _this;
25991
- }
25992
- CartScreenConfigurationService.prototype.clear = function () {
25993
- this._screenConfigurationObjectCache.clear();
25994
- };
25995
- CartScreenConfigurationService.prototype.loadConfigForModule = function (params, insertRights) {
25996
- return __awaiter(this, void 0, void 0, function () {
25997
- var transactionKind, config;
25998
- return __generator(this, function (_a) {
25999
- switch (_a.label) {
26000
- case 0:
26001
- if (!params) return [3 /*break*/, 3];
26002
- transactionKind = params[0];
26003
- if (!!this._screenConfigurationLoaded(transactionKind)) return [3 /*break*/, 2];
26004
- return [4 /*yield*/, this._transactionAdapterService.getObjectConfiguration(this.screenModuleName, transactionKind)];
26005
- case 1:
26006
- config = _a.sent();
26007
- if (config) {
26008
- this._setScreenConfigurationObjectCache(transactionKind, config);
26009
- return [2 /*return*/, config];
26010
- }
26011
- return [3 /*break*/, 3];
26012
- case 2: return [2 /*return*/, Promise.resolve(this._screenConfigurationObjectCache.get(transactionKind))];
26013
- case 3: return [2 /*return*/, Promise.resolve([])];
26014
- }
26015
- });
26016
- });
26017
- };
26018
- CartScreenConfigurationService.prototype._setScreenConfigurationObjectCache = function (transactionKind, objects) {
26019
- this._screenConfigurationObjectCache.set(transactionKind, objects);
26020
- };
26021
- CartScreenConfigurationService.prototype._screenConfigurationLoaded = function (transactionKind) {
26022
- return this._screenConfigurationObjectCache.has(transactionKind);
26023
- };
26024
- return CartScreenConfigurationService;
26025
- }(corecomponents_v12.BaseModuleScreenConfigService));
26026
- CartScreenConfigurationService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function CartScreenConfigurationService_Factory() { return new CartScreenConfigurationService(i0__namespace.ɵɵinject(TransactionConnectorAdapterService)); }, token: CartScreenConfigurationService, providedIn: "root" });
26027
- CartScreenConfigurationService.decorators = [
26028
- { type: i0.Injectable, args: [{
26029
- providedIn: "root"
26030
- },] }
26031
- ];
26032
- CartScreenConfigurationService.ctorParameters = function () { return [
26033
- { type: TransactionConnectorAdapterService }
26034
- ]; };
26035
-
26036
26030
  var ShoppingCartPreviewComponent = /** @class */ (function () {
26037
26031
  function ShoppingCartPreviewComponent(service, _screenConfigurationService) {
26038
26032
  this.service = service;
26039
26033
  this._screenConfigurationService = _screenConfigurationService;
26034
+ this.transactionKind = transactionKind_enum.TransactionKind;
26040
26035
  this.icons = Icon;
26041
26036
  this.showCheckoutButton = true;
26042
26037
  this.withoutBorder = false;
@@ -26050,7 +26045,7 @@
26050
26045
  ShoppingCartPreviewComponent.prototype.ngOnInit = function () {
26051
26046
  var _this = this;
26052
26047
  // being set from shopping cart, so load config here
26053
- this._screenConfigurationService.loadConfig(["W"]).then(function (configObjects) {
26048
+ this._screenConfigurationService.loadConfig([this.transactionKind.SalesOrder]).then(function (configObjects) {
26054
26049
  _this.screenConfigLoaded = true;
26055
26050
  });
26056
26051
  };
@@ -26062,14 +26057,14 @@
26062
26057
  template: "\n <ng-container *ngIf=\"screenConfigLoaded\">\n <div class=\"cart-header\">\n <span class=\"cart-header-label\" [textContent]=\"'CART' | localize\"></span>\n </div>\n <div class=\"cart-lines narrow-scrollbar\">\n <co-transaction-lines\n [transaction]=\"service.currentTransaction\"\n [preview]=\"true\"\n ></co-transaction-lines>\n </div>\n <div class=\"preview-totals-wrapper\">\n <co-transaction-totals\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionTotal]=\"service.currentTransaction.transactionTotal\"\n ></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 </ng-container>\n ",
26063
26058
  providers: [
26064
26059
  { provide: corecomponents_v12.BaseModuleService, useExisting: TransactionService },
26065
- { provide: corecomponents_v12.BaseModuleScreenConfigService, useExisting: CartScreenConfigurationService }
26060
+ { provide: corecomponents_v12.BaseModuleScreenConfigService, useExisting: TransactionScreenConfigurationService }
26066
26061
  ],
26067
26062
  encapsulation: i0.ViewEncapsulation.None
26068
26063
  },] }
26069
26064
  ];
26070
26065
  ShoppingCartPreviewComponent.ctorParameters = function () { return [
26071
26066
  { type: TransactionService },
26072
- { type: CartScreenConfigurationService }
26067
+ { type: TransactionScreenConfigurationService }
26073
26068
  ]; };
26074
26069
  ShoppingCartPreviewComponent.propDecorators = {
26075
26070
  showCheckoutButton: [{ type: i0.Input }],
@@ -29778,27 +29773,30 @@
29778
29773
  __extends(TransactionHeaderPriceKindComponent, _super);
29779
29774
  function TransactionHeaderPriceKindComponent() {
29780
29775
  var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
29781
- _this.fields = { text: "displayName", value: "relationId" };
29776
+ _this.fields = { text: 'description', value: 'code' };
29782
29777
  return _this;
29783
29778
  }
29784
29779
  TransactionHeaderPriceKindComponent.prototype.ngOnInit = function () {
29785
29780
  var _this = this;
29786
- this.transactionService.getSalesPersons().then(function (salesPersons) {
29787
- _this.collection = salesPersons;
29781
+ this.transactionService.getPriceKind('NL').then(function (values) {
29782
+ _this.collection = values;
29783
+ _this._setModel();
29788
29784
  });
29789
29785
  };
29790
29786
  TransactionHeaderPriceKindComponent.prototype.commitTransactionPriceKind = function (priceKind) {
29791
29787
  return __awaiter(this, void 0, void 0, function () {
29792
- var success;
29788
+ var oldCode, success;
29793
29789
  return __generator(this, function (_a) {
29794
29790
  switch (_a.label) {
29795
29791
  case 0:
29796
- if (!(this.transactionInfo.priceKind !== priceKind)) return [3 /*break*/, 2];
29797
- return [4 /*yield*/, this.transactionService.updateHeaderTransactionPriceKind(this.transactionInfo.uuid, priceKind, this.lockAndSave)];
29792
+ oldCode = this.transactionInfo.priceKind;
29793
+ if (!(this.transactionInfo.priceKind !== priceKind.code)) return [3 /*break*/, 2];
29794
+ return [4 /*yield*/, this.transactionService.updateHeaderTransactionPriceKind(this.transactionInfo.uuid, priceKind.code, this.lockAndSave)];
29798
29795
  case 1:
29799
29796
  success = _a.sent();
29800
29797
  if (!success) {
29801
- // this.transactionInfo.priceKind = priceKind;
29798
+ // @ts-ignore
29799
+ this.transactionInfo.priceKind = oldCode;
29802
29800
  return [2 /*return*/, success];
29803
29801
  }
29804
29802
  _a.label = 2;
@@ -29811,15 +29809,25 @@
29811
29809
  _super.prototype.transactionInfoSet.call(this);
29812
29810
  this.readonly = this.readonly || this.transactionService.hasTransactionLines;
29813
29811
  if (this.readonly) {
29814
- this.addHeaderTooltipMessage(this.dictionaryService.get("ORDER_LINES_EXIST"));
29812
+ this.addHeaderTooltipMessage(this.dictionaryService.get('ORDER_LINES_EXIST'));
29813
+ }
29814
+ this._setModel();
29815
+ };
29816
+ TransactionHeaderPriceKindComponent.prototype._setModel = function () {
29817
+ var _this = this;
29818
+ if (this.priceKindModel) {
29819
+ return;
29820
+ }
29821
+ if (this.collection && this.collection.length > 0 && this.transactionInfo.priceKind) {
29822
+ this.priceKindModel = this.collection.find(function (c) { return c.code === _this.transactionInfo.priceKind; });
29815
29823
  }
29816
29824
  };
29817
29825
  return TransactionHeaderPriceKindComponent;
29818
29826
  }(TransactionFilterPopupBaseComponent));
29819
29827
  TransactionHeaderPriceKindComponent.decorators = [
29820
29828
  { type: i0.Component, args: [{
29821
- selector: "co-transaction-header-price-kind",
29822
- template: "\n <co-list-of-values\n [hidden]=\"hidden\"\n [readonly]=\"readonly || headerReadonly\"\n [label]=\"'PRICE_TYPE' | localize\"\n [collection]=\"collection\"\n [displayField]=\"'displayName'\"\n [model]=\"priceKindModel\"\n [tooltip]=\"tooltipMessage\"\n (modelChange)=\"commitTransactionPriceKind($event)\">\n </co-list-of-values>\n ",
29829
+ selector: 'co-transaction-header-price-kind',
29830
+ template: "\n <co-list-of-values\n [hidden]=\"hidden\"\n [readonly]=\"readonly || headerReadonly\"\n [label]=\"'PRICE_TYPE' | localize\"\n [collection]=\"collection\"\n [displayField]=\"'description'\"\n [model]=\"priceKindModel\"\n [tooltip]=\"tooltipMessage\"\n (modelChange)=\"commitTransactionPriceKind($event)\">\n </co-list-of-values>\n ",
29823
29831
  providers: [{
29824
29832
  provide: corecomponents_v12.SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME,
29825
29833
  useExisting: i0.forwardRef(function () { return TransactionHeaderPriceKindComponent; })
@@ -31504,6 +31512,7 @@
31504
31512
  this.service = service;
31505
31513
  this._dictionary = _dictionary;
31506
31514
  this._screenConfigurationService = _screenConfigurationService;
31515
+ this.transactionKind = transactionKind_enum.TransactionKind;
31507
31516
  this.closeCart = new i0.EventEmitter();
31508
31517
  this.checkout = new i0.EventEmitter();
31509
31518
  this.transaction = new transactionInfoResponse_bo.TransactionInfoResponse();
@@ -31525,7 +31534,7 @@
31525
31534
  };
31526
31535
  ShoppingCartComponent.prototype.ngOnInit = function () {
31527
31536
  var _this = this;
31528
- this._screenConfigurationService.loadConfig(['W']).then(function (configObjects) {
31537
+ this._screenConfigurationService.loadConfig([this.transactionKind.SalesOrder]).then(function (configObjects) {
31529
31538
  _this.screenConfigLoaded = true;
31530
31539
  });
31531
31540
  };
@@ -31539,7 +31548,7 @@
31539
31548
  selector: 'co-shopping-cart',
31540
31549
  template: "\n <div class=\"cart-header\">\n <span class=\"cart-header-label\"\n [textContent]=\"'SHOPPING_CART_OVERVIEW' | localize:true:service.articleAmount.toString()\"></span>\n </div>\n <div class=\"shopping-cart-transaction-wrapper\">\n <co-transaction-internal *ngIf=\"screenConfigLoaded\"\n [showHeader]=\"false\"\n [showQuickAccess]=\"false\"\n [showButtonBar]=\"false\"\n [relation]=\"relation\"\n [transaction]=\"transaction\"\n ></co-transaction-internal>\n </div>\n <div class=\"cart-buttons\">\n <a class=\"button-resume\" [textContent]=\"'SHOPPING_CART_RESUME' | localize\"\n (click)=\"closeCart.emit()\"\n ></a>\n <co-button class=\"button-checkout\" [label]=\"'SHOPPING_CART_CHECKOUT' | localize\"\n [disabled]=\"service.articleAmount === 0\"\n (click)=\"checkout.emit()\"></co-button>\n </div>\n ",
31541
31550
  providers: [
31542
- { provide: corecomponents_v12.BaseModuleScreenConfigService, useExisting: CartScreenConfigurationService }
31551
+ { provide: corecomponents_v12.BaseModuleScreenConfigService, useExisting: TransactionScreenConfigurationService }
31543
31552
  ],
31544
31553
  encapsulation: i0.ViewEncapsulation.None
31545
31554
  },] }
@@ -31547,7 +31556,7 @@
31547
31556
  ShoppingCartComponent.ctorParameters = function () { return [
31548
31557
  { type: TransactionService },
31549
31558
  { type: DictionaryService },
31550
- { type: CartScreenConfigurationService }
31559
+ { type: TransactionScreenConfigurationService }
31551
31560
  ]; };
31552
31561
  ShoppingCartComponent.propDecorators = {
31553
31562
  closeCart: [{ type: i0.Output }],
@@ -34708,7 +34717,6 @@
34708
34717
  _this.goodsReceiptHistory = [];
34709
34718
  _this.returnStockMode = false;
34710
34719
  _this.availableStockCollection = [];
34711
- _this.internalParameterPakBinnen = false;
34712
34720
  _this._subs = [];
34713
34721
  return _this;
34714
34722
  }
@@ -34803,7 +34811,6 @@
34803
34811
  TransactionLinePurchaseReceiveGoodsComponent.prototype.transactionLineSet = function () {
34804
34812
  _super.prototype.transactionLineSet.call(this);
34805
34813
  this._handleTransactionLineSet(this.transactionLine);
34806
- this.internalParameterPakBinnen = this.transactionService.internalParameterPakBinnen;
34807
34814
  };
34808
34815
  TransactionLinePurchaseReceiveGoodsComponent.prototype._handleTransactionLineSet = function (transLine) {
34809
34816
  this.receiptDetails.warehouseNr = this.transactionLine.warehouseNumber;
@@ -34833,7 +34840,7 @@
34833
34840
  TransactionLinePurchaseReceiveGoodsComponent.decorators = [
34834
34841
  { type: i0.Component, args: [{
34835
34842
  selector: 'co-transaction-line-purchase-receive-goods',
34836
- template: "\n <div class=\"receive-details-wrapper form-and-buttons\">\n <co-form>\n <!--div class=\"header-wrapper\">\n <div class=\"status-header\">\n <span [textContent]=\"'STATE' | localize\"></span>\n <co-transaction-line-statusbar class=\"status-bar-wrapper\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [activeCategory]=\"transactionTypeCategory.PurchaseOrderReceivedGoods\"></co-transaction-line-statusbar>\n </div>\n </div-->\n <div class=\"side-panel-input-row\">\n <co-input-number-picker class=\"side-panel-input\"\n [max]=\"returnStockMode ? returnMaxToReceive : lineQuantityToReceive\"\n [(model)]=\"receiptDetails.serialNr ? 1 : receiptDetails.quantityToReceive\"\n [min]=\"1\"\n [readonly]=\"!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0 || !receiptDetails.quantityToReceive || readonly\"\n [disabled]=\"!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0 || !receiptDetails.quantityToReceive\"\n [required]=\"true\"\n ></co-input-number-picker>\n <co-input-date class=\"side-panel-input\"\n [placeholder]=\"'RECEIVED_DATE' | localize\"\n [(model)]=\"request.receivedDate\"\n [readonly]=\"readonly\"\n ></co-input-date>\n <co-input-text class=\"side-panel-input\"\n *ngIf=\"!returnStockMode\"\n [(model)]=\"request.packingSlipNr\"\n [placeholder]=\"'PACKING_SLIP' | localize\"\n [required]=\"true\"\n [readonly]=\"readonly\"\n ></co-input-text>\n </div>\n <div class=\"side-panel-input-row\">\n <co-transaction-labeled-warehouse-location-button class=\"side-panel-input\" *ngIf=\"transactionLine.isLocationRequired\"\n [readonly]=\"returnStockMode || receiptDetails.quantityToReceive === 0\"\n [warehouseNumber]=\"transactionLine.warehouseNumber\"\n [(locationNr)]=\"transactionLine.locationNr\"\n (locationNrChange)=\"receiptDetails.locationNr = $event\"\n ></co-transaction-labeled-warehouse-location-button>\n <co-input-text class=\"side-panel-input\" [(model)]=\"receiptDetails.batchNr\" *ngIf=\"transactionLine.isBatchNrRequired\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"readonly || returnStockMode\"\n [disabled]=\"returnStockMode\"\n [required]=\"!internalParameterPakBinnen\"\n [placeholder]=\"'BATCH_NUMBER' | localize\"></co-input-text>\n <co-input-text class=\"side-panel-input\" [(model)]=\"receiptDetails.serialNr\" *ngIf=\"transactionLine.isSerialNrRequired\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"readonly || returnStockMode\"\n [disabled]=\"returnStockMode\"\n [required]=\"!internalParameterPakBinnen\"\n [placeholder]=\"'SERIAL_NUMBER' | localize\"></co-input-text>\n </div>\n </co-form>\n <div class=\"save-cancel-wrapper\">\n <co-button\n [iconData]=\"iconCacheService.getIcon(icons.CheckDuotone)\"\n (click)=\"handleSaveDetailsEdit()\"\n ></co-button>\n <co-button class=\"cancel-button\"\n [iconData]=\"iconCacheService.getIcon(icons.Crossskinny)\"\n ></co-button>\n <!-- <div class=\"commit-button clickable\" *ngIf=\"!readonly\" (click)=\"handleSaveDetailsEdit()\"-->\n <!-- [class.disabled]=\"receiptDetails.quantityToReceive === 0\">-->\n <!-- <span class=\"commit-text\" [textContent]=\"returnStockMode ? ('RETURN_STOCK' | localize) : ('RECEIVE' | localize)\"></span>-->\n <!-- </div>-->\n </div>\n </div>\n <co-transaction-receiving-goods-history *ngIf=\"transactionLine.amount >= 0\"\n [goodsReceiptHistory]=\"goodsReceiptHistory\"\n (deleteRow)=\"handleDeleteSelectedRow($event)\"\n ></co-transaction-receiving-goods-history>\n <co-transaction-available-stock-grid *ngIf=\"transactionLine.amount < 0\"\n [collection]=\"availableStockCollection\"\n (selectStock)=\"handleSelectStock($event)\"\n ></co-transaction-available-stock-grid>\n ",
34843
+ template: "\n <div class=\"receive-details-wrapper form-and-buttons\">\n <co-form>\n <!--div class=\"header-wrapper\">\n <div class=\"status-header\">\n <span [textContent]=\"'STATE' | localize\"></span>\n <co-transaction-line-statusbar class=\"status-bar-wrapper\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [activeCategory]=\"transactionTypeCategory.PurchaseOrderReceivedGoods\"></co-transaction-line-statusbar>\n </div>\n </div-->\n <div class=\"side-panel-input-row\">\n <co-input-number-picker class=\"side-panel-input\"\n [max]=\"returnStockMode ? returnMaxToReceive : lineQuantityToReceive\"\n [(model)]=\"receiptDetails.serialNr ? 1 : receiptDetails.quantityToReceive\"\n [min]=\"1\"\n [readonly]=\"!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0 || !receiptDetails.quantityToReceive || readonly\"\n [disabled]=\"!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0 || !receiptDetails.quantityToReceive\"\n [required]=\"true\"\n ></co-input-number-picker>\n <co-input-date class=\"side-panel-input\"\n [placeholder]=\"'RECEIVED_DATE' | localize\"\n [(model)]=\"request.receivedDate\"\n [readonly]=\"readonly\"\n ></co-input-date>\n <co-input-text class=\"side-panel-input\"\n *ngIf=\"!returnStockMode\"\n [(model)]=\"request.packingSlipNr\"\n [placeholder]=\"'PACKING_SLIP' | localize\"\n [required]=\"true\"\n [readonly]=\"readonly\"\n ></co-input-text>\n </div>\n <div class=\"side-panel-input-row\">\n <co-transaction-labeled-warehouse-location-button class=\"side-panel-input\" *ngIf=\"transactionLine.isLocationRequired\"\n [readonly]=\"returnStockMode || receiptDetails.quantityToReceive === 0\"\n [warehouseNumber]=\"transactionLine.warehouseNumber\"\n [(locationNr)]=\"transactionLine.locationNr\"\n (locationNrChange)=\"receiptDetails.locationNr = $event\"\n ></co-transaction-labeled-warehouse-location-button>\n <co-input-text class=\"side-panel-input\" [(model)]=\"receiptDetails.batchNr\" *ngIf=\"transactionLine.isBatchNrRequired\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"readonly || returnStockMode\"\n [disabled]=\"returnStockMode\"\n [required]=\"true\"\n [placeholder]=\"'BATCH_NUMBER' | localize\"></co-input-text>\n <co-input-text class=\"side-panel-input\" [(model)]=\"receiptDetails.serialNr\" *ngIf=\"transactionLine.isSerialNrRequired\"\n [type]=\"'number'\"\n [hideArrowButtons]=\"true\"\n [readonly]=\"readonly || returnStockMode\"\n [disabled]=\"returnStockMode\"\n [required]=\"true\"\n [placeholder]=\"'SERIAL_NUMBER' | localize\"></co-input-text>\n </div>\n </co-form>\n <div class=\"save-cancel-wrapper\">\n <co-button\n [iconData]=\"iconCacheService.getIcon(icons.CheckDuotone)\"\n (click)=\"handleSaveDetailsEdit()\"\n ></co-button>\n <co-button class=\"cancel-button\"\n [iconData]=\"iconCacheService.getIcon(icons.Crossskinny)\"\n ></co-button>\n <!-- <div class=\"commit-button clickable\" *ngIf=\"!readonly\" (click)=\"handleSaveDetailsEdit()\"-->\n <!-- [class.disabled]=\"receiptDetails.quantityToReceive === 0\">-->\n <!-- <span class=\"commit-text\" [textContent]=\"returnStockMode ? ('RETURN_STOCK' | localize) : ('RECEIVE' | localize)\"></span>-->\n <!-- </div>-->\n </div>\n </div>\n <co-transaction-receiving-goods-history *ngIf=\"transactionLine.amount >= 0\"\n [goodsReceiptHistory]=\"goodsReceiptHistory\"\n (deleteRow)=\"handleDeleteSelectedRow($event)\"\n ></co-transaction-receiving-goods-history>\n <co-transaction-available-stock-grid *ngIf=\"transactionLine.amount < 0\"\n [collection]=\"availableStockCollection\"\n (selectStock)=\"handleSelectStock($event)\"\n ></co-transaction-available-stock-grid>\n ",
34837
34844
  providers: [
34838
34845
  corecomponents_v12.FormMasterService
34839
34846
  ],
@@ -34891,6 +34898,7 @@
34891
34898
  _this.transactionTypeCategory = TransactionTypeCategory;
34892
34899
  _this.docDeliveryBatch = new docDeliveryBatch_bo.DocDeliveryBatch();
34893
34900
  _this.filteredDocBatchArray = [];
34901
+ _this.maxDocAmount = 0;
34894
34902
  _this._subs = [];
34895
34903
  return _this;
34896
34904
  }
@@ -34967,15 +34975,35 @@
34967
34975
  TransactionLinePurchaseConfirmationComponent.prototype.handleSelectHistoryRow = function (row) {
34968
34976
  this.docDeliveryBatch = row;
34969
34977
  this.docDeliveryBatch.docDate = new Date(row.docDate);
34978
+ this._setMaxDocAmount();
34970
34979
  };
34971
34980
  TransactionLinePurchaseConfirmationComponent.prototype.handleCancelClick = function () {
34972
34981
  this._initNewDocDeliveryBatch();
34973
34982
  };
34983
+ TransactionLinePurchaseConfirmationComponent.prototype.handleDeliveryBatchChange = function () {
34984
+ this._setMaxDocAmount();
34985
+ };
34974
34986
  TransactionLinePurchaseConfirmationComponent.prototype.transactionLineSet = function () {
34975
34987
  _super.prototype.transactionLineSet.call(this);
34976
34988
  };
34977
34989
  TransactionLinePurchaseConfirmationComponent.prototype._updateBatchArray = function () {
34978
34990
  this.filteredDocBatchArray = this.transactionLine.purchasePortalLine.docBatchArray.filter(function (value) { return value.historical.toLowerCase() === 'h' && value.docAmount >= 0; });
34991
+ this._setMaxDocAmount();
34992
+ };
34993
+ TransactionLinePurchaseConfirmationComponent.prototype._setMaxDocAmount = function () {
34994
+ var _this = this;
34995
+ var existingGroupRecord = this.transactionLine.purchasePortalLine.docBatchArray.find(function (value) { return value.historical.toLowerCase() === 'g' && value.deliveryBatch === _this.docDeliveryBatch.deliveryBatch; });
34996
+ if (existingGroupRecord) {
34997
+ this.maxDocAmount = existingGroupRecord.docAmount + existingGroupRecord.amountNotConfirmed;
34998
+ }
34999
+ else {
35000
+ try {
35001
+ this.maxDocAmount = +this.transactionLine.purchasePortalLine.amountOrdered - +this.transactionLine.purchasePortalLine.amountConfirmed;
35002
+ }
35003
+ catch (e) {
35004
+ this.maxDocAmount = +this.transactionLine.purchasePortalLine.amountOrdered;
35005
+ }
35006
+ }
34979
35007
  };
34980
35008
  TransactionLinePurchaseConfirmationComponent.prototype._initNewDocDeliveryBatch = function () {
34981
35009
  this.docDeliveryBatch = new docDeliveryBatch_bo.DocDeliveryBatch();
@@ -34989,7 +35017,7 @@
34989
35017
  TransactionLinePurchaseConfirmationComponent.decorators = [
34990
35018
  { type: i0.Component, args: [{
34991
35019
  selector: 'co-transaction-line-purchase-confirmation',
34992
- template: "\n <div class=\"confirmation-details-wrapper form-and-buttons\">\n <co-form>\n <!--div class=\"header-wrapper\">\n <div class=\"status-header\">\n <span [textContent]=\"'STATE' | localize\"></span>\n <co-transaction-line-statusbar class=\"status-bar-wrapper\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [activeCategory]=\"transactionTypeCategory.PurchaseOrderOrderConfirmation\"\n ></co-transaction-line-statusbar>\n </div>\n </div-->\n <div class=\"side-panel-input-row\">\n <co-input-number-picker class=\"side-panel-input\"\n [(model)]=\"docDeliveryBatch.docAmount\"\n [min]=\"1\"\n [max]=\"+transactionLine.purchasePortalLine.amountOrdered\"\n ></co-input-number-picker>\n <co-input-date class=\"side-panel-input\"\n [placeholder]=\"'CONFIRMED_DATE' | localize\"\n [(model)]=\"docDeliveryBatch.docDate\"\n required\n ></co-input-date>\n <co-transaction-labeled-price-input class=\"side-panel-input\"\n [(model)]=\"docDeliveryBatch.confirmedPrice\"\n [defaultEditMode]=\"false\"\n [placeholder]=\"'CONFIRMED_PRICE' | localize\"\n [required]=\"true\"\n ></co-transaction-labeled-price-input>\n </div>\n <div class=\"side-panel-input-row\">\n <co-input-text class=\"side-panel-input\"\n [(model)]=\"docDeliveryBatch.reference\"\n [placeholder]=\"'REFERENCE' | localize\"\n ></co-input-text>\n <co-input-text class=\"side-panel-input\"\n [(model)]=\"docDeliveryBatch.deliveryBatch\"\n [placeholder]=\"'DELIVERY_BATCH' | localize\"\n ></co-input-text>\n </div>\n </co-form>\n\n <div class=\"save-cancel-wrapper\">\n <co-button [iconData]=\"iconCacheService.getIcon(icons.CheckDuotone)\"\n (click)=\"handleSaveDetailsEdit()\"\n ></co-button>\n <co-button class=\"cancel-button\"\n [iconData]=\"iconCacheService.getIcon(icons.Crossskinny)\"\n (click)=\"handleCancelClick()\"\n ></co-button>\n </div>\n </div>\n <co-transaction-confirmation-history\n [collection]=\"filteredDocBatchArray\"\n (deleteRow)=\"handleDeleteHistoryRow($event)\"\n (selectRow)=\"handleSelectHistoryRow($event)\"\n ></co-transaction-confirmation-history>\n ",
35020
+ template: "\n <div class=\"confirmation-details-wrapper form-and-buttons\">\n <co-form>\n <!--div class=\"header-wrapper\">\n <div class=\"status-header\">\n <span [textContent]=\"'STATE' | localize\"></span>\n <co-transaction-line-statusbar class=\"status-bar-wrapper\"\n [transactionInfo]=\"transactionInfo\"\n [transactionLine]=\"transactionLine\"\n [activeCategory]=\"transactionTypeCategory.PurchaseOrderOrderConfirmation\"\n ></co-transaction-line-statusbar>\n </div>\n </div-->\n <div class=\"side-panel-input-row\">\n <co-input-number-picker class=\"side-panel-input\"\n [(model)]=\"docDeliveryBatch.docAmount\"\n [min]=\"1\"\n [max]=\"maxDocAmount\"\n ></co-input-number-picker>\n <co-input-date class=\"side-panel-input\"\n [placeholder]=\"'CONFIRMED_DATE' | localize\"\n [(model)]=\"docDeliveryBatch.docDate\"\n required\n ></co-input-date>\n <co-transaction-labeled-price-input class=\"side-panel-input\"\n [(model)]=\"docDeliveryBatch.confirmedPrice\"\n [defaultEditMode]=\"false\"\n [placeholder]=\"'CONFIRMED_PRICE' | localize\"\n [required]=\"true\"\n ></co-transaction-labeled-price-input>\n </div>\n <div class=\"side-panel-input-row\">\n <co-input-text class=\"side-panel-input\"\n [(model)]=\"docDeliveryBatch.reference\"\n [placeholder]=\"'REFERENCE' | localize\"\n ></co-input-text>\n <co-input-text class=\"side-panel-input\"\n [(model)]=\"docDeliveryBatch.deliveryBatch\"\n (modelChange)=\"handleDeliveryBatchChange()\"\n [placeholder]=\"'DELIVERY_BATCH' | localize\"\n ></co-input-text>\n </div>\n </co-form>\n\n <div class=\"save-cancel-wrapper\">\n <co-button [iconData]=\"iconCacheService.getIcon(icons.CheckDuotone)\"\n (click)=\"handleSaveDetailsEdit()\"\n ></co-button>\n <co-button class=\"cancel-button\"\n [iconData]=\"iconCacheService.getIcon(icons.Crossskinny)\"\n (click)=\"handleCancelClick()\"\n ></co-button>\n </div>\n </div>\n <co-transaction-confirmation-history\n [collection]=\"filteredDocBatchArray\"\n (deleteRow)=\"handleDeleteHistoryRow($event)\"\n (selectRow)=\"handleSelectHistoryRow($event)\"\n ></co-transaction-confirmation-history>\n ",
34993
35021
  providers: [
34994
35022
  corecomponents_v12.FormMasterService
34995
35023
  ],
@@ -36337,7 +36365,7 @@
36337
36365
  ],
36338
36366
  providers: [
36339
36367
  { provide: corecomponents_v12.BaseModuleService, useExisting: TransactionService },
36340
- { provide: corecomponents_v12.BaseModuleScreenConfigService, useExisting: CartScreenConfigurationService }
36368
+ { provide: corecomponents_v12.BaseModuleScreenConfigService, useExisting: TransactionScreenConfigurationService }
36341
36369
  ],
36342
36370
  exports: [
36343
36371
  ShoppingCartComponent
@@ -40881,322 +40909,321 @@
40881
40909
  exports["ɵhy"] = TransactionHeaderDiscountTransactionTotalComponent;
40882
40910
  exports["ɵhz"] = DialogTransactionHeaderDiscountComponent;
40883
40911
  exports["ɵi"] = DialogService;
40884
- exports["ɵia"] = CartScreenConfigurationService;
40885
- exports["ɵib"] = AvatarModule;
40886
- exports["ɵic"] = AvatarComponent;
40887
- exports["ɵid"] = DeliveryTypeTileModule;
40888
- exports["ɵie"] = DeliveryTypeTileComponent;
40889
- exports["ɵif"] = PaymentModule;
40890
- exports["ɵig"] = PaymentTileModule;
40891
- exports["ɵih"] = PaymentTileComponent;
40892
- exports["ɵii"] = PaymentQrCodeModule;
40893
- exports["ɵij"] = PaymentQrCodeComponent;
40894
- exports["ɵik"] = DepositPaymentModule;
40895
- exports["ɵil"] = DepositPaymentComponent;
40896
- exports["ɵim"] = PaymentService;
40897
- exports["ɵin"] = SharedService;
40898
- exports["ɵio"] = PaymentToPayModule;
40899
- exports["ɵip"] = PaymentToPayComponent;
40900
- exports["ɵiq"] = PaymentComponent;
40901
- exports["ɵir"] = RelationTypeModule;
40902
- exports["ɵis"] = RelationTypeComponent;
40903
- exports["ɵit"] = RelationGeneralModule;
40904
- exports["ɵiu"] = RelationContactDetailsModule;
40905
- exports["ɵiv"] = RelationContactDetailsComponent;
40906
- exports["ɵiw"] = RelationGeneralComponent;
40907
- exports["ɵix"] = RelationAddressesModule;
40908
- exports["ɵiy"] = RelationAddressesComponent;
40909
- exports["ɵiz"] = RelationPreferencesModule;
40912
+ exports["ɵia"] = AvatarModule;
40913
+ exports["ɵib"] = AvatarComponent;
40914
+ exports["ɵic"] = DeliveryTypeTileModule;
40915
+ exports["ɵid"] = DeliveryTypeTileComponent;
40916
+ exports["ɵie"] = PaymentModule;
40917
+ exports["ɵif"] = PaymentTileModule;
40918
+ exports["ɵig"] = PaymentTileComponent;
40919
+ exports["ɵih"] = PaymentQrCodeModule;
40920
+ exports["ɵii"] = PaymentQrCodeComponent;
40921
+ exports["ɵij"] = DepositPaymentModule;
40922
+ exports["ɵik"] = DepositPaymentComponent;
40923
+ exports["ɵil"] = PaymentService;
40924
+ exports["ɵim"] = SharedService;
40925
+ exports["ɵin"] = PaymentToPayModule;
40926
+ exports["ɵio"] = PaymentToPayComponent;
40927
+ exports["ɵip"] = PaymentComponent;
40928
+ exports["ɵiq"] = RelationTypeModule;
40929
+ exports["ɵir"] = RelationTypeComponent;
40930
+ exports["ɵis"] = RelationGeneralModule;
40931
+ exports["ɵit"] = RelationContactDetailsModule;
40932
+ exports["ɵiu"] = RelationContactDetailsComponent;
40933
+ exports["ɵiv"] = RelationGeneralComponent;
40934
+ exports["ɵiw"] = RelationAddressesModule;
40935
+ exports["ɵix"] = RelationAddressesComponent;
40936
+ exports["ɵiy"] = RelationPreferencesModule;
40937
+ exports["ɵiz"] = RelationPreferencesComponent;
40910
40938
  exports["ɵj"] = DynamicComponentService;
40911
- exports["ɵja"] = RelationPreferencesComponent;
40912
- exports["ɵjb"] = TransactionHeaderBlockModule;
40913
- exports["ɵjc"] = TransactionHeaderBlockComponent;
40914
- exports["ɵjd"] = TransactionHeaderDeliveryDateModule;
40915
- exports["ɵje"] = TransactionHeaderDeliveryDateComponent;
40916
- exports["ɵjf"] = TransactionHeaderDeliveryOptionsModule;
40917
- exports["ɵjg"] = TransactionHeaderDeliveryOptionsComponent;
40918
- exports["ɵjh"] = TransactionHeaderRemarksModule;
40919
- exports["ɵji"] = TransactionHeaderRemarksComponent;
40920
- exports["ɵjj"] = TransactionHeaderReferenceModule;
40921
- exports["ɵjk"] = TransactionHeaderReferenceComponent;
40922
- exports["ɵjl"] = TransactionHeaderRelationReferenceModule;
40923
- exports["ɵjm"] = TransactionHeaderRelationReferenceComponent;
40924
- exports["ɵjn"] = TransactionHeaderDeliveryMethodModule;
40925
- exports["ɵjo"] = TransactionHeaderDeliveryMethodComponent;
40926
- exports["ɵjp"] = TransactionHeaderPreferredDeliveryDateModule;
40927
- exports["ɵjq"] = TransactionHeaderPreferredDeliveryDateComponent;
40928
- exports["ɵjr"] = DialogTransactionHeaderDeliveryMethodModule;
40929
- exports["ɵjs"] = DialogTransactionHeaderDeliveryMethodComponent;
40930
- exports["ɵjt"] = TransactionHeaderPopupModule;
40931
- exports["ɵju"] = TransactionFilterCategoriesModule;
40932
- exports["ɵjv"] = TransactionFilterCategoriesComponent;
40933
- exports["ɵjw"] = TransactionHeaderBranchModule;
40934
- exports["ɵjx"] = TransactionHeaderBranchComponent;
40935
- exports["ɵjy"] = TransactionHeaderSalesPersonModule;
40936
- exports["ɵjz"] = TransactionHeaderSalesPersonComponent;
40939
+ exports["ɵja"] = TransactionHeaderBlockModule;
40940
+ exports["ɵjb"] = TransactionHeaderBlockComponent;
40941
+ exports["ɵjc"] = TransactionHeaderDeliveryDateModule;
40942
+ exports["ɵjd"] = TransactionHeaderDeliveryDateComponent;
40943
+ exports["ɵje"] = TransactionHeaderDeliveryOptionsModule;
40944
+ exports["ɵjf"] = TransactionHeaderDeliveryOptionsComponent;
40945
+ exports["ɵjg"] = TransactionHeaderRemarksModule;
40946
+ exports["ɵjh"] = TransactionHeaderRemarksComponent;
40947
+ exports["ɵji"] = TransactionHeaderReferenceModule;
40948
+ exports["ɵjj"] = TransactionHeaderReferenceComponent;
40949
+ exports["ɵjk"] = TransactionHeaderRelationReferenceModule;
40950
+ exports["ɵjl"] = TransactionHeaderRelationReferenceComponent;
40951
+ exports["ɵjm"] = TransactionHeaderDeliveryMethodModule;
40952
+ exports["ɵjn"] = TransactionHeaderDeliveryMethodComponent;
40953
+ exports["ɵjo"] = TransactionHeaderPreferredDeliveryDateModule;
40954
+ exports["ɵjp"] = TransactionHeaderPreferredDeliveryDateComponent;
40955
+ exports["ɵjq"] = DialogTransactionHeaderDeliveryMethodModule;
40956
+ exports["ɵjr"] = DialogTransactionHeaderDeliveryMethodComponent;
40957
+ exports["ɵjs"] = TransactionHeaderPopupModule;
40958
+ exports["ɵjt"] = TransactionFilterCategoriesModule;
40959
+ exports["ɵju"] = TransactionFilterCategoriesComponent;
40960
+ exports["ɵjv"] = TransactionHeaderBranchModule;
40961
+ exports["ɵjw"] = TransactionHeaderBranchComponent;
40962
+ exports["ɵjx"] = TransactionHeaderSalesPersonModule;
40963
+ exports["ɵjy"] = TransactionHeaderSalesPersonComponent;
40964
+ exports["ɵjz"] = TransactionHeaderAdministrativeRelationModule;
40937
40965
  exports["ɵk"] = ArticleConnectorService;
40938
- exports["ɵka"] = TransactionHeaderAdministrativeRelationModule;
40939
- exports["ɵkb"] = TransactionHeaderAdministrativeRelationComponent;
40940
- exports["ɵkc"] = TransactionHeaderPriceKindModule;
40941
- exports["ɵkd"] = TransactionHeaderPriceKindComponent;
40942
- exports["ɵke"] = TransactionHeaderCurrencyModule;
40943
- exports["ɵkf"] = TransactionHeaderCurrencyComponent;
40944
- exports["ɵkg"] = TransactionHeaderPaymentConditionModule;
40945
- exports["ɵkh"] = TransactionHeaderPaymentConditionComponent;
40946
- exports["ɵki"] = TransactionHeaderHoldCodesModule;
40947
- exports["ɵkj"] = TransactionHeaderHoldCodesComponent;
40948
- exports["ɵkk"] = TransactionHeaderMarketingModule;
40949
- exports["ɵkl"] = TransactionHeaderMarketingComponent;
40950
- exports["ɵkm"] = TransactionHeaderDeliveryMethodButtonModule;
40951
- exports["ɵkn"] = TransactionHeaderDeliveryMethodButtonComponent;
40952
- exports["ɵko"] = TransactionHeaderDefinitiveModule;
40953
- exports["ɵkp"] = TransactionHeaderDefinitiveComponent;
40954
- exports["ɵkq"] = TransactionHeaderDeliverydateDefinitiveButtonModule;
40955
- exports["ɵkr"] = TransactionHeaderDeliverydateDefinitiveButtonComponent;
40956
- exports["ɵks"] = TransactionHeaderDepositPercentageModule;
40957
- exports["ɵkt"] = TransactionHeaderDepositPercentageComponent;
40958
- exports["ɵku"] = TransactionHeaderDepositAmountModule;
40959
- exports["ɵkv"] = TransactionHeaderDepositAmountComponent;
40960
- exports["ɵkw"] = TransactionHeaderPaymentButtonModule;
40961
- exports["ɵkx"] = TransactionHeaderPaymentButtonComponent;
40962
- exports["ɵky"] = TransactionHeaderDivideEvenlyModule;
40963
- exports["ɵkz"] = TransactionHeaderDivideEvenlyComponent;
40966
+ exports["ɵka"] = TransactionHeaderAdministrativeRelationComponent;
40967
+ exports["ɵkb"] = TransactionHeaderPriceKindModule;
40968
+ exports["ɵkc"] = TransactionHeaderPriceKindComponent;
40969
+ exports["ɵkd"] = TransactionHeaderCurrencyModule;
40970
+ exports["ɵke"] = TransactionHeaderCurrencyComponent;
40971
+ exports["ɵkf"] = TransactionHeaderPaymentConditionModule;
40972
+ exports["ɵkg"] = TransactionHeaderPaymentConditionComponent;
40973
+ exports["ɵkh"] = TransactionHeaderHoldCodesModule;
40974
+ exports["ɵki"] = TransactionHeaderHoldCodesComponent;
40975
+ exports["ɵkj"] = TransactionHeaderMarketingModule;
40976
+ exports["ɵkk"] = TransactionHeaderMarketingComponent;
40977
+ exports["ɵkl"] = TransactionHeaderDeliveryMethodButtonModule;
40978
+ exports["ɵkm"] = TransactionHeaderDeliveryMethodButtonComponent;
40979
+ exports["ɵkn"] = TransactionHeaderDefinitiveModule;
40980
+ exports["ɵko"] = TransactionHeaderDefinitiveComponent;
40981
+ exports["ɵkp"] = TransactionHeaderDeliverydateDefinitiveButtonModule;
40982
+ exports["ɵkq"] = TransactionHeaderDeliverydateDefinitiveButtonComponent;
40983
+ exports["ɵkr"] = TransactionHeaderDepositPercentageModule;
40984
+ exports["ɵks"] = TransactionHeaderDepositPercentageComponent;
40985
+ exports["ɵkt"] = TransactionHeaderDepositAmountModule;
40986
+ exports["ɵku"] = TransactionHeaderDepositAmountComponent;
40987
+ exports["ɵkv"] = TransactionHeaderPaymentButtonModule;
40988
+ exports["ɵkw"] = TransactionHeaderPaymentButtonComponent;
40989
+ exports["ɵkx"] = TransactionHeaderDivideEvenlyModule;
40990
+ exports["ɵky"] = TransactionHeaderDivideEvenlyComponent;
40991
+ exports["ɵkz"] = TransactionHeaderAmountToSettleModule;
40964
40992
  exports["ɵl"] = PendingReasonService;
40965
- exports["ɵla"] = TransactionHeaderAmountToSettleModule;
40966
- exports["ɵlb"] = TransactionHeaderAmountToSettleComponent;
40967
- exports["ɵlc"] = TransactionHeaderScoringChanceModule;
40968
- exports["ɵld"] = TransactionHeaderScoringChanceComponent;
40969
- exports["ɵle"] = TransactionHeaderRetailStadiumModule;
40970
- exports["ɵlf"] = TransactionHeaderRetailStadiumComponent;
40971
- exports["ɵlg"] = TransactionHeaderScoringDateModule;
40972
- exports["ɵlh"] = TransactionHeaderScoringDateComponent;
40973
- exports["ɵli"] = TransactionHeaderPartialDeliveryModule;
40974
- exports["ɵlj"] = TransactionHeaderPartialDeliveryComponent;
40975
- exports["ɵlk"] = TransactionHeaderPopupComponent;
40976
- exports["ɵll"] = TransactionHeaderPopupRelationComponent;
40977
- exports["ɵlm"] = TransactionHeaderPopupBaseComponent;
40978
- exports["ɵln"] = TransactionHeaderPopupOrderComponent;
40979
- exports["ɵlo"] = TransactionHeaderPopupDeliveryComponent;
40980
- exports["ɵlp"] = TransactionHeaderPopupPaymentComponent;
40981
- exports["ɵlq"] = RelationSuggestionsListModule;
40982
- exports["ɵlr"] = RelationSuggestionsListItemModule;
40983
- exports["ɵls"] = RelationSuggestionsListItemComponent;
40984
- exports["ɵlt"] = RelationSuggestionsListComponent;
40985
- exports["ɵlu"] = CheckoutOverviewRelationEditComponent;
40986
- exports["ɵlv"] = CheckoutOverviewDeliveryEditComponent;
40987
- exports["ɵlw"] = CheckoutOverviewPaymentComponent;
40988
- exports["ɵlx"] = TransactionInternalModule;
40989
- exports["ɵly"] = TransactionHeaderPaymentModule;
40990
- exports["ɵlz"] = TransactionHeaderRemainingAmountModule;
40993
+ exports["ɵla"] = TransactionHeaderAmountToSettleComponent;
40994
+ exports["ɵlb"] = TransactionHeaderScoringChanceModule;
40995
+ exports["ɵlc"] = TransactionHeaderScoringChanceComponent;
40996
+ exports["ɵld"] = TransactionHeaderRetailStadiumModule;
40997
+ exports["ɵle"] = TransactionHeaderRetailStadiumComponent;
40998
+ exports["ɵlf"] = TransactionHeaderScoringDateModule;
40999
+ exports["ɵlg"] = TransactionHeaderScoringDateComponent;
41000
+ exports["ɵlh"] = TransactionHeaderPartialDeliveryModule;
41001
+ exports["ɵli"] = TransactionHeaderPartialDeliveryComponent;
41002
+ exports["ɵlj"] = TransactionHeaderPopupComponent;
41003
+ exports["ɵlk"] = TransactionHeaderPopupRelationComponent;
41004
+ exports["ɵll"] = TransactionHeaderPopupBaseComponent;
41005
+ exports["ɵlm"] = TransactionHeaderPopupOrderComponent;
41006
+ exports["ɵln"] = TransactionHeaderPopupDeliveryComponent;
41007
+ exports["ɵlo"] = TransactionHeaderPopupPaymentComponent;
41008
+ exports["ɵlp"] = RelationSuggestionsListModule;
41009
+ exports["ɵlq"] = RelationSuggestionsListItemModule;
41010
+ exports["ɵlr"] = RelationSuggestionsListItemComponent;
41011
+ exports["ɵls"] = RelationSuggestionsListComponent;
41012
+ exports["ɵlt"] = CheckoutOverviewRelationEditComponent;
41013
+ exports["ɵlu"] = CheckoutOverviewDeliveryEditComponent;
41014
+ exports["ɵlv"] = CheckoutOverviewPaymentComponent;
41015
+ exports["ɵlw"] = TransactionInternalModule;
41016
+ exports["ɵlx"] = TransactionHeaderPaymentModule;
41017
+ exports["ɵly"] = TransactionHeaderRemainingAmountModule;
41018
+ exports["ɵlz"] = TransactionHeaderRemainingAmountComponent;
40991
41019
  exports["ɵm"] = TransactionBaseService;
40992
- exports["ɵma"] = TransactionHeaderRemainingAmountComponent;
40993
- exports["ɵmb"] = TransactionHeaderPaymentComponent;
40994
- exports["ɵmc"] = TransactionLabeledWarehouseLocationButtonModule;
40995
- exports["ɵmd"] = TransactionLabeledWarehouseLocationButtonComponent;
40996
- exports["ɵme"] = TransactionQuickAccessOverviewModule;
40997
- exports["ɵmf"] = DialogCatalogModule;
40998
- exports["ɵmg"] = DialogCatalogComponent;
40999
- exports["ɵmh"] = TransactionSendDocumentsModule;
41000
- exports["ɵmi"] = TransactionSendDocumentsComponent;
41001
- exports["ɵmj"] = DigitalSignatureModule;
41002
- exports["ɵmk"] = DigitalSignatureComponent;
41003
- exports["ɵml"] = TransactionQuickAccessOverviewComponent;
41004
- exports["ɵmm"] = TransactionQuickAccessOrderDeliveryModule;
41005
- exports["ɵmn"] = TransactionButtonBarModule;
41006
- exports["ɵmo"] = AnimatedCheckboxModule;
41007
- exports["ɵmp"] = AnimatedCheckboxComponent;
41008
- exports["ɵmq"] = TransactionButtonBarComponent;
41009
- exports["ɵmr"] = TransactionButtonBarButtonComponent;
41010
- exports["ɵms"] = TransactionButtonBarButtonBaseComponent;
41011
- exports["ɵmt"] = TransactionSalesPurchaseButtonBarButtonComponent;
41012
- exports["ɵmu"] = TransactionPurchaseReceiveGoodsButtonBarButtonComponent;
41013
- exports["ɵmv"] = TransactionSalesAllocationButtonBarButtonComponent;
41014
- exports["ɵmw"] = TransactionPurchaseConfirmationButtonBarButtonComponent;
41015
- exports["ɵmx"] = TransactionSalesDeliveryButtonBarButtonComponent;
41016
- exports["ɵmy"] = TransactionSalesInvoiceButtonBarButtonComponent;
41017
- exports["ɵmz"] = TransactionPurchaseInvoiceButtonBarButtonComponent;
41020
+ exports["ɵma"] = TransactionHeaderPaymentComponent;
41021
+ exports["ɵmb"] = TransactionLabeledWarehouseLocationButtonModule;
41022
+ exports["ɵmc"] = TransactionLabeledWarehouseLocationButtonComponent;
41023
+ exports["ɵmd"] = TransactionQuickAccessOverviewModule;
41024
+ exports["ɵme"] = DialogCatalogModule;
41025
+ exports["ɵmf"] = DialogCatalogComponent;
41026
+ exports["ɵmg"] = TransactionSendDocumentsModule;
41027
+ exports["ɵmh"] = TransactionSendDocumentsComponent;
41028
+ exports["ɵmi"] = DigitalSignatureModule;
41029
+ exports["ɵmj"] = DigitalSignatureComponent;
41030
+ exports["ɵmk"] = TransactionQuickAccessOverviewComponent;
41031
+ exports["ɵml"] = TransactionQuickAccessOrderDeliveryModule;
41032
+ exports["ɵmm"] = TransactionButtonBarModule;
41033
+ exports["ɵmn"] = AnimatedCheckboxModule;
41034
+ exports["ɵmo"] = AnimatedCheckboxComponent;
41035
+ exports["ɵmp"] = TransactionButtonBarComponent;
41036
+ exports["ɵmq"] = TransactionButtonBarButtonComponent;
41037
+ exports["ɵmr"] = TransactionButtonBarButtonBaseComponent;
41038
+ exports["ɵms"] = TransactionSalesPurchaseButtonBarButtonComponent;
41039
+ exports["ɵmt"] = TransactionPurchaseReceiveGoodsButtonBarButtonComponent;
41040
+ exports["ɵmu"] = TransactionSalesAllocationButtonBarButtonComponent;
41041
+ exports["ɵmv"] = TransactionPurchaseConfirmationButtonBarButtonComponent;
41042
+ exports["ɵmw"] = TransactionSalesDeliveryButtonBarButtonComponent;
41043
+ exports["ɵmx"] = TransactionSalesInvoiceButtonBarButtonComponent;
41044
+ exports["ɵmy"] = TransactionPurchaseInvoiceButtonBarButtonComponent;
41045
+ exports["ɵmz"] = TransactionSalesPickingButtonBarButtonComponent;
41018
41046
  exports["ɵn"] = SelectSingleCacheService;
41019
- exports["ɵna"] = TransactionSalesPickingButtonBarButtonComponent;
41020
- exports["ɵnb"] = TransactionSalesOverviewButtonBarButtonComponent;
41021
- exports["ɵnc"] = TransactionQuickAccessOrderDeliveryComponent;
41022
- exports["ɵnd"] = TransactionQuickAccessOrderPurchaseModule;
41023
- exports["ɵne"] = TransactionQuickAccessOrderPurchaseComponent;
41024
- exports["ɵnf"] = TransactionQuickAccessGoodsAllocationModule;
41025
- exports["ɵng"] = TransactionQuickAccessGoodsAllocationComponent;
41026
- exports["ɵnh"] = TransactionQuickAccessPurchaseOrderOverviewModule;
41027
- exports["ɵni"] = TransactionQuickAccessPurchaseOrderOverviewComponent;
41028
- exports["ɵnj"] = TransactionQuickAccessInvoiceModule;
41029
- exports["ɵnk"] = TransactionQuickAccessInvoiceComponent;
41030
- exports["ɵnl"] = TransactionQuickAccessToBePickedModule;
41031
- exports["ɵnm"] = TransactionQuickAccessToBePickedComponent;
41032
- exports["ɵnn"] = TransactionQuickAccessPickedModule;
41033
- exports["ɵno"] = TransactionQuickAccessPickedComponent;
41034
- exports["ɵnp"] = TransactionQuickAccessSalesQuotationModule;
41035
- exports["ɵnq"] = TransactionQuickAccessSalesQuotationComponent;
41036
- exports["ɵnr"] = TransactionCreationService;
41037
- exports["ɵns"] = TransactionCardModule;
41038
- exports["ɵnt"] = TransactionCardPurchaseOverviewModule;
41039
- exports["ɵnu"] = TransactionCardHeaderModule;
41040
- exports["ɵnv"] = TransactionCardHeaderComponent;
41041
- exports["ɵnw"] = TransactionCardFooterModule;
41042
- exports["ɵnx"] = TransactionCardFooterComponent;
41043
- exports["ɵny"] = TransactionCardPurchaseOverviewComponent;
41044
- exports["ɵnz"] = TransactionCardSalesOverviewModule;
41047
+ exports["ɵna"] = TransactionSalesOverviewButtonBarButtonComponent;
41048
+ exports["ɵnb"] = TransactionQuickAccessOrderDeliveryComponent;
41049
+ exports["ɵnc"] = TransactionQuickAccessOrderPurchaseModule;
41050
+ exports["ɵnd"] = TransactionQuickAccessOrderPurchaseComponent;
41051
+ exports["ɵne"] = TransactionQuickAccessGoodsAllocationModule;
41052
+ exports["ɵnf"] = TransactionQuickAccessGoodsAllocationComponent;
41053
+ exports["ɵng"] = TransactionQuickAccessPurchaseOrderOverviewModule;
41054
+ exports["ɵnh"] = TransactionQuickAccessPurchaseOrderOverviewComponent;
41055
+ exports["ɵni"] = TransactionQuickAccessInvoiceModule;
41056
+ exports["ɵnj"] = TransactionQuickAccessInvoiceComponent;
41057
+ exports["ɵnk"] = TransactionQuickAccessToBePickedModule;
41058
+ exports["ɵnl"] = TransactionQuickAccessToBePickedComponent;
41059
+ exports["ɵnm"] = TransactionQuickAccessPickedModule;
41060
+ exports["ɵnn"] = TransactionQuickAccessPickedComponent;
41061
+ exports["ɵno"] = TransactionQuickAccessSalesQuotationModule;
41062
+ exports["ɵnp"] = TransactionQuickAccessSalesQuotationComponent;
41063
+ exports["ɵnq"] = TransactionCreationService;
41064
+ exports["ɵnr"] = TransactionCardModule;
41065
+ exports["ɵns"] = TransactionCardPurchaseOverviewModule;
41066
+ exports["ɵnt"] = TransactionCardHeaderModule;
41067
+ exports["ɵnu"] = TransactionCardHeaderComponent;
41068
+ exports["ɵnv"] = TransactionCardFooterModule;
41069
+ exports["ɵnw"] = TransactionCardFooterComponent;
41070
+ exports["ɵnx"] = TransactionCardPurchaseOverviewComponent;
41071
+ exports["ɵny"] = TransactionCardSalesOverviewModule;
41072
+ exports["ɵnz"] = TransactionCardSalesOverviewComponent;
41045
41073
  exports["ɵo"] = SelectSingleParameterizedCacheService;
41046
- exports["ɵoa"] = TransactionCardSalesOverviewComponent;
41047
- exports["ɵob"] = TransactionCardReceiveGoodsModule;
41048
- exports["ɵoc"] = TransactionCardReceiveGoodsComponent;
41049
- exports["ɵod"] = TransactionCardInvoiceModule;
41050
- exports["ɵoe"] = TransactionCardInvoiceComponent;
41051
- exports["ɵof"] = TransactionCardOrderDeliveryModule;
41052
- exports["ɵog"] = TransactionCardOrderDeliveryComponent;
41053
- exports["ɵoh"] = TransactionCardComponent;
41054
- exports["ɵoi"] = AddProductModule;
41055
- exports["ɵoj"] = AddProductComponent;
41056
- exports["ɵok"] = TransactionLineSidePanelModule;
41057
- exports["ɵol"] = TransactionLineSidePanelDefaultModule;
41058
- exports["ɵom"] = TransactionLineQuantityModule;
41059
- exports["ɵon"] = TransactionLineQuantityComponent;
41060
- exports["ɵoo"] = TransactionLineReferenceModule;
41061
- exports["ɵop"] = TransactionLineReferenceComponent;
41062
- exports["ɵoq"] = TransactionLineSidePanelDefaultComponent;
41063
- exports["ɵor"] = TransactionReceivingGoodsHistoryModule;
41064
- exports["ɵos"] = TransactionHistoryGridModule;
41065
- exports["ɵot"] = TransactionHistoryGridStatusModule;
41066
- exports["ɵou"] = TransactionHistoryGridStatusComponent;
41067
- exports["ɵov"] = TransactionHistoryGridComponent;
41068
- exports["ɵow"] = TransactionReceivingGoodsHistoryComponent;
41069
- exports["ɵox"] = TransactionLineSidePanelPurchaseModule;
41070
- exports["ɵoy"] = TransactionAvailableStockGridModule;
41071
- exports["ɵoz"] = TransactionAvailableStockGridComponent;
41074
+ exports["ɵoa"] = TransactionCardReceiveGoodsModule;
41075
+ exports["ɵob"] = TransactionCardReceiveGoodsComponent;
41076
+ exports["ɵoc"] = TransactionCardInvoiceModule;
41077
+ exports["ɵod"] = TransactionCardInvoiceComponent;
41078
+ exports["ɵoe"] = TransactionCardOrderDeliveryModule;
41079
+ exports["ɵof"] = TransactionCardOrderDeliveryComponent;
41080
+ exports["ɵog"] = TransactionCardComponent;
41081
+ exports["ɵoh"] = AddProductModule;
41082
+ exports["ɵoi"] = AddProductComponent;
41083
+ exports["ɵoj"] = TransactionLineSidePanelModule;
41084
+ exports["ɵok"] = TransactionLineSidePanelDefaultModule;
41085
+ exports["ɵol"] = TransactionLineQuantityModule;
41086
+ exports["ɵom"] = TransactionLineQuantityComponent;
41087
+ exports["ɵon"] = TransactionLineReferenceModule;
41088
+ exports["ɵoo"] = TransactionLineReferenceComponent;
41089
+ exports["ɵop"] = TransactionLineSidePanelDefaultComponent;
41090
+ exports["ɵoq"] = TransactionReceivingGoodsHistoryModule;
41091
+ exports["ɵor"] = TransactionHistoryGridModule;
41092
+ exports["ɵos"] = TransactionHistoryGridStatusModule;
41093
+ exports["ɵot"] = TransactionHistoryGridStatusComponent;
41094
+ exports["ɵou"] = TransactionHistoryGridComponent;
41095
+ exports["ɵov"] = TransactionReceivingGoodsHistoryComponent;
41096
+ exports["ɵow"] = TransactionLineSidePanelPurchaseModule;
41097
+ exports["ɵox"] = TransactionAvailableStockGridModule;
41098
+ exports["ɵoy"] = TransactionAvailableStockGridComponent;
41099
+ exports["ɵoz"] = TransactionLinePurchaseReceiveGoodsModule;
41072
41100
  exports["ɵp"] = CoreModule;
41073
- exports["ɵpa"] = TransactionLinePurchaseReceiveGoodsModule;
41074
- exports["ɵpb"] = TransactionLinePurchaseReceiveGoodsComponent;
41075
- exports["ɵpc"] = TransactionLinePurchaseConfirmationModule;
41076
- exports["ɵpd"] = DefaultOkCancelButtonsModule;
41077
- exports["ɵpe"] = DefaultOkCancelButtonsComponent;
41078
- exports["ɵpf"] = TransactionLabeledPriceInputModule;
41079
- exports["ɵpg"] = TransactionLabeledPriceInputComponent;
41080
- exports["ɵph"] = TransactionLinePurchaseConfirmationComponent;
41081
- exports["ɵpi"] = TransactionLineSidePanelPurchaseComponent;
41082
- exports["ɵpj"] = TransactionLineSidePanelSalesModule;
41083
- exports["ɵpk"] = TransactionAllocateGoodsHistoryModule;
41084
- exports["ɵpl"] = TransactionAllocateGoodsHistoryComponent;
41085
- exports["ɵpm"] = TransactionLineSalesAllocationModule;
41086
- exports["ɵpn"] = TransactionLineSalesAllocationComponent;
41087
- exports["ɵpo"] = TransactionLineSalesDeliveryModule;
41088
- exports["ɵpp"] = TransactionLineDeliveryHistoryModule;
41089
- exports["ɵpq"] = TransactionLineDeliveryHistoryComponent;
41090
- exports["ɵpr"] = TransactionLineSalesDeliveryComponent;
41091
- exports["ɵps"] = TransactionLineSalesInvoiceModule;
41092
- exports["ɵpt"] = TransactionLineInvoiceHistoryModule;
41093
- exports["ɵpu"] = TransactionLineInvoiceHistoryComponent;
41094
- exports["ɵpv"] = TransactionLineSalesInvoiceComponent;
41095
- exports["ɵpw"] = TransactionLineSidePanelToBePickedModule;
41096
- exports["ɵpx"] = TransactionPickingHistoryModule;
41097
- exports["ɵpy"] = TransactionPickingHistoryComponent;
41098
- exports["ɵpz"] = TransactionLineSidePanelToBePickedComponent;
41101
+ exports["ɵpa"] = TransactionLinePurchaseReceiveGoodsComponent;
41102
+ exports["ɵpb"] = TransactionLinePurchaseConfirmationModule;
41103
+ exports["ɵpc"] = DefaultOkCancelButtonsModule;
41104
+ exports["ɵpd"] = DefaultOkCancelButtonsComponent;
41105
+ exports["ɵpe"] = TransactionLabeledPriceInputModule;
41106
+ exports["ɵpf"] = TransactionLabeledPriceInputComponent;
41107
+ exports["ɵpg"] = TransactionLinePurchaseConfirmationComponent;
41108
+ exports["ɵph"] = TransactionLineSidePanelPurchaseComponent;
41109
+ exports["ɵpi"] = TransactionLineSidePanelSalesModule;
41110
+ exports["ɵpj"] = TransactionAllocateGoodsHistoryModule;
41111
+ exports["ɵpk"] = TransactionAllocateGoodsHistoryComponent;
41112
+ exports["ɵpl"] = TransactionLineSalesAllocationModule;
41113
+ exports["ɵpm"] = TransactionLineSalesAllocationComponent;
41114
+ exports["ɵpn"] = TransactionLineSalesDeliveryModule;
41115
+ exports["ɵpo"] = TransactionLineDeliveryHistoryModule;
41116
+ exports["ɵpp"] = TransactionLineDeliveryHistoryComponent;
41117
+ exports["ɵpq"] = TransactionLineSalesDeliveryComponent;
41118
+ exports["ɵpr"] = TransactionLineSalesInvoiceModule;
41119
+ exports["ɵps"] = TransactionLineInvoiceHistoryModule;
41120
+ exports["ɵpt"] = TransactionLineInvoiceHistoryComponent;
41121
+ exports["ɵpu"] = TransactionLineSalesInvoiceComponent;
41122
+ exports["ɵpv"] = TransactionLineSidePanelToBePickedModule;
41123
+ exports["ɵpw"] = TransactionPickingHistoryModule;
41124
+ exports["ɵpx"] = TransactionPickingHistoryComponent;
41125
+ exports["ɵpy"] = TransactionLineSidePanelToBePickedComponent;
41126
+ exports["ɵpz"] = TransactionLineSidePanelPickedModule;
41099
41127
  exports["ɵq"] = ConfirmationDialogModule;
41100
- exports["ɵqa"] = TransactionLineSidePanelPickedModule;
41101
- exports["ɵqb"] = TransactionLineSidePanelPickedComponent;
41102
- exports["ɵqc"] = TransactionLineSidePanelSalesComponent;
41103
- exports["ɵqd"] = TransactionLineSidePanelComponent;
41104
- exports["ɵqe"] = TransactionCopyOrderModule;
41105
- exports["ɵqf"] = DefaultConfirmCancelButtonsModule;
41106
- exports["ɵqg"] = DefaultConfirmCancelButtonsComponent;
41107
- exports["ɵqh"] = TransactionCopyOrderComponent;
41108
- exports["ɵqi"] = TransactionInternalComponent;
41109
- exports["ɵqj"] = LineSelectionService;
41110
- exports["ɵqk"] = TransactionGridModule;
41111
- exports["ɵql"] = TransactionLinesGridModule;
41112
- exports["ɵqm"] = TransactionBaseGridModule;
41113
- exports["ɵqn"] = TransactionBaseGridComponent;
41114
- exports["ɵqo"] = TransactionGridBaseComponent;
41115
- exports["ɵqp"] = DialogTransactionLineWarehouseCcModule;
41116
- exports["ɵqq"] = DialogTransactionLineWarehouseCcComponent;
41117
- exports["ɵqr"] = DialogTransactionHeaderBranchModule;
41118
- exports["ɵqs"] = DialogTransactionHeaderBranchComponent;
41119
- exports["ɵqt"] = TransactionLinesGridComponent;
41120
- exports["ɵqu"] = TransactionOrderConfirmationGridModule;
41121
- exports["ɵqv"] = TransactionOrderConfirmationGridComponent;
41122
- exports["ɵqw"] = TransactionGridComponent;
41123
- exports["ɵqx"] = SearchViewModeService;
41124
- exports["ɵqy"] = TransactionSearchSalesOrderTileModule;
41125
- exports["ɵqz"] = TransactionSearchSalesOrderTileComponent;
41128
+ exports["ɵqa"] = TransactionLineSidePanelPickedComponent;
41129
+ exports["ɵqb"] = TransactionLineSidePanelSalesComponent;
41130
+ exports["ɵqc"] = TransactionLineSidePanelComponent;
41131
+ exports["ɵqd"] = TransactionCopyOrderModule;
41132
+ exports["ɵqe"] = DefaultConfirmCancelButtonsModule;
41133
+ exports["ɵqf"] = DefaultConfirmCancelButtonsComponent;
41134
+ exports["ɵqg"] = TransactionCopyOrderComponent;
41135
+ exports["ɵqh"] = TransactionInternalComponent;
41136
+ exports["ɵqi"] = LineSelectionService;
41137
+ exports["ɵqj"] = TransactionGridModule;
41138
+ exports["ɵqk"] = TransactionLinesGridModule;
41139
+ exports["ɵql"] = TransactionBaseGridModule;
41140
+ exports["ɵqm"] = TransactionBaseGridComponent;
41141
+ exports["ɵqn"] = TransactionGridBaseComponent;
41142
+ exports["ɵqo"] = DialogTransactionLineWarehouseCcModule;
41143
+ exports["ɵqp"] = DialogTransactionLineWarehouseCcComponent;
41144
+ exports["ɵqq"] = DialogTransactionHeaderBranchModule;
41145
+ exports["ɵqr"] = DialogTransactionHeaderBranchComponent;
41146
+ exports["ɵqs"] = TransactionLinesGridComponent;
41147
+ exports["ɵqt"] = TransactionOrderConfirmationGridModule;
41148
+ exports["ɵqu"] = TransactionOrderConfirmationGridComponent;
41149
+ exports["ɵqv"] = TransactionGridComponent;
41150
+ exports["ɵqw"] = SearchViewModeService;
41151
+ exports["ɵqx"] = TransactionSearchSalesOrderTileModule;
41152
+ exports["ɵqy"] = TransactionSearchSalesOrderTileComponent;
41153
+ exports["ɵqz"] = TransactionSearchTileBaseComponent;
41126
41154
  exports["ɵr"] = PipeModule;
41127
- exports["ɵra"] = TransactionSearchTileBaseComponent;
41128
- exports["ɵrb"] = TransactionSearchPurchaseOrderTileModule;
41129
- exports["ɵrc"] = TransactionSearchPurchaseOrderTileComponent;
41130
- exports["ɵrd"] = TransactionSearchSalesOrderGridModule;
41131
- exports["ɵre"] = TransactionSearchSalesOrderGridComponent;
41132
- exports["ɵrf"] = TransactionSearchGridBaseComponent;
41133
- exports["ɵrg"] = TransactionSearchPurchaseOrderGridModule;
41134
- exports["ɵrh"] = TransactionSearchPurchaseOrderGridComponent;
41135
- exports["ɵri"] = TransactionSearchSalesQuotationGridModule;
41136
- exports["ɵrj"] = TransactionSearchSalesQuotationGridComponent;
41137
- exports["ɵrk"] = TransactionSearchSalesQuotationTileModule;
41138
- exports["ɵrl"] = TransactionSearchSalesQuotationTileComponent;
41139
- exports["ɵrm"] = TransactionSearchGridModule;
41140
- exports["ɵrn"] = TransactionSearchGridComponent;
41141
- exports["ɵro"] = TransactionSearchTileModule;
41142
- exports["ɵrp"] = TransactionSearchTileComponent;
41143
- exports["ɵrq"] = TransactionSalesOrderFilterModule;
41144
- exports["ɵrr"] = TransactionSalesOrderFilterContentOrderModule;
41145
- exports["ɵrs"] = TransactionFilterItemModule;
41146
- exports["ɵrt"] = TransactionFilterItemComponent;
41147
- exports["ɵru"] = TransactionSalesOrderFilterContentOrderComponent;
41148
- exports["ɵrv"] = TransactionFilterContentBaseComponent;
41149
- exports["ɵrw"] = TransactionSalesOrderFilterContentLogisticsModule;
41150
- exports["ɵrx"] = TransactionFilterHistoricStateModule;
41151
- exports["ɵry"] = TransactionFilterHistoricStateComponent;
41152
- exports["ɵrz"] = TransactionSalesOrderFilterContentLogisticsComponent;
41155
+ exports["ɵra"] = TransactionSearchPurchaseOrderTileModule;
41156
+ exports["ɵrb"] = TransactionSearchPurchaseOrderTileComponent;
41157
+ exports["ɵrc"] = TransactionSearchSalesOrderGridModule;
41158
+ exports["ɵrd"] = TransactionSearchSalesOrderGridComponent;
41159
+ exports["ɵre"] = TransactionSearchGridBaseComponent;
41160
+ exports["ɵrf"] = TransactionSearchPurchaseOrderGridModule;
41161
+ exports["ɵrg"] = TransactionSearchPurchaseOrderGridComponent;
41162
+ exports["ɵrh"] = TransactionSearchSalesQuotationGridModule;
41163
+ exports["ɵri"] = TransactionSearchSalesQuotationGridComponent;
41164
+ exports["ɵrj"] = TransactionSearchSalesQuotationTileModule;
41165
+ exports["ɵrk"] = TransactionSearchSalesQuotationTileComponent;
41166
+ exports["ɵrl"] = TransactionSearchGridModule;
41167
+ exports["ɵrm"] = TransactionSearchGridComponent;
41168
+ exports["ɵrn"] = TransactionSearchTileModule;
41169
+ exports["ɵro"] = TransactionSearchTileComponent;
41170
+ exports["ɵrp"] = TransactionSalesOrderFilterModule;
41171
+ exports["ɵrq"] = TransactionSalesOrderFilterContentOrderModule;
41172
+ exports["ɵrr"] = TransactionFilterItemModule;
41173
+ exports["ɵrs"] = TransactionFilterItemComponent;
41174
+ exports["ɵrt"] = TransactionSalesOrderFilterContentOrderComponent;
41175
+ exports["ɵru"] = TransactionFilterContentBaseComponent;
41176
+ exports["ɵrv"] = TransactionSalesOrderFilterContentLogisticsModule;
41177
+ exports["ɵrw"] = TransactionFilterHistoricStateModule;
41178
+ exports["ɵrx"] = TransactionFilterHistoricStateComponent;
41179
+ exports["ɵry"] = TransactionSalesOrderFilterContentLogisticsComponent;
41180
+ exports["ɵrz"] = TransactionSalesOrderFilterContentArticleModule;
41153
41181
  exports["ɵs"] = AppendPipe;
41154
- exports["ɵsa"] = TransactionSalesOrderFilterContentArticleModule;
41155
- exports["ɵsb"] = TransactionSalesOrderFilterContentArticleComponent;
41156
- exports["ɵsc"] = TransactionSalesOrderFilterComponent;
41157
- exports["ɵsd"] = TransactionFilterBaseComponent;
41158
- exports["ɵse"] = TransactionPurchaseOrderFilterModule;
41159
- exports["ɵsf"] = TransactionPurchaseOrderFilterContentOrderModule;
41160
- exports["ɵsg"] = TransactionPurchaseOrderFilterContentOrderComponent;
41161
- exports["ɵsh"] = TransactionPurchaseOrderFilterContentLogisticsModule;
41162
- exports["ɵsi"] = TransactionPurchaseOrderFilterContentLogisticsComponent;
41163
- exports["ɵsj"] = TransactionPurchaseOrderFilterContentArticleModule;
41164
- exports["ɵsk"] = TransactionPurchaseOrderFilterContentArticleComponent;
41165
- exports["ɵsl"] = TransactionPurchaseOrderFilterComponent;
41166
- exports["ɵsm"] = TransactionSalesQuotationFilterModule;
41167
- exports["ɵsn"] = TransactionSalesQuotationFilterContentOrderModule;
41168
- exports["ɵso"] = TransactionSalesQuotationFilterContentOrderComponent;
41169
- exports["ɵsp"] = TransactionSalesQuotationFilterContentLogisticsModule;
41170
- exports["ɵsq"] = TransactionSalesQuotationFilterContentLogisticsComponent;
41171
- exports["ɵsr"] = TransactionSalesQuotationFilterContentArticleModule;
41172
- exports["ɵss"] = TransactionSalesQuotationFilterContentArticleComponent;
41173
- exports["ɵst"] = TransactionSalesQuotationFilterComponent;
41174
- exports["ɵsu"] = SearchFeatureModule;
41175
- exports["ɵsv"] = SearchHeaderButtonsModule;
41176
- exports["ɵsw"] = SearchHeaderButtonsComponent;
41177
- exports["ɵsx"] = SearchFilterPanelModule;
41178
- exports["ɵsy"] = SearchFilterPanelComponent;
41179
- exports["ɵsz"] = SearchComponent;
41182
+ exports["ɵsa"] = TransactionSalesOrderFilterContentArticleComponent;
41183
+ exports["ɵsb"] = TransactionSalesOrderFilterComponent;
41184
+ exports["ɵsc"] = TransactionFilterBaseComponent;
41185
+ exports["ɵsd"] = TransactionPurchaseOrderFilterModule;
41186
+ exports["ɵse"] = TransactionPurchaseOrderFilterContentOrderModule;
41187
+ exports["ɵsf"] = TransactionPurchaseOrderFilterContentOrderComponent;
41188
+ exports["ɵsg"] = TransactionPurchaseOrderFilterContentLogisticsModule;
41189
+ exports["ɵsh"] = TransactionPurchaseOrderFilterContentLogisticsComponent;
41190
+ exports["ɵsi"] = TransactionPurchaseOrderFilterContentArticleModule;
41191
+ exports["ɵsj"] = TransactionPurchaseOrderFilterContentArticleComponent;
41192
+ exports["ɵsk"] = TransactionPurchaseOrderFilterComponent;
41193
+ exports["ɵsl"] = TransactionSalesQuotationFilterModule;
41194
+ exports["ɵsm"] = TransactionSalesQuotationFilterContentOrderModule;
41195
+ exports["ɵsn"] = TransactionSalesQuotationFilterContentOrderComponent;
41196
+ exports["ɵso"] = TransactionSalesQuotationFilterContentLogisticsModule;
41197
+ exports["ɵsp"] = TransactionSalesQuotationFilterContentLogisticsComponent;
41198
+ exports["ɵsq"] = TransactionSalesQuotationFilterContentArticleModule;
41199
+ exports["ɵsr"] = TransactionSalesQuotationFilterContentArticleComponent;
41200
+ exports["ɵss"] = TransactionSalesQuotationFilterComponent;
41201
+ exports["ɵst"] = SearchFeatureModule;
41202
+ exports["ɵsu"] = SearchHeaderButtonsModule;
41203
+ exports["ɵsv"] = SearchHeaderButtonsComponent;
41204
+ exports["ɵsw"] = SearchFilterPanelModule;
41205
+ exports["ɵsx"] = SearchFilterPanelComponent;
41206
+ exports["ɵsy"] = SearchComponent;
41207
+ exports["ɵsz"] = TransactionTagComponent;
41180
41208
  exports["ɵt"] = DeliveryTimePipe;
41181
- exports["ɵta"] = TransactionTagComponent;
41182
- exports["ɵtb"] = TransactionCashRegisterDialogModule;
41183
- exports["ɵtc"] = TransactionCashRegisterDialogComponent;
41184
- exports["ɵtd"] = TransactionCashRegisterOrderReceiptDialogModule;
41185
- exports["ɵte"] = TransactionCashRegisterOrderReceiptDialogComponent;
41186
- exports["ɵtf"] = TransactionCashRegisterLinkRelationModule;
41187
- exports["ɵtg"] = TransactionCashRegisterLinkRelationComponent;
41188
- exports["ɵth"] = TransactionCashRegisterPaymentDialogModule;
41189
- exports["ɵti"] = TransactionCashRegisterPaymentPinModule;
41190
- exports["ɵtj"] = TransactionCashRegisterPaymentButtonsModule;
41191
- exports["ɵtk"] = TransactionCashRegisterPaymentButtonsComponent;
41192
- exports["ɵtl"] = TransactionCashRegisterPaymentPinComponent;
41193
- exports["ɵtm"] = TransactionCashRegisterPaymentCashModule;
41194
- exports["ɵtn"] = TransactionCashRegisterPaymentCashComponent;
41195
- exports["ɵto"] = TransactionCashRegisterPaymentDoneModule;
41196
- exports["ɵtp"] = TransactionCashRegisterPaymentDoneComponent;
41197
- exports["ɵtq"] = TransactionCashRegisterPaymentMethodModule;
41198
- exports["ɵtr"] = TransactionCashRegisterPaymentMethodComponent;
41199
- exports["ɵts"] = TransactionCashRegisterPaymentDialogComponent;
41209
+ exports["ɵta"] = TransactionCashRegisterDialogModule;
41210
+ exports["ɵtb"] = TransactionCashRegisterDialogComponent;
41211
+ exports["ɵtc"] = TransactionCashRegisterOrderReceiptDialogModule;
41212
+ exports["ɵtd"] = TransactionCashRegisterOrderReceiptDialogComponent;
41213
+ exports["ɵte"] = TransactionCashRegisterLinkRelationModule;
41214
+ exports["ɵtf"] = TransactionCashRegisterLinkRelationComponent;
41215
+ exports["ɵtg"] = TransactionCashRegisterPaymentDialogModule;
41216
+ exports["ɵth"] = TransactionCashRegisterPaymentPinModule;
41217
+ exports["ɵti"] = TransactionCashRegisterPaymentButtonsModule;
41218
+ exports["ɵtj"] = TransactionCashRegisterPaymentButtonsComponent;
41219
+ exports["ɵtk"] = TransactionCashRegisterPaymentPinComponent;
41220
+ exports["ɵtl"] = TransactionCashRegisterPaymentCashModule;
41221
+ exports["ɵtm"] = TransactionCashRegisterPaymentCashComponent;
41222
+ exports["ɵtn"] = TransactionCashRegisterPaymentDoneModule;
41223
+ exports["ɵto"] = TransactionCashRegisterPaymentDoneComponent;
41224
+ exports["ɵtp"] = TransactionCashRegisterPaymentMethodModule;
41225
+ exports["ɵtq"] = TransactionCashRegisterPaymentMethodComponent;
41226
+ exports["ɵtr"] = TransactionCashRegisterPaymentDialogComponent;
41200
41227
  exports["ɵu"] = DateDurationPipe;
41201
41228
  exports["ɵv"] = LocalizePipe;
41202
41229
  exports["ɵw"] = CoCurrencyPipe;