@colijnit/transaction 300.1.19 → 300.1.20

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 +2046 -1890
  2. package/fesm2022/colijnit-transaction.mjs.map +1 -1
  3. package/index.d.ts +36 -6
  4. package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
  5. package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
  6. package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
  7. package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
  8. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
  9. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
  10. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
  11. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
  12. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
  13. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
  14. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
  15. package/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/style/_layout.scss +10 -5
  16. package/package.json +4 -4
package/index.d.ts CHANGED
@@ -298,6 +298,7 @@ import { SuggestedReceiptLocation } from '@colijnit/transactionapi/build/model/s
298
298
  import { PdfHistoricPosReceiptRequest } from '@colijnit/transactionapi/build/model/pdf-historic-pos-receipt-request';
299
299
  import { CreatePublicQuoteRequest } from '@colijnit/transactionapi/build/model/create-public-quote-request';
300
300
  import { UpsertTransactionStandardTextRequest } from '@colijnit/transactionapi/build/model/upsert-transaction-standard-text-request';
301
+ import { ChangeHeaderExtraDocRequest } from '@colijnit/transactionapi/build/model/change-header-extra-doc-request';
301
302
  import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
302
303
  import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
303
304
  import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
@@ -365,6 +366,7 @@ import { PlanningTask } from '@colijnit/transactionapi/build/model/planning-task
365
366
  import { LayoutCode as LayoutCode$1 } from '@colijnit/mainapi/build/enum/layout-code.enum';
366
367
  import { SearchType } from '@colijnit/transactionapi/build/enum/search-type.enum';
367
368
  import { QuantityInHistoricState } from '@colijnit/transactionapi/build/enum/quantity-in-historic-state.enum';
369
+ import { ExtraDocValues } from '@colijnit/transactionapi/build/enum/extra-doc-values.enum';
368
370
  import { LogisticStickerRequest } from '@colijnit/transactionapi/build/model/logistic-sticker-request';
369
371
  import { Payment } from '@colijnit/transactionapi/build/model/payment.bo';
370
372
  import { WorkflowCategoryType } from '@colijnit/mainapi/build/enum/workflow-category.enum';
@@ -1333,6 +1335,7 @@ declare class TransactionConnectorAdapterService {
1333
1335
  getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
1334
1336
  insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
1335
1337
  changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
1338
+ changeHeaderExtraDoc(request: ChangeHeaderExtraDocRequest): Promise<TransactionInfoResponse>;
1336
1339
  pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint: boolean): Promise<boolean>;
1337
1340
  pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint: boolean): Promise<boolean>;
1338
1341
  printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
@@ -1841,6 +1844,7 @@ declare class TransactionConnectorService {
1841
1844
  getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
1842
1845
  insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
1843
1846
  changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
1847
+ changeHeaderExtraDoc(request: ChangeHeaderExtraDocRequest): Promise<TransactionInfoResponse>;
1844
1848
  pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint: boolean): Promise<boolean>;
1845
1849
  pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint: boolean): Promise<boolean>;
1846
1850
  printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
@@ -2733,6 +2737,7 @@ declare class TransactionService extends PendingReasonService {
2733
2737
  getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
2734
2738
  insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
2735
2739
  changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
2740
+ changeHeaderExtraDoc(request: ChangeHeaderExtraDocRequest, saveTransaction: boolean): Promise<boolean>;
2736
2741
  pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint?: boolean): Promise<boolean>;
2737
2742
  pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint?: boolean): Promise<boolean>;
2738
2743
  printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
@@ -4775,7 +4780,9 @@ declare class TransactionMappingService {
4775
4780
  private _cardConfig;
4776
4781
  private _sidePanelConfig;
4777
4782
  private _quickAccessConfig;
4783
+ private _handledByDescription;
4778
4784
  constructor(_buttonBarConfig: TransactionButtonBarMappingConfig, _filterConfig: TransactionFilterMappingConfig, _searchConfig: TransactionSearchMappingConfig, _lineConfig: TransactionLineMappingConfig, _cardConfig: TransactionCardMappingConfig, _sidePanelConfig: TransactionSidePanelMappingConfig, _quickAccessConfig: TransactionQuickAccessMappingConfig);
4785
+ getHandledByDescription(type: TransactionKind): string;
4779
4786
  getButtonBar(type: TransactionKind): TransactionBarButton[];
4780
4787
  getSidePanelComponent(type: TransactionKind): any;
4781
4788
  getQuickAccessComponent(type: TransactionKind, category: TransactionTypeCategory): any;
@@ -7679,12 +7686,16 @@ declare class AvatarComponent implements OnInit {
7679
7686
  get image(): CoDocument;
7680
7687
  set relationId(value: number);
7681
7688
  get relationId(): number;
7689
+ tooltipTitle: string;
7682
7690
  set relation(value: RelationListObject);
7683
7691
  get relation(): RelationListObject;
7684
- showBranchNr: boolean;
7692
+ showRelationNr: boolean;
7685
7693
  showClass(): boolean;
7686
- imageSrc: string;
7687
7694
  backgroundColor: string;
7695
+ imageSrc: string;
7696
+ relationName: string;
7697
+ tooltip: string;
7698
+ initialsFontSize: number;
7688
7699
  set initials(value: string);
7689
7700
  get initials(): string;
7690
7701
  private _initials;
@@ -7699,14 +7710,24 @@ declare class AvatarComponent implements OnInit {
7699
7710
  private _setRelationInitials;
7700
7711
  private _getImageContent;
7701
7712
  private _setBackgroundColor;
7713
+ private _handleRelationSet;
7714
+ /**
7715
+ * Returns the font size (in SVG user units) at which the initials still fit inside the round avatar.
7716
+ *
7717
+ * The widest text that fits a circle depends on how tall that text is: for a centred single line with cap height
7718
+ * `h` the usable chord is `2 * sqrt(r^2 - (h / 2)^2)`. Estimating the text width as
7719
+ * `length * AVATAR_GLYPH_ADVANCE_RATIO * fontSize` and the cap height as `AVATAR_CAP_HEIGHT_RATIO * fontSize` and solving for the
7720
+ * font size gives the expression below, capped at `AVATAR_MAX_FONT_SIZE` so short initials keep their normal size.
7721
+ */
7722
+ private _calculateFontSize;
7702
7723
  private _detectChanges;
7703
7724
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
7704
- static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "co-avatar", never, { "image": { "alias": "image"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "showBranchNr": { "alias": "showBranchNr"; "required": false; }; }, {}, never, never, false, never>;
7725
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "co-avatar", never, { "image": { "alias": "image"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "tooltipTitle": { "alias": "tooltipTitle"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "showRelationNr": { "alias": "showRelationNr"; "required": false; }; }, {}, never, never, false, never>;
7705
7726
  }
7706
7727
 
7707
7728
  declare class AvatarModule {
7708
7729
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarModule, never>;
7709
- static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, [typeof AvatarComponent], [typeof i2.CommonModule, typeof CoreModule], [typeof AvatarComponent]>;
7730
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, [typeof AvatarComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.TooltipDirectiveModule], [typeof AvatarComponent]>;
7710
7731
  static ɵinj: i0.ɵɵInjectorDeclaration<AvatarModule>;
7711
7732
  }
7712
7733
 
@@ -14744,6 +14765,7 @@ declare class TransactionQuickAccessOverviewModule {
14744
14765
  }
14745
14766
 
14746
14767
  declare class TransactionQuickAccessOrderDeliveryComponent extends TransactionQuickAccessSendMethodBaseComponent implements OnInit, AfterViewInit, OnDestroy {
14768
+ protected readonly ExtraDocValues: typeof ExtraDocValues;
14747
14769
  showClass(): boolean;
14748
14770
  reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
14749
14771
  reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
@@ -14758,6 +14780,7 @@ declare class TransactionQuickAccessOrderDeliveryComponent extends TransactionQu
14758
14780
  ngAfterViewInit(): void;
14759
14781
  ngOnDestroy(): void;
14760
14782
  handleSelectAllLines(value: boolean): void;
14783
+ handleNoDeliveryNoteChanged(value: boolean): Promise<void>;
14761
14784
  protected getDefaultEmailAddressList(): Promise<string[]>;
14762
14785
  protected getDefaultSendMethod(): Promise<number>;
14763
14786
  protected getEmailLayouts(): Promise<ReportLayoutSelectionEmail[]>;
@@ -16772,7 +16795,9 @@ declare class TransactionSalesPersonInputModule {
16772
16795
  static ɵinj: i0.ɵɵInjectorDeclaration<TransactionSalesPersonInputModule>;
16773
16796
  }
16774
16797
 
16775
- declare class TransactionHeaderHandledByComponent implements ScreenConfigAdapterComponent {
16798
+ declare class TransactionHeaderHandledByComponent implements ScreenConfigAdapterComponent, OnInit {
16799
+ private _mappingService;
16800
+ private _dictionary;
16776
16801
  transaction: TransactionInfoResponse;
16777
16802
  showClass(): boolean;
16778
16803
  objectConfigName: string;
@@ -16783,13 +16808,18 @@ declare class TransactionHeaderHandledByComponent implements ScreenConfigAdapter
16783
16808
  maxLength: number;
16784
16809
  decimals: number;
16785
16810
  redErrorBackground: boolean;
16811
+ relationName: string;
16812
+ handledByDescription: string;
16813
+ tooltip: string;
16814
+ constructor(_mappingService: TransactionMappingService, _dictionary: DictionaryService);
16815
+ ngOnInit(): void;
16786
16816
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderHandledByComponent, never>;
16787
16817
  static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderHandledByComponent, "co-transaction-header-handled-by", never, { "transaction": { "alias": "transaction"; "required": false; }; }, {}, never, never, false, never>;
16788
16818
  }
16789
16819
 
16790
16820
  declare class TransactionHeaderHandledByModule {
16791
16821
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderHandledByModule, never>;
16792
- static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderHandledByModule, [typeof TransactionHeaderHandledByComponent], [typeof i2.CommonModule, typeof AvatarModule], [typeof TransactionHeaderHandledByComponent]>;
16822
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderHandledByModule, [typeof TransactionHeaderHandledByComponent], [typeof i2.CommonModule, typeof AvatarModule, typeof i3.TooltipDirectiveModule], [typeof TransactionHeaderHandledByComponent]>;
16793
16823
  static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderHandledByModule>;
16794
16824
  }
16795
16825
 
@@ -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";
@@ -1,12 +1,17 @@
1
1
  @include export-module('co-transaction-quick-access-order-delivery-layout') {
2
2
  .co-transaction-quick-access-order-delivery {
3
- .select-all-wrapper {
3
+ .quick-access-content-wrapper {
4
4
  display: flex;
5
- align-items: center;
6
- }
5
+ row-gap: 10px;
6
+ align-items: start;
7
+ flex-direction: column;
7
8
 
8
- .hidden {
9
- display: none;
9
+ .sub-section {
10
+ display: flex;
11
+ align-items: center;
12
+ flex-direction: row;
13
+ column-gap: 10px;
14
+ }
10
15
  }
11
16
  }
12
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transaction",
3
- "version": "300.1.19",
3
+ "version": "300.1.20",
4
4
  "description": "Colijn IT transaction module for Angular 20",
5
5
  "repository": "npm/npm",
6
6
  "author": "Colijn IT",
@@ -13,13 +13,13 @@
13
13
  "@colijnit/catalog": ">=300.1.0",
14
14
  "@colijnit/corecomponents_v12": ">=300.1.4",
15
15
  "@colijnit/ioneconnector": ">=300.1.0",
16
- "@colijnit/mainapi": ">=300.1.10",
16
+ "@colijnit/mainapi": ">=300.1.11",
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.8",
22
- "@colijnit/transactionapi": ">=300.1.8"
21
+ "@colijnit/sharedcomponents": ">=300.1.13",
22
+ "@colijnit/transactionapi": ">=300.1.11"
23
23
  },
24
24
  "dependencies": {
25
25
  "tslib": "^2.8.1"