@colijnit/transaction 300.1.13 → 300.1.15

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 (16) hide show
  1. package/fesm2022/colijnit-transaction.mjs +2611 -2556
  2. package/fesm2022/colijnit-transaction.mjs.map +1 -1
  3. package/index.d.ts +10 -3
  4. package/lib/component/transaction-header/transaction-header-customer-portal/style/_layout.scss +19 -0
  5. package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
  6. package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
  7. package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
  8. package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
  9. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
  10. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
  11. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
  12. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
  13. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
  14. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
  15. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
  16. package/package.json +4 -4
package/index.d.ts CHANGED
@@ -340,13 +340,13 @@ import { ContactOption } from '@colijnit/relationapi/build/model/contact-option.
340
340
  import { DepositPayment } from '@colijnit/transactionapi/build/model/deposit-payment.bo';
341
341
  import * as i4$1 from '@colijnit/catalog';
342
342
  import { CatalogService, CatalogEventService, ExternalSourceViewmodel } from '@colijnit/catalog';
343
- import { ExternalSource } from '@colijnit/articleapi/build/model/external-source.bo';
344
343
  import { CatalogDefinition } from '@colijnit/articleapi/build/model/catalog-definition.bo';
345
344
  import { ArticleListObjectExtended } from '@colijnit/articleapi/build/model/article-list-object-extended.bo';
346
345
  import * as i7 from '@colijnit/product';
347
346
  import { ProductConnectorAdapterService } from '@colijnit/product';
348
347
  import { ExternalSourceArticleClickInterface } from '@colijnit/articleapi/build/interface/external-source-article-click.interface';
349
348
  import { ExternalSourceArticleAddInterface } from '@colijnit/articleapi/build/interface/external-source-article-add.interface';
349
+ import { ExternalSourceInfo } from '@colijnit/articleapi/build/model/external-source-info.bo';
350
350
  import { ServiceWizardQuestion } from '@colijnit/transactionapi/build/model/service-wizard-question';
351
351
  import { ServiceWizardAnswer } from '@colijnit/transactionapi/build/model/service-wizard-answer';
352
352
  import { PriorityType } from '@colijnit/mainapi/build/enum/priority-type.enum';
@@ -7329,7 +7329,7 @@ declare class DialogCatalogComponent implements OnInit, OnDestroy {
7329
7329
  settingsSet: boolean;
7330
7330
  externalCatalogName: string;
7331
7331
  showExternalCatalog: boolean;
7332
- externalSource: ExternalSource;
7332
+ externalSource: ExternalSourceInfo;
7333
7333
  catalogDefinition: CatalogDefinition;
7334
7334
  articleForStock: ArticleExtended;
7335
7335
  showStock: boolean;
@@ -16682,6 +16682,7 @@ declare class TransactionHeaderCustomerPortalComponent {
16682
16682
  transactionHeaderService: TransactionHeaderService;
16683
16683
  protected transactionService: TransactionService;
16684
16684
  private _transactionConnectorService;
16685
+ private _paymentConnectorService;
16685
16686
  readonly cfgNames: typeof TransactionCfgName;
16686
16687
  readonly icons: typeof Icon;
16687
16688
  set transaction(value: TransactionInfoResponse);
@@ -16691,10 +16692,16 @@ declare class TransactionHeaderCustomerPortalComponent {
16691
16692
  showPlanningDialog: boolean;
16692
16693
  isPurchaseOrder: boolean;
16693
16694
  canPlanDelivery: boolean;
16695
+ paidDown: number;
16696
+ settled: number;
16697
+ depositAmount: number;
16698
+ depositSettled: number;
16699
+ depositRemainder: number;
16694
16700
  private _transaction;
16695
- constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionService: TransactionService, _transactionConnectorService: TransactionConnectorService);
16701
+ constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionService: TransactionService, _transactionConnectorService: TransactionConnectorService, _paymentConnectorService: TransactionPaymentConnectorService);
16696
16702
  checkCanPlanDelivery(): void;
16697
16703
  get transactionTotal(): TransactionTotal;
16704
+ getDepositInfo(): void;
16698
16705
  getWeekNumber(dateInput: Date | string | null | undefined): string;
16699
16706
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderCustomerPortalComponent, never>;
16700
16707
  static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderCustomerPortalComponent, "co-transaction-header-customer-portal", never, { "transaction": { "alias": "transaction"; "required": false; }; "showPreferredPlanning": { "alias": "showPreferredPlanning"; "required": false; }; }, {}, never, never, false, never>;
@@ -118,6 +118,25 @@
118
118
  gap: 10px;
119
119
  justify-content: space-between;
120
120
  }
121
+ .summary {
122
+ &.total {
123
+ border-top: 1px solid #ccc;
124
+ padding-top: 10px;
125
+ }
126
+ }
127
+ .deposit-wrapper {
128
+ display: flex;
129
+ flex-direction: column;
130
+ padding: 5px 0;
131
+ .total-label {
132
+ font-weight: 600;
133
+ }
134
+ .summary {
135
+ display: flex;
136
+ width: 100%;
137
+ justify-content: space-between;
138
+ }
139
+ }
121
140
  }
122
141
  .totals-summary {
123
142
  &:hover {
@@ -1,78 +1,78 @@
1
- @include export-module('co-transaction-line-interbranch-receive-goods-layout') {
2
- .co-transaction-line-interbranch-receive-goods {
3
- .columns-wrapper {
4
- display: flex;
5
- }
6
-
7
- .co-input-number-picker {
8
- width: 140px;
9
- }
10
-
11
- .details-column {
12
- width: 45%;
13
- display: flex;
14
- flex-direction: column;
15
-
16
- .transaction-line-totals-amount {
17
- margin: 5px;
18
- }
19
-
20
- //.amount-number-picker {
21
- // height: 40px;
22
- // margin: 5px;
23
- //}
24
- }
25
-
26
- .header-wrapper {
27
- display: flex;
28
- align-items: center;
29
- justify-content: space-between;
30
- margin: $tp-co-transaction-line-receive-goods-title-margin;
31
-
32
- .details-header {
33
- font-size: $tp-co-transaction-line-receive-goods-title-font-size;
34
- font-weight: bold;
35
- }
36
- }
37
-
38
- .divider-wrapper {
39
- display: flex;
40
- width: 10%;
41
- justify-content: center;
42
- visibility: hidden;
43
-
44
- .divider {
45
- border-left: 1px solid;
46
- border-color: $tp-color-border;
47
- margin: 5px; // $tp-co-transaction-request-details-input-margin;
48
- }
49
- }
50
-
51
- .details-input {
52
- margin: 5px; // $tp-co-transaction-request-details-input-margin;
53
- }
54
-
55
- .location-wrapper {
56
- position: relative;
57
-
58
- .co-transaction-button {
59
- width: auto;
60
- margin: 5px;
61
- }
62
- }
63
- .disabled {
64
- cursor: default;
65
- opacity: 0.6;
66
- }
67
- .clickable {
68
- cursor: pointer;
69
- }
70
-
71
- .warehouse-buttons {
72
- width: 100%;
73
- .co-transaction-button {
74
- width: 100%;
75
- }
76
- }
77
- }
78
- }
1
+ @include export-module('co-transaction-line-interbranch-receive-goods-layout') {
2
+ .co-transaction-line-interbranch-receive-goods {
3
+ .columns-wrapper {
4
+ display: flex;
5
+ }
6
+
7
+ .co-input-number-picker {
8
+ width: 140px;
9
+ }
10
+
11
+ .details-column {
12
+ width: 45%;
13
+ display: flex;
14
+ flex-direction: column;
15
+
16
+ .transaction-line-totals-amount {
17
+ margin: 5px;
18
+ }
19
+
20
+ //.amount-number-picker {
21
+ // height: 40px;
22
+ // margin: 5px;
23
+ //}
24
+ }
25
+
26
+ .header-wrapper {
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ margin: $tp-co-transaction-line-receive-goods-title-margin;
31
+
32
+ .details-header {
33
+ font-size: $tp-co-transaction-line-receive-goods-title-font-size;
34
+ font-weight: bold;
35
+ }
36
+ }
37
+
38
+ .divider-wrapper {
39
+ display: flex;
40
+ width: 10%;
41
+ justify-content: center;
42
+ visibility: hidden;
43
+
44
+ .divider {
45
+ border-left: 1px solid;
46
+ border-color: $tp-color-border;
47
+ margin: 5px; // $tp-co-transaction-request-details-input-margin;
48
+ }
49
+ }
50
+
51
+ .details-input {
52
+ margin: 5px; // $tp-co-transaction-request-details-input-margin;
53
+ }
54
+
55
+ .location-wrapper {
56
+ position: relative;
57
+
58
+ .co-transaction-button {
59
+ width: auto;
60
+ margin: 5px;
61
+ }
62
+ }
63
+ .disabled {
64
+ cursor: default;
65
+ opacity: 0.6;
66
+ }
67
+ .clickable {
68
+ cursor: pointer;
69
+ }
70
+
71
+ .warehouse-buttons {
72
+ width: 100%;
73
+ .co-transaction-button {
74
+ width: 100%;
75
+ }
76
+ }
77
+ }
78
+ }
@@ -1,2 +1,2 @@
1
- $tp-co-transaction-line-receive-goods-title-font-size: 12px !default;
2
- $tp-co-transaction-line-receive-goods-title-margin: 0 0 10px 5px !default;
1
+ $tp-co-transaction-line-receive-goods-title-font-size: 12px !default;
2
+ $tp-co-transaction-line-receive-goods-title-margin: 0 0 10px 5px !default;
@@ -1,4 +1,4 @@
1
- @include export-module('co-transaction-line-interbranch-receive-goods-theme') {
2
- .co-transaction-line-interbranch-receive-goods {
3
- }
4
- }
1
+ @include export-module('co-transaction-line-interbranch-receive-goods-theme') {
2
+ .co-transaction-line-interbranch-receive-goods {
3
+ }
4
+ }
@@ -1,4 +1,4 @@
1
- @import "../../../style/mixin";
2
- @import "./_material-definition";
3
- @import "./_layout";
4
- @import "./_theme";
1
+ @import "../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -1,27 +1,27 @@
1
- @use "sass:math";
2
- @import "../../../../style/mixin";
3
-
4
- @include export-module('co-transaction-quick-access-interbranch-order-purchase-layout') {
5
- .co-transaction-quick-access-interbranch-order-purchase {
6
- .select-all-wrapper {
7
- display: flex;
8
- align-items: center;
9
- }
10
- .button {
11
- padding: 0.25em;
12
- background-color: white;
13
- border: 1px solid $tp-transaction-quick-access-planning-lsp-mode-button;
14
- cursor: pointer;
15
- co-icon {
16
- fill: $tp-transaction-quick-access-planning-lsp-mode-button;
17
- }
18
- &.selected {
19
- background-color: $tp-transaction-quick-access-planning-lsp-mode-button;
20
- co-icon {
21
- fill: white;
22
- }
23
- }
24
- }
25
-
26
- }
27
- }
1
+ @use "sass:math";
2
+ @import "../../../../style/mixin";
3
+
4
+ @include export-module('co-transaction-quick-access-interbranch-order-purchase-layout') {
5
+ .co-transaction-quick-access-interbranch-order-purchase {
6
+ .select-all-wrapper {
7
+ display: flex;
8
+ align-items: center;
9
+ }
10
+ .button {
11
+ padding: 0.25em;
12
+ background-color: white;
13
+ border: 1px solid $tp-transaction-quick-access-planning-lsp-mode-button;
14
+ cursor: pointer;
15
+ co-icon {
16
+ fill: $tp-transaction-quick-access-planning-lsp-mode-button;
17
+ }
18
+ &.selected {
19
+ background-color: $tp-transaction-quick-access-planning-lsp-mode-button;
20
+ co-icon {
21
+ fill: white;
22
+ }
23
+ }
24
+ }
25
+
26
+ }
27
+ }
@@ -1 +1 @@
1
- $tp-transaction-quick-access-planning-lsp-mode-button: #1A73E8;
1
+ $tp-transaction-quick-access-planning-lsp-mode-button: #1A73E8;
@@ -1,4 +1,4 @@
1
- @include export-module('co-transaction-quick-access-interbranch-order-purchase-theme') {
2
- .co-transaction-quick-access-interbranch-order-purchase {
3
- }
4
- }
1
+ @include export-module('co-transaction-quick-access-interbranch-order-purchase-theme') {
2
+ .co-transaction-quick-access-interbranch-order-purchase {
3
+ }
4
+ }
@@ -1,4 +1,4 @@
1
- @import "../../../../style/mixin";
2
- @import "./_material-definition";
3
- @import "./_layout";
4
- @import "./_theme";
1
+ @import "../../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -1,73 +1,73 @@
1
- @import "../../../../style/mixin";
2
-
3
- @include export-module('cc-transaction-quick-access-received-goods-layout') {
4
- .co-transaction-quick-access-received-goods {
5
-
6
- .quick-access-wrapper {
7
- display: flex;
8
- flex-direction: row;
9
- column-gap: 10px;
10
- align-items: start;
11
-
12
- .sub-section-input {
13
- display: flex;
14
- flex-direction: column;
15
- gap: 10px;
16
- }
17
-
18
- .sub-section {
19
- display: flex;
20
- flex-direction: row;
21
- column-gap: 10px;
22
- .checkbox-wrapper {
23
- display: flex;
24
- flex-direction: row;
25
- }
26
-
27
- .dots-wrapper {
28
- display: flex;
29
- transform: scale(0.7);
30
-
31
- .dot {
32
- width: 8px;
33
- height: 8px;
34
- background-color: black;
35
- border-radius: 16px;
36
- transform: scale(0.3);
37
- }
38
- }
39
-
40
- .co-input-date {
41
- min-width: 170px;
42
- }
43
-
44
- .co-input-text {
45
- min-width: 100px;
46
- }
47
-
48
- .button-wrapper {
49
- background: $tp-default-background-accent;
50
- border-radius: $tp-default-border-radius;
51
- padding: 5px;
52
- display: flex;
53
- flex-direction: column;
54
- align-items: center;
55
- justify-content: center;
56
- cursor: pointer;
57
- width: 68px;
58
- height: 46px;
59
-
60
- .button-icon {
61
- height: 20px;
62
- width: 20px;
63
- }
64
-
65
- span {
66
- font-size: 10px;
67
- margin-top: 3px;
68
- }
69
- }
70
- }
71
- }
72
- }
73
- }
1
+ @import "../../../../style/mixin";
2
+
3
+ @include export-module('cc-transaction-quick-access-received-goods-layout') {
4
+ .co-transaction-quick-access-received-goods {
5
+
6
+ .quick-access-wrapper {
7
+ display: flex;
8
+ flex-direction: row;
9
+ column-gap: 10px;
10
+ align-items: start;
11
+
12
+ .sub-section-input {
13
+ display: flex;
14
+ flex-direction: column;
15
+ gap: 10px;
16
+ }
17
+
18
+ .sub-section {
19
+ display: flex;
20
+ flex-direction: row;
21
+ column-gap: 10px;
22
+ .checkbox-wrapper {
23
+ display: flex;
24
+ flex-direction: row;
25
+ }
26
+
27
+ .dots-wrapper {
28
+ display: flex;
29
+ transform: scale(0.7);
30
+
31
+ .dot {
32
+ width: 8px;
33
+ height: 8px;
34
+ background-color: black;
35
+ border-radius: 16px;
36
+ transform: scale(0.3);
37
+ }
38
+ }
39
+
40
+ .co-input-date {
41
+ min-width: 170px;
42
+ }
43
+
44
+ .co-input-text {
45
+ min-width: 100px;
46
+ }
47
+
48
+ .button-wrapper {
49
+ background: $tp-default-background-accent;
50
+ border-radius: $tp-default-border-radius;
51
+ padding: 5px;
52
+ display: flex;
53
+ flex-direction: column;
54
+ align-items: center;
55
+ justify-content: center;
56
+ cursor: pointer;
57
+ width: 68px;
58
+ height: 46px;
59
+
60
+ .button-icon {
61
+ height: 20px;
62
+ width: 20px;
63
+ }
64
+
65
+ span {
66
+ font-size: 10px;
67
+ margin-top: 3px;
68
+ }
69
+ }
70
+ }
71
+ }
72
+ }
73
+ }
@@ -1,6 +1,6 @@
1
- @import "../../../../style/mixin";
2
-
3
- @include export-module('cc-transaction-quick-access-received-goods-theme') {
4
- .co-transaction-quick-access-received-goods {
5
- }
6
- }
1
+ @import "../../../../style/mixin";
2
+
3
+ @include export-module('cc-transaction-quick-access-received-goods-theme') {
4
+ .co-transaction-quick-access-received-goods {
5
+ }
6
+ }
@@ -1,4 +1,4 @@
1
- @import "../../../../style/mixin";
2
- @import "./_material-definition";
3
- @import "./_layout";
4
- @import "./_theme";
1
+ @import "../../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transaction",
3
- "version": "300.1.13",
3
+ "version": "300.1.15",
4
4
  "description": "Colijn IT transaction module for Angular 20",
5
5
  "repository": "npm/npm",
6
6
  "author": "Colijn IT",
@@ -11,14 +11,14 @@
11
11
  "@angular/core": ">=20.3.16",
12
12
  "@colijnit/articleapi": ">=300.1.0",
13
13
  "@colijnit/catalog": ">=300.1.0",
14
- "@colijnit/corecomponents_v12": ">=300.1.0",
14
+ "@colijnit/corecomponents_v12": ">=300.1.4",
15
15
  "@colijnit/ioneconnector": ">=300.1.0",
16
- "@colijnit/mainapi": ">=300.1.8",
16
+ "@colijnit/mainapi": ">=300.1.9",
17
17
  "@colijnit/product": ">=300.1.0",
18
18
  "@colijnit/relation": ">=300.1.0",
19
19
  "@colijnit/relationapi": ">=300.1.1",
20
20
  "@colijnit/sharedapi": ">=1.0.20",
21
- "@colijnit/sharedcomponents": ">=300.1.4",
21
+ "@colijnit/sharedcomponents": ">=300.1.8",
22
22
  "@colijnit/transactionapi": ">=300.1.8"
23
23
  },
24
24
  "dependencies": {