@colijnit/transaction 12.1.22 → 12.1.25

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 (100) hide show
  1. package/bundles/colijnit-transaction.umd.js +831 -185
  2. package/bundles/colijnit-transaction.umd.js.map +1 -1
  3. package/colijnit-transaction-12.1.25.tgz +0 -0
  4. package/colijnit-transaction.d.ts +144 -134
  5. package/colijnit-transaction.metadata.json +1 -1
  6. package/esm2015/colijnit-transaction.js +145 -135
  7. package/esm2015/lib/component/checkout/checkout.component.js +7 -9
  8. package/esm2015/lib/component/checkout/checkout.module.js +2 -2
  9. package/esm2015/lib/component/status-bar/status-bar.component.js +37 -0
  10. package/esm2015/lib/component/status-bar/status-bar.module.js +21 -0
  11. package/esm2015/lib/component/transaction/transaction.component.js +14 -7
  12. package/esm2015/lib/component/transaction/transaction.module.js +4 -2
  13. package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.js +1 -1
  14. package/esm2015/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.js +33 -7
  15. package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +6 -2
  16. package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.js +7 -4
  17. package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-date.component.js +80 -0
  18. package/esm2015/lib/component/transaction-header-fields/transaction-header-fields-base.component.js +27 -0
  19. package/esm2015/lib/component/transaction-line/transaction-line.component.js +6 -2
  20. package/esm2015/lib/component/transaction-line/transaction-line.module.js +4 -2
  21. package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-code.component.js +4 -1
  22. package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.component.js +4 -1
  23. package/esm2015/lib/component/transaction-line-fields/transaction-line-description.component.js +81 -0
  24. package/esm2015/lib/component/transaction-line-fields/transaction-line-description.module.js +23 -0
  25. package/esm2015/lib/component/transaction-line-fields/transaction-line-fields-base.component.js +17 -2
  26. package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier.component.js +57 -0
  27. package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier.module.js +23 -0
  28. package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +9 -8
  29. package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.js +8 -3
  30. package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.js +6 -2
  31. package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +16 -16
  32. package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +18 -5
  33. package/esm2015/lib/component/transaction-search/service/transaction-search.service.js +20 -9
  34. package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.js +59 -53
  35. package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.js +4 -3
  36. package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.js +61 -52
  37. package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.js +4 -3
  38. package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.js +2 -2
  39. package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +22 -7
  40. package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +4 -3
  41. package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.js +42 -33
  42. package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.js +4 -2
  43. package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.js +43 -35
  44. package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.js +3 -1
  45. package/esm2015/lib/component/transaction-search/transaction-search.component.js +21 -20
  46. package/esm2015/lib/component/transaction-tile/transaction-tile.component.js +132 -0
  47. package/esm2015/lib/component/transaction-tile/transaction-tile.module.js +28 -0
  48. package/esm2015/lib/enum/icon.enum.js +4 -1
  49. package/esm2015/lib/model/icon-svg.js +4 -1
  50. package/esm2015/lib/service/pending-reason.service.js +44 -1
  51. package/esm2015/lib/service/transaction-connector.service.js +30 -1
  52. package/esm2015/lib/service/transaction.service.js +16 -1
  53. package/fesm2015/colijnit-transaction.js +982 -281
  54. package/fesm2015/colijnit-transaction.js.map +1 -1
  55. package/lib/component/avatar/style/_layout.scss +11 -0
  56. package/lib/component/core/image-display/style/_layout.scss +1 -0
  57. package/lib/component/payment-qr-code/style/_layout.scss +2 -3
  58. package/lib/component/status-bar/status-bar.component.d.ts +8 -0
  59. package/lib/component/status-bar/status-bar.module.d.ts +2 -0
  60. package/lib/component/status-bar/style/_layout.scss +14 -0
  61. package/lib/component/status-bar/style/_material-definition.scss +5 -0
  62. package/lib/component/status-bar/style/_theme.scss +15 -0
  63. package/lib/component/status-bar/style/material.scss +3 -0
  64. package/lib/component/transaction/style/_layout.scss +18 -0
  65. package/lib/component/transaction-grid/transaction-history-grid/style/_layout.scss +14 -0
  66. package/lib/component/transaction-header/transaction-header-delivery/style/_layout.scss +6 -0
  67. package/lib/component/transaction-header-fields/transaction-header-delivery-date.component.d.ts +17 -0
  68. package/lib/component/transaction-header-fields/transaction-header-fields-base.component.d.ts +8 -0
  69. package/lib/component/transaction-line/style/_layout.scss +6 -0
  70. package/lib/component/transaction-line-fields/transaction-line-commission-code.component.d.ts +1 -0
  71. package/lib/component/transaction-line-fields/transaction-line-delivery-date.component.d.ts +1 -0
  72. package/lib/component/transaction-line-fields/transaction-line-description.component.d.ts +17 -0
  73. package/lib/component/transaction-line-fields/transaction-line-description.module.d.ts +2 -0
  74. package/lib/component/transaction-line-fields/transaction-line-fields-base.component.d.ts +5 -0
  75. package/lib/component/transaction-line-fields/transaction-line-supplier.component.d.ts +14 -0
  76. package/lib/component/transaction-line-fields/transaction-line-supplier.module.d.ts +2 -0
  77. package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +2 -3
  78. package/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.d.ts +2 -0
  79. package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +4 -4
  80. package/lib/component/transaction-receiving-goods-history/style/_layout.scss +13 -0
  81. package/lib/component/transaction-search/service/transaction-search.service.d.ts +6 -3
  82. package/lib/component/transaction-search/style/_layout.scss +1 -0
  83. package/lib/component/transaction-search/style/_material-definition.scss +12 -5
  84. package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.d.ts +1 -0
  85. package/lib/component/transaction-search/transaction-search-header/style/_layout.scss +1 -0
  86. package/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.d.ts +1 -1
  87. package/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.d.ts +3 -1
  88. package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_layout.scss +103 -71
  89. package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_theme.scss +21 -19
  90. package/lib/component/transaction-tile/style/_layout.scss +162 -0
  91. package/lib/component/transaction-tile/style/_material-definition.scss +0 -0
  92. package/lib/component/transaction-tile/style/_theme.scss +7 -0
  93. package/lib/component/transaction-tile/style/material.scss +3 -0
  94. package/lib/component/transaction-tile/transaction-tile.component.d.ts +23 -0
  95. package/lib/component/transaction-tile/transaction-tile.module.d.ts +2 -0
  96. package/lib/enum/icon.enum.d.ts +3 -0
  97. package/lib/service/pending-reason.service.d.ts +5 -0
  98. package/lib/service/transaction-connector.service.d.ts +3 -0
  99. package/lib/service/transaction.service.d.ts +1 -0
  100. package/package.json +1 -1
@@ -17,5 +17,16 @@
17
17
  fill: white;
18
18
  }
19
19
  }
20
+
21
+ .co-image-display {
22
+ width: 30px;
23
+ height: 30px;
24
+ overflow: hidden;
25
+ border-radius: 50px;
26
+
27
+ .image {
28
+ object-fit: cover;
29
+ }
30
+ }
20
31
  }
21
32
  }
@@ -37,6 +37,7 @@
37
37
  }
38
38
  .no-image-label {
39
39
  font-size: $tp-image-display-no-image-label-font-size;
40
+ text-align: center;
40
41
  }
41
42
  }
42
43
 
@@ -9,9 +9,8 @@
9
9
  justify-content: center;
10
10
  height: 100%;
11
11
  img {
12
- max-height: 100%;
13
- max-width: 100%;
14
- width: auto;
12
+ max-height: 75vh;
13
+ width: fit-content;
15
14
  }
16
15
  }
17
16
  }
@@ -0,0 +1,8 @@
1
+ import { Icon } from "../../enum/icon.enum";
2
+ import { IconCacheService } from "../../service/icon-cache.service";
3
+ export declare class StatusBarComponent {
4
+ iconCacheService: IconCacheService;
5
+ readonly icons: typeof Icon;
6
+ showClass(): boolean;
7
+ constructor(iconCacheService: IconCacheService);
8
+ }
@@ -0,0 +1,2 @@
1
+ export declare class StatusBarModule {
2
+ }
@@ -0,0 +1,14 @@
1
+ @include export-module('cc-status-bar-layout') {
2
+ .co-status-bar {
3
+ .status-bar-icons-wrapper {
4
+ display: flex;
5
+ flex-direction: row;
6
+ column-gap: 2px;
7
+ }
8
+
9
+ co-icon {
10
+ height: $tp-status-bar-icon-height;
11
+ width: $tp-status-bar-icon-width;
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,5 @@
1
+ $tp-status-bar-icon-width: 0.8rem !default;
2
+ $tp-status-bar-icon-height: 0.8rem !default;
3
+ $tp-status-bar-icon-color: $tp-color-grey !default;
4
+ $tp-status-bar-icon-active-color: $tp-color-active-light !default;
5
+ $tp-status-bar-icon-warning-color: $tp-color-warning !default;
@@ -0,0 +1,15 @@
1
+ @include export-module('cc-status-bar-theme') {
2
+ .co-status-bar {
3
+ co-icon {
4
+ fill: $tp-status-bar-icon-color;
5
+
6
+ &.color-green {
7
+ fill: $tp-status-bar-icon-active-color;
8
+ }
9
+
10
+ &.color-orange {
11
+ fill: $tp-status-bar-icon-warning-color;
12
+ }
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,3 @@
1
+ @import "./material-definition";
2
+ @import "./layout";
3
+ @import "./theme";
@@ -28,5 +28,23 @@
28
28
  justify-content: space-between;
29
29
  }
30
30
  }
31
+ .transaction-tiles-wrapper {
32
+ display: grid;
33
+ grid-template-columns: repeat(4, 1fr);
34
+ grid-column-gap: 5px;
35
+ grid-row-gap: 5px;
36
+
37
+ @media(max-width: 1500px) {
38
+ grid-template-columns: repeat(3, 1fr);
39
+ }
40
+
41
+ @media(max-width: 1200px) {
42
+ grid-template-columns: repeat(2, 1fr);
43
+ }
44
+
45
+ @media(max-width: 900px) {
46
+ grid-template-columns: repeat(1, 1fr);
47
+ }
48
+ }
31
49
  }
32
50
  }
@@ -11,5 +11,19 @@
11
11
  display: flex;
12
12
  justify-content: flex-end;
13
13
  }
14
+
15
+ .row-container {
16
+ display: flex;
17
+ flex-direction: column;
18
+
19
+ .row {
20
+
21
+ }
22
+
23
+ .correction {
24
+ margin-top: 8px;
25
+ color: #DB2C2C ;
26
+ }
27
+ }
14
28
  }
15
29
  }
@@ -29,6 +29,12 @@
29
29
  height: 15px;
30
30
  }
31
31
  }
32
+ .header-delivery-deliverydate {
33
+ .co-input-date {
34
+ height: auto;
35
+ padding: 0;
36
+ }
37
+ }
32
38
  .transaction-header-block-content-third {
33
39
  display: flex;
34
40
  flex-direction: column;
@@ -0,0 +1,17 @@
1
+ import { InputDatePickerComponent } from "@colijnit/corecomponents_v12";
2
+ import { TransactionService } from "../../service/transaction.service";
3
+ import { TransactionHeaderFieldsBaseComponent } from "./transaction-header-fields-base.component";
4
+ export declare class TransactionHeaderDeliveryDateComponent extends TransactionHeaderFieldsBaseComponent {
5
+ private _transactionService;
6
+ set child(content: any);
7
+ showLabel: boolean;
8
+ defaultEditMode: boolean;
9
+ set editMode(value: boolean);
10
+ get editMode(): boolean;
11
+ handleClick(event: MouseEvent): void;
12
+ input: InputDatePickerComponent;
13
+ private _editMode;
14
+ constructor(_transactionService: TransactionService);
15
+ commitDeliveryDate(date: Date): Promise<boolean>;
16
+ protected transactionInfoSet(): void;
17
+ }
@@ -0,0 +1,8 @@
1
+ import { TransactionInfo } from "@colijnit/transactionapi/build/model/transaction-info.bo";
2
+ export declare abstract class TransactionHeaderFieldsBaseComponent {
3
+ set transactionInfo(value: TransactionInfo);
4
+ get transactionInfo(): TransactionInfo;
5
+ readonly: boolean;
6
+ private _transactionInfo;
7
+ protected transactionInfoSet(): void;
8
+ }
@@ -172,6 +172,12 @@
172
172
  }
173
173
  .transaction-line-description-description {
174
174
  font-weight: bold;
175
+ co-input-text {
176
+ height: auto;
177
+ input {
178
+ margin-top: 0;
179
+ }
180
+ }
175
181
  }
176
182
  .transaction-line-description-sku {
177
183
  }
@@ -9,4 +9,5 @@ export declare class TransactionLineCommissionCodeComponent extends TransactionL
9
9
  constructor(_transactionService: TransactionService);
10
10
  ngOnInit(): void;
11
11
  commitCommissionCode(code: string): Promise<boolean>;
12
+ protected transactionLineSet(): void;
12
13
  }
@@ -4,4 +4,5 @@ export declare class TransactionLineDeliveryDateComponent extends TransactionLin
4
4
  private _transactionService;
5
5
  constructor(_transactionService: TransactionService);
6
6
  commitDeliveryDate(date: Date): Promise<boolean>;
7
+ protected transactionInfoSet(): void;
7
8
  }
@@ -0,0 +1,17 @@
1
+ import { InputTextComponent } from "@colijnit/corecomponents_v12";
2
+ import { TransactionLineFieldsBaseComponent } from "./transaction-line-fields-base.component";
3
+ import { TransactionService } from "../../service/transaction.service";
4
+ export declare class TransactionLineDescriptionComponent extends TransactionLineFieldsBaseComponent {
5
+ private _transactionService;
6
+ set child(content: any);
7
+ showLabel: boolean;
8
+ defaultEditMode: boolean;
9
+ set editMode(value: boolean);
10
+ get editMode(): boolean;
11
+ handleClick(event: MouseEvent): void;
12
+ input: InputTextComponent;
13
+ private _editMode;
14
+ constructor(_transactionService: TransactionService);
15
+ commitDescription(description: string): Promise<boolean>;
16
+ protected transactionLineSet(): void;
17
+ }
@@ -0,0 +1,2 @@
1
+ export declare class TransactionLineDescriptionModule {
2
+ }
@@ -1,8 +1,13 @@
1
1
  import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
2
+ import { TransactionInfo } from "@colijnit/transactionapi/build/model/transaction-info.bo";
2
3
  export declare abstract class TransactionLineFieldsBaseComponent {
3
4
  set transactionLine(value: TransactionLineInfo);
4
5
  get transactionLine(): TransactionLineInfo;
6
+ set transactionInfo(value: TransactionInfo);
7
+ get transactionInfo(): TransactionInfo;
5
8
  readonly: boolean;
6
9
  private _transactionLine;
10
+ private _transactionInfo;
7
11
  protected transactionLineSet(): void;
12
+ protected transactionInfoSet(): void;
8
13
  }
@@ -0,0 +1,14 @@
1
+ import { OnInit } from "@angular/core";
2
+ import { TransactionLineFieldsBaseComponent } from "./transaction-line-fields-base.component";
3
+ import { TransactionService } from "../../service/transaction.service";
4
+ import { RelationListObject } from "@colijnit/transactionapi/build/model/relation-list-object.bo";
5
+ export declare class TransactionLineSupplierComponent extends TransactionLineFieldsBaseComponent implements OnInit {
6
+ private _transactionService;
7
+ data: RelationListObject[];
8
+ fields: Object;
9
+ tempSupplier: string;
10
+ constructor(_transactionService: TransactionService);
11
+ ngOnInit(): void;
12
+ commitSupplier(code: string): Promise<boolean>;
13
+ protected transactionLineSet(): void;
14
+ }
@@ -0,0 +1,2 @@
1
+ export declare class TransactionLineSupplierModule {
2
+ }
@@ -6,6 +6,7 @@ import { TransactionKind } from "@colijnit/transactionapi/build/enum/transaction
6
6
  import { TransactionTypeCategory } from "../../enum/transaction-type-category.enum";
7
7
  import { TransactionService } from "../../service/transaction.service";
8
8
  import { TransactionEventService } from "../../service/transaction-event.service";
9
+ import { TransactionInfo } from "@colijnit/transactionapi/build/model/transaction-info.bo";
9
10
  export declare class TransactionLineSidePanelComponent {
10
11
  iconService: IconCacheService;
11
12
  private _service;
@@ -13,12 +14,10 @@ export declare class TransactionLineSidePanelComponent {
13
14
  readonly icons: typeof Icon;
14
15
  readonly categories: typeof TransactionTypeCategory;
15
16
  readonly transactionTypes: typeof TransactionKind;
16
- transactionType: TransactionKind;
17
17
  transactionLine: TransactionLineInfo;
18
- transactionId: number;
18
+ transactionInfo: TransactionInfo;
19
19
  activeCategory: TransactionTypeCategory;
20
20
  cancelClick: EventEmitter<MouseEvent>;
21
- transactionInfoNr: number;
22
21
  showClass(): boolean;
23
22
  quantityToReceive: number;
24
23
  constructor(iconService: IconCacheService, _service: TransactionService, _transactionEventService: TransactionEventService);
@@ -3,12 +3,14 @@ import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transa
3
3
  import { Icon } from "../../enum/icon.enum";
4
4
  import { IconCacheService } from "../../service/icon-cache.service";
5
5
  import { TransactionService } from "../../service/transaction.service";
6
+ import { TransactionInfo } from "@colijnit/transactionapi/build/model/transaction-info.bo";
6
7
  export declare class TransactionLineSidePanelDefaultComponent {
7
8
  iconService: IconCacheService;
8
9
  private _transactionService;
9
10
  readonly icons: typeof Icon;
10
11
  set transactionLine(value: TransactionLineInfo);
11
12
  get transactionLine(): TransactionLineInfo;
13
+ transactionInfo: TransactionInfo;
12
14
  cancelClick: EventEmitter<MouseEvent>;
13
15
  showClass(): boolean;
14
16
  data: any[];
@@ -4,19 +4,19 @@ import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transa
4
4
  import { TransactionTypeCategory } from "../../enum/transaction-type-category.enum";
5
5
  import { TransactionService } from "../../service/transaction.service";
6
6
  import { TransactionEventService } from "../../service/transaction-event.service";
7
+ import { TransactionInfo } from "@colijnit/transactionapi/build/model/transaction-info.bo";
7
8
  export declare class TransactionLineSidePanelPurchaseComponent {
8
9
  private _service;
9
10
  private _transactionEventService;
10
11
  readonly categories: typeof TransactionTypeCategory;
12
+ set transactionInfo(value: TransactionInfo);
13
+ get transactionInfo(): TransactionInfo;
11
14
  transactionLine: TransactionLineInfo;
12
- set transactionId(value: number);
13
- get transactionId(): number;
14
15
  category: TransactionTypeCategory;
15
- transactionInfoNr: number;
16
16
  quantityToReceiveChange: EventEmitter<number>;
17
17
  showClass(): boolean;
18
18
  goodsReceiptStatus: GoodsReceiptStatusWithHistory;
19
- private _transactionId;
19
+ private _transactionInfo;
20
20
  constructor(_service: TransactionService, _transactionEventService: TransactionEventService);
21
21
  getGoodsReceiptStatusWithHistory(): Promise<void>;
22
22
  }
@@ -3,5 +3,18 @@
3
3
  @include export-module('co-transaction-receiving-goods-history') {
4
4
  .co-transaction-receiving-goods-history {
5
5
 
6
+ .row-container {
7
+ display: flex;
8
+ flex-direction: column;
9
+
10
+ .row {
11
+
12
+ }
13
+
14
+ .correction {
15
+ margin-top: 8px;
16
+ color: #DB2C2C;
17
+ }
18
+ }
6
19
  }
7
20
  }
@@ -4,19 +4,22 @@ import { TransactionService } from "../../../service/transaction.service";
4
4
  export declare class TransactionSearchService {
5
5
  private _transactionService;
6
6
  searchRequest: TransactionSearchViewRequest;
7
+ previousSearchRequest: TransactionSearchViewRequest;
7
8
  transactions: TransactionSearchView[];
8
9
  set transactionType(value: string);
9
10
  get transactionType(): string;
10
11
  labelBasedOnTransactionType: Map<string, string>;
11
12
  transactionsPerPage: number;
12
13
  resultCount: number;
13
- get showcasePage(): number;
14
- set showcasePage(value: number);
15
- private _showcasePage;
14
+ get currentPage(): number;
15
+ set currentPage(value: number);
16
+ private _currentPage;
16
17
  private _transactionType;
17
18
  constructor(_transactionService: TransactionService);
18
19
  searchTransactions(): void;
19
20
  getLabelBasedOnTransactionType(): string;
20
21
  resetFilters(): void;
21
22
  private _resetRequest;
23
+ setPreviousSearchRequest(): void;
24
+ isNewGeneralSearch(): boolean;
22
25
  }
@@ -4,6 +4,7 @@
4
4
  .co-transaction-search {
5
5
  font-family: $tp-co-transaction-search-font-family;
6
6
  font-size: $tp-co-transaction-search-font-size;
7
+ display: flex;
7
8
 
8
9
  .transaction-search-wrapper {
9
10
  display: flex;
@@ -47,8 +47,9 @@ $tp-co-transaction-search-filter-button-size: 50px !default;
47
47
  $tp-co-transaction-search-filter-button-border-radius: 5px !default;
48
48
 
49
49
  $tp-co-transaction-search-result-width: 100% !default;
50
- $tp-co-transaction-search-result-wrapper-padding: 10px !default;
50
+ $tp-co-transaction-search-result-wrapper-padding: 0 10px !default;
51
51
  $tp-co-transaction-search-result-upper-header-padding-left: 27px !default;
52
+ $tp-co-transaction-search-result-upper-header-height: 20px !default;
52
53
  $tp-co-transaction-search-result-header-buttons-wrapper-padding: 0 27px !default;
53
54
  $tp-co-transaction-search-result-header-sidebar-button-size: 21px !default;
54
55
 
@@ -58,6 +59,9 @@ $tp-co-transaction-search-input-text-label-margin-left: 5% !default;
58
59
 
59
60
  $tp-co-transaction-search-view-modes-wrapper-padding: 0 35px !default;
60
61
 
62
+ $tp-transaction-tile-background-color: $tp-color-light !default;
63
+ $tp-transaction-tile-background-color-hover: $tp-color-less-light !default;
64
+ $tp-transaction-tile-background-color-selected: #F0F5FF !default;
61
65
  $tp-transaction-tiles-wrapper-padding: 20px !default;
62
66
  $tp-transaction-tiles-wrapper-row-gap: 5px !default;
63
67
  $tp-transaction-tiles-wrapper-width: 100% !default;
@@ -65,8 +69,11 @@ $tp-transaction-tiles-wrapper-height: 100% !default;
65
69
  $tp-transaction-tiles-wrapper-column-gap: 5px !default;
66
70
  $tp-transaction-tile-font-family: $tp-font-family !default;
67
71
  $tp-transaction-tile-font-size: $tp-font-size !default;
68
- $tp-transaction-tile-height: 150px !default;
72
+ $tp-transaction-tile-height: 190px !default;
73
+ $tp-transaction-tile-content-height: 175px !default;
74
+ $tp-transaction-tile-body-height: 100px !default;
69
75
  $tp-transaction-tile-width: 300px !default;
76
+ $tp-transaction-tile-width-mobile: 85 vw !default;
70
77
  $tp-transaction-tile-padding: 10px 15px !default;
71
78
  $tp-transaction-tile-row-gap: 10px !default;
72
79
  $tp-transaction-tile-column-gap: 10px !default;
@@ -77,6 +84,8 @@ $tp-transaction-tile-header-font-size: $tp-font-size !default;
77
84
  $tp-transaction-tile-header-font-weight: bold !default;
78
85
  $tp-transaction-tile-header-font-color: $tp-color-font !default;
79
86
  $tp-transaction-tile-footer-border-color: $tp-transaction-tile-font-color !default;
87
+ $tp-transaction-tile-footer-padding: 10px 0 !default;
88
+ $tp-transaction-tile-footer-middle-section-padding: 0 15px !default;
80
89
  $tp-transaction-tile-value-height: 20px !default;
81
90
  $tp-transaction-tile-border-color: $tp-color-border !default;
82
91
  $tp-transaction-tile-button-color: $tp-color-active-light !default;
@@ -90,8 +99,6 @@ $tp-transaction-tile-icon-width: 1.2rem !default;
90
99
  $tp-transaction-tile-icon-height: 1.2rem !default;
91
100
  $tp-transaction-tile-icon-active-color: $tp-color-active !default;
92
101
  $tp-transaction-tile-icon-inactive-color: $tp-color-font !default;
102
+ $tp-transaction-tile-line-height: 15px !default;
93
103
 
94
- $tp-transaction-tile-background-color: $tp-color-light !default;
95
- $tp-transaction-tile-hover-background-color: $tp-color-less-light !default;
96
- $tp-transaction-tile-selected-background-color: #F0F5FF !default;
97
104
 
@@ -4,4 +4,5 @@ export declare class TransactionSearchSalesOrderGridComponent extends Transactio
4
4
  searchService: TransactionSearchService;
5
5
  showClass(): boolean;
6
6
  constructor(searchService: TransactionSearchService);
7
+ onTransactionClick(event: any): void;
7
8
  }
@@ -9,6 +9,7 @@
9
9
  .upper-header {
10
10
  display: flex;
11
11
  justify-content: flex-end;
12
+ height: $tp-co-transaction-search-result-upper-header-height;
12
13
  padding-left: $tp-co-transaction-search-result-upper-header-padding-left;
13
14
 
14
15
  .header-buttons-wrapper {
@@ -2,9 +2,9 @@ import { EventEmitter } from "@angular/core";
2
2
  import { ContentViewMode } from "../../../enum/content-view-mode.enum";
3
3
  import { Icon } from "../../../enum/icon.enum";
4
4
  import { SearchViewMode } from "../../../enum/search-view-mode.enum";
5
+ import { DictionaryService } from "../../../service/dictionary.service";
5
6
  import { IconCacheService } from "../../../service/icon-cache.service";
6
7
  import { TransactionSearchService } from "../service/transaction-search.service";
7
- import { DictionaryService } from "../../../service/dictionary.service";
8
8
  export declare class TransactionSearchHeaderComponent {
9
9
  searchService: TransactionSearchService;
10
10
  iconCacheService: IconCacheService;
@@ -26,5 +26,7 @@ export declare class TransactionSearchResultComponent implements OnInit {
26
26
  onResizeClick(): void;
27
27
  onCloseClick(): void;
28
28
  onFilterClick(): void;
29
- onPaginationPageChange(pageNr: number): void;
29
+ onPreviousClick(): void;
30
+ onNextClick(): void;
31
+ onPageClick(pageNr: number): void;
30
32
  }