@colijnit/transaction 256.1.35 → 256.1.36

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.
@@ -33,8 +33,8 @@
33
33
  function Version() {
34
34
  this.name = "@colijnit/transaction";
35
35
  this.description = "Colijn IT transaction package";
36
- this.symVer = "256.1.35";
37
- this.publishDate = "30-12-2024 10:44:24";
36
+ this.symVer = "256.1.36";
37
+ this.publishDate = "30-12-2024 17:58:53";
38
38
  }
39
39
  return Version;
40
40
  }());
@@ -24692,6 +24692,7 @@
24692
24692
  _this.selected = false;
24693
24693
  _this.layoutCode = layoutCode_enum.LayoutCode.OrderConfirmation;
24694
24694
  _this.showDialog = false;
24695
+ _this.LayoutCode = layoutCode_enum.LayoutCode;
24695
24696
  return _this;
24696
24697
  }
24697
24698
  Object.defineProperty(TransactionSendDocumentsComponent.prototype, "transactionTypeCategory", {
@@ -24790,7 +24791,7 @@
24790
24791
  TransactionSendDocumentsComponent.decorators = [
24791
24792
  { type: i0.Component, args: [{
24792
24793
  selector: "co-transaction-send-documents",
24793
- template: "\n <div class=\"send-documents-wrapper\" *ngIf=\"historicReports?.length > 0\">\n <div class=\"amount-send-indicator\">\n <span [textContent]=\"historicReports.length\"></span>\n </div>\n <div class=\"send-button\" [class.no-pointer]=\"historicReports.length === 0\"\n [class.selected]=\"selected\"\n (click)=\"toggleSendDocumentsDialog()\">\n <co-icon [iconData]=\"iconCacheService.getIcon(icons.FileCircleInfoSolid)\"></co-icon>\n <span [textContent]=\"'SENT' | localize\"></span>\n </div>\n <co-dialog-wizard *ngIf=\"showDialog\" (closeClick)=\"showDialog = false\">\n <ng-container header>\n <div class=\"dialog-title\" [textContent]=\"'ALREADY_SENT' | localize\"></div>\n </ng-container>\n <div class=\"dialog-container\">\n <div class=\"historic-report-line\" *ngFor=\"let report of historicReports\" (click)=\"handleShowHistoricDocumentLines(report)\">\n <co-icon [iconData]=\"iconCacheService.getIcon(getSendMethodIcon(report))\"></co-icon>\n <span [textContent]=\"report.reportId + ' ' + (layoutCode === layoutCodes.Invoice ? report.reportDocNr + ' ' : '') + (report.reportCreationDate | date)\"></span>\n </div>\n </div>\n </co-dialog-wizard>\n </div>\n ",
24794
+ template: "\n <div class=\"send-documents-wrapper\" *ngIf=\"historicReports?.length > 0\">\n <div class=\"amount-send-indicator\">\n <span [textContent]=\"historicReports.length\"></span>\n </div>\n <div class=\"send-button\" [class.no-pointer]=\"historicReports.length === 0\"\n [class.selected]=\"selected\"\n (click)=\"toggleSendDocumentsDialog()\">\n <co-icon [iconData]=\"iconCacheService.getIcon(icons.FileCircleInfoSolid)\"></co-icon>\n <span [textContent]=\"'SENT' | localize\"></span>\n </div>\n <co-dialog-wizard *ngIf=\"showDialog\" (closeClick)=\"showDialog = false\">\n <ng-container header>\n <div class=\"dialog-title\" [textContent]=\"'ALREADY_SENT' | localize\"></div>\n </ng-container>\n <div class=\"dialog-container\">\n <div class=\"historic-report-line\" *ngFor=\"let report of historicReports\" (click)=\"handleShowHistoricDocumentLines(report)\">\n <co-icon [iconData]=\"iconCacheService.getIcon(getSendMethodIcon(report))\"></co-icon>\n <span [textContent]=\"report.reportId + ' ' + (report.reportCreationDate | date)\"></span>\n <div *ngIf=\"layoutCode === layoutCodes.Invoice\" class=\"invoice-number\">\n <span [textContent]=\"'INVOICE_NUMBER' | localize\"></span>\n <span [textContent]=\"': ' + report.reportTransNr\"></span>\n </div>\n </div>\n </div>\n </co-dialog-wizard>\n </div>\n ",
24794
24795
  encapsulation: i0.ViewEncapsulation.None
24795
24796
  },] }
24796
24797
  ];
@@ -38178,7 +38179,7 @@
38178
38179
  TransactionAllocateGoodsHistoryComponent.decorators = [
38179
38180
  { type: i0.Component, args: [{
38180
38181
  selector: "co-transaction-allocate-goods-history",
38181
- template: "\n <co-transaction-history-grid\n [collection]=\"goodsAllocationHistory\"\n (deleteSelectedRow)=\"deleteRow.emit($event)\"\n >\n <co-simple-grid-column [headerText]=\"'WAREHOUSE' | localize\" [order]=\"40\">\n <ng-template #template let-row=\"row\">\n <div class=\"row-container\">\n <span class=\"row\" [textContent]=\"row.warehouseNumber\"></span>\n <span class=\"correction\" *ngFor=\"let correction of row.corrections\" [textContent]=\"correction.warehouseNumber\"></span>\n </div>\n </ng-template>\n </co-simple-grid-column>\n\n <co-simple-grid-column [headerText]=\"'LOCATION' | localize\" [order]=\"60\">\n <ng-template #template let-row=\"row\">\n <div class=\"row-container\">\n <span class=\"row\" [textContent]=\"row.locationNumber\"></span>\n <span class=\"correction\" *ngFor=\"let correction of row.corrections\" [textContent]=\"correction.locationNumber\"></span>\n </div>\n </ng-template>\n </co-simple-grid-column>\n </co-transaction-history-grid>\n ",
38182
+ template: "\n <co-transaction-history-grid\n [collection]=\"goodsAllocationHistory\"\n (deleteSelectedRow)=\"deleteRow.emit($event)\"\n >\n <co-simple-grid-column [headerText]=\"'WAREHOUSE' | localize\" [order]=\"40\">\n <ng-template #template let-row=\"row\">\n <div class=\"row-container\">\n <span class=\"row\" [textContent]=\"row.warehouseNumber\"></span>\n <span class=\"correction\" *ngFor=\"let correction of row.corrections\" [textContent]=\"correction.warehouseNumber\"></span>\n </div>\n </ng-template>\n </co-simple-grid-column>\n\n <co-simple-grid-column [headerText]=\"'LOCATION' | localize\" [order]=\"60\">\n <ng-template #template let-row=\"row\">\n <div class=\"row-container\">\n <span class=\"row\" [textContent]=\"row.locationNumber\"></span>\n <span class=\"correction\" *ngFor=\"let correction of row.corrections\" [textContent]=\"correction.locationNumber\"></span>\n </div>\n </ng-template>\n </co-simple-grid-column>\n\n <co-simple-grid-column [headerText]=\"'BATCH' | localize\" [order]=\"65\">\n <ng-template #template let-row=\"row\">\n <div class=\"row-container\">\n <span class=\"row\" [textContent]=\"row.batchNumber\"></span>\n <span class=\"correction\" *ngFor=\"let correction of row.corrections\" [textContent]=\"correction.batchNumber\"></span>\n </div>\n </ng-template>\n </co-simple-grid-column>\n\n <co-simple-grid-column [headerText]=\"'SERIES' | localize\" [order]=\"66\">\n <ng-template #template let-row=\"row\">\n <div class=\"row-container\">\n <span class=\"row\" [textContent]=\"row.serialNr\"></span>\n <span class=\"correction\" *ngFor=\"let correction of row.corrections\" [textContent]=\"correction.serialNr\"></span>\n </div>\n </ng-template>\n </co-simple-grid-column>\n </co-transaction-history-grid>\n ",
38182
38183
  encapsulation: i0.ViewEncapsulation.None
38183
38184
  },] }
38184
38185
  ];