@colijnit/transaction 12.1.53 → 12.1.55

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.
@@ -1,3 +1,4 @@
1
+ import { EventEmitter } from "@angular/core";
1
2
  import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
2
3
  import { Icon } from "../../enum/icon.enum";
3
4
  import { IconCacheService } from "../../service/icon-cache.service";
@@ -13,7 +14,8 @@ export declare class TransactionConfirmationDetailsComponent {
13
14
  showClass(): boolean;
14
15
  showAddOrder: boolean;
15
16
  newDocBatchArray: DocDeliveryBatch;
17
+ docBatchSaved: EventEmitter<boolean>;
16
18
  constructor(iconCacheService: IconCacheService, transactionService: TransactionService);
17
19
  addButtonClicked(): void;
18
- handleOkClick(): void;
20
+ handleOkClick(): Promise<void>;
19
21
  }
@@ -12,7 +12,10 @@ export declare class TransactionConfirmationHistoryComponent implements OnInit {
12
12
  transactionLines: TransactionLineInfo;
13
13
  transactionId: number;
14
14
  transactionInfoNr: number;
15
+ set isDocBatchSaved(data: boolean);
16
+ get isDocBatchSaved(): boolean;
15
17
  lineSelected: EventEmitter<void>;
18
+ docBatchApplied: EventEmitter<boolean>;
16
19
  getPurchasePortalLine: GetPurchasePortalLine;
17
20
  purchasePortalFilter: PurchasePortalFilters;
18
21
  showClass(): boolean;
@@ -5,6 +5,7 @@ import { TransactionTypeCategory } from "../../enum/transaction-type-category.en
5
5
  import { TransactionService } from "../../service/transaction.service";
6
6
  import { TransactionEventService } from "../../service/transaction-event.service";
7
7
  import { TransactionInfo } from "@colijnit/transactionapi/build/model/transaction-info.bo";
8
+ import { DocDeliveryBatch } from "@colijnit/transactionapi/build/model/doc-delivery-batch.bo";
8
9
  export declare class TransactionLineSidePanelPurchaseComponent implements AfterViewInit {
9
10
  private _service;
10
11
  private _transactionEventService;
@@ -16,10 +17,12 @@ export declare class TransactionLineSidePanelPurchaseComponent implements AfterV
16
17
  quantityToReceiveChange: EventEmitter<number>;
17
18
  showClass(): boolean;
18
19
  goodsReceiptStatus: GoodsReceiptStatusWithHistory;
19
- selectedLineDocBatchArray: any;
20
+ selectedLineDocBatchArray: DocDeliveryBatch;
21
+ isDocBatchSaved: boolean;
20
22
  private _transactionInfo;
21
23
  constructor(_service: TransactionService, _transactionEventService: TransactionEventService);
22
24
  ngAfterViewInit(): void;
23
25
  getGoodsReceiptStatusWithHistory(): Promise<void>;
24
26
  fillInputOnClick(data: any): void;
27
+ docBatchSaved(data: any): void;
25
28
  }
@@ -40,6 +40,18 @@
40
40
  height: $tp-transaction-tile-avatar-height;
41
41
  }
42
42
 
43
+ .status-bar-wrapper {
44
+ position: absolute;
45
+ top: 0;
46
+ right: 0;
47
+ }
48
+
49
+ .total-price-vat {
50
+ position: absolute;
51
+ top: 17px;
52
+ right: 0;
53
+ }
54
+
43
55
  .label {
44
56
  font-size: $tp-transaction-tile-font-size-small;
45
57
  }
@@ -92,6 +104,7 @@
92
104
  flex-direction: column;
93
105
  align-items: flex-end;
94
106
  row-gap: 3px;
107
+ position: relative;
95
108
  }
96
109
 
97
110
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transaction",
3
- "version": "12.1.53",
3
+ "version": "12.1.55",
4
4
  "description": "Colijn IT transaction module for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {