@colijnit/transaction 262.1.26 → 262.1.28

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 (18) hide show
  1. package/fesm2022/colijnit-transaction.mjs +2423 -2345
  2. package/fesm2022/colijnit-transaction.mjs.map +1 -1
  3. package/index.d.ts +29 -8
  4. package/lib/component/core/base/components/voucher-code-pending-reason-dialog/style/_layout.scss +15 -0
  5. package/lib/component/core/base/components/voucher-code-pending-reason-dialog/style/_material-definition.scss +3 -0
  6. package/lib/component/core/base/components/voucher-code-pending-reason-dialog/style/material.scss +1 -1
  7. package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
  8. package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
  9. package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
  10. package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
  11. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
  12. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
  13. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
  14. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
  15. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
  16. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
  17. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
  18. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -848,6 +848,10 @@ declare class TransactionEventService {
848
848
  readonly interbranchExistingOrderNavigation: Subject<string>;
849
849
  readonly serviceExistingOrderNavigation: Subject<string>;
850
850
  readonly salesQuotationOrderNavigation: Subject<string>;
851
+ readonly relationNavigationRequested: Subject<{
852
+ relationNr: number;
853
+ relationKind: RelationKind;
854
+ }>;
851
855
  readonly relationNavigation: Subject<{
852
856
  relationNr: number;
853
857
  relationKind: RelationKind;
@@ -879,7 +883,13 @@ declare class TransactionEventService {
879
883
  readonly headerDeliveryHash: Subject<string>;
880
884
  readonly headerInvoiceHash: Subject<string>;
881
885
  readonly showPlanningPopupEvent: BehaviorSubject<boolean>;
882
- readonly headerPopupClose: Subject<boolean>;
886
+ readonly headerPopupClose: Subject<{
887
+ commit: boolean;
888
+ relationData: {
889
+ relationNr: number;
890
+ relationKind: RelationKind;
891
+ };
892
+ }>;
883
893
  readonly orderLineSetButtonClick: Subject<void>;
884
894
  readonly addDocumentToLineClicked: Subject<TransactionLineInfo>;
885
895
  readonly reopenExternalOrderClicked: Subject<{
@@ -1252,6 +1262,7 @@ declare class TransactionConnectorAdapterService {
1252
1262
  printHistoricOrderConfirmation(request: PrintHistoricOrderConfirmationRequest): Promise<void>;
1253
1263
  startOrderConfirmationBatch(request: BatchTransactionSendingRequest): Promise<void>;
1254
1264
  startPurchaseOrderFormBatch(request: BatchTransactionSendingRequest): Promise<void>;
1265
+ startSendPurchaseOrderBatch(request: BatchTransactionSendingRequest): Promise<void>;
1255
1266
  startToAllocateUnAllocatedLinesBatch(transIds: number[]): Promise<void>;
1256
1267
  startGoodsToBePickedBatch(request: BatchTransactionSendingRequest): Promise<void>;
1257
1268
  startGoodsPickedBatch(transIds: number[]): Promise<void>;
@@ -1751,6 +1762,7 @@ declare class TransactionConnectorService {
1751
1762
  printHistoricOrderConfirmation(request: PrintHistoricOrderConfirmationRequest): Promise<void>;
1752
1763
  startOrderConfirmationBatch(request: BatchTransactionSendingRequest): Promise<void>;
1753
1764
  startPurchaseOrderFormBatch(request: BatchTransactionSendingRequest): Promise<void>;
1765
+ startSendPurchaseOrderBatch(request: BatchTransactionSendingRequest): Promise<void>;
1754
1766
  startToAllocateUnAllocatedLinesBatch(transIds: number[]): Promise<void>;
1755
1767
  startGoodsToBePickedBatch(request: BatchTransactionSendingRequest): Promise<void>;
1756
1768
  startGoodsPickedBatch(transIds: number[]): Promise<void>;
@@ -2217,6 +2229,7 @@ declare enum Icon {
2217
2229
  UpFromLineRegular = "up_from_line_regular",
2218
2230
  UpFromLineRegularFull = "up_from_line_regular_full",
2219
2231
  UserRegular = "user_regular",
2232
+ VoucherRegular = "voucher_regular",
2220
2233
  Warehouse = "warehouse",
2221
2234
  WorkInProgressCircleLarge = "work_in_progress_circle_large",
2222
2235
  XSolid = "x_solid"
@@ -2626,6 +2639,7 @@ declare class TransactionService extends PendingReasonService {
2626
2639
  printHistoricOrderConfirmation(request: PrintHistoricDeliveryNoteRequest): Promise<void>;
2627
2640
  startOrderConfirmationBatch(request: BatchTransactionSendingRequest): Promise<void>;
2628
2641
  startPurchaseOrderFormBatch(request: BatchTransactionSendingRequest): Promise<void>;
2642
+ startSendPurchaseOrderBatch(request: BatchTransactionSendingRequest): Promise<void>;
2629
2643
  startToAllocateUnAllocatedLinesBatch(transIds: number[]): Promise<void>;
2630
2644
  startGoodsToBePickedBatch(request: BatchTransactionSendingRequest): Promise<void>;
2631
2645
  startGoodsPickedBatch(transIds: number[]): Promise<void>;
@@ -3903,9 +3917,12 @@ declare class CharacteristicAnswerModule {
3903
3917
  }
3904
3918
 
3905
3919
  declare class VoucherCodePendingReasonDialogComponent extends DialogBaseComponent {
3920
+ iconCacheService: IconCacheService;
3906
3921
  showClass(): boolean;
3922
+ readonly icons: typeof Icon;
3907
3923
  voucherCode: string;
3908
3924
  pendingReason: string;
3925
+ constructor(iconCacheService: IconCacheService);
3909
3926
  handleOkClick(): void;
3910
3927
  handleCloseClick(): void;
3911
3928
  onKeyDown(event: KeyboardEvent): void;
@@ -3915,7 +3932,7 @@ declare class VoucherCodePendingReasonDialogComponent extends DialogBaseComponen
3915
3932
 
3916
3933
  declare class VoucherCodePendingReasonDialogModule {
3917
3934
  static ɵfac: i0.ɵɵFactoryDeclaration<VoucherCodePendingReasonDialogModule, never>;
3918
- static ɵmod: i0.ɵɵNgModuleDeclaration<VoucherCodePendingReasonDialogModule, [typeof VoucherCodePendingReasonDialogComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.ButtonModule], [typeof VoucherCodePendingReasonDialogComponent]>;
3935
+ static ɵmod: i0.ɵɵNgModuleDeclaration<VoucherCodePendingReasonDialogModule, [typeof VoucherCodePendingReasonDialogComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.ButtonModule, typeof i3.IconModule], [typeof VoucherCodePendingReasonDialogComponent]>;
3919
3936
  static ɵinj: i0.ɵɵInjectorDeclaration<VoucherCodePendingReasonDialogModule>;
3920
3937
  }
3921
3938
 
@@ -5997,7 +6014,10 @@ declare abstract class TransactionHeaderPopupBaseComponent extends TransactionHe
5997
6014
  constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, dialogService: TransactionDialogService, formMasterService: FormMasterService, relationService: TransactionRelationService);
5998
6015
  ngOnInit(): Promise<void>;
5999
6016
  ngOnDestroy(): Promise<void>;
6000
- saveObjects(): Promise<void>;
6017
+ saveObjects(relationInfo?: {
6018
+ relationNr: number;
6019
+ relationKind: RelationKind;
6020
+ }): Promise<void>;
6001
6021
  saveRelation(): Promise<boolean>;
6002
6022
  saveTransaction(): Promise<boolean>;
6003
6023
  protected setFormPristine(): void;
@@ -9638,9 +9658,9 @@ declare class TransactionReceivingGoodsHistoryComponent {
9638
9658
  showDeleteButton: boolean;
9639
9659
  set goodsReceiptHistory(value: LogisticalStateDetail[]);
9640
9660
  get goodsReceiptHistory(): LogisticalStateDetail[];
9661
+ private _goodsReceiptHistory;
9641
9662
  deleteRow: EventEmitter<LogisticalStateDetail>;
9642
9663
  showClass(): boolean;
9643
- private _goodsReceiptHistory;
9644
9664
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceivingGoodsHistoryComponent, never>;
9645
9665
  static ɵcmp: i0.ɵɵComponentDeclaration<TransactionReceivingGoodsHistoryComponent, "co-transaction-receiving-goods-history", never, { "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "goodsReceiptHistory": { "alias": "goodsReceiptHistory"; "required": false; }; }, { "deleteRow": "deleteRow"; }, never, never, false, never>;
9646
9666
  }
@@ -9909,7 +9929,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
9909
9929
  showCategories: boolean;
9910
9930
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
9911
9931
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
9912
- currentTitle(): "OVERVIEW" | "MARGINS";
9932
+ currentTitle(): "MARGINS" | "OVERVIEW";
9913
9933
  ngOnDestroy(): void;
9914
9934
  handleClickWrapper(event: MouseEvent): void;
9915
9935
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
@@ -9935,7 +9955,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
9935
9955
  constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
9936
9956
  ngOnDestroy(): void;
9937
9957
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
9938
- currentTitle(): "OVERVIEW" | "MARGINS";
9958
+ currentTitle(): "MARGINS" | "OVERVIEW";
9939
9959
  handleClickWrapper(event: MouseEvent): void;
9940
9960
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
9941
9961
  private handleDocumentClick;
@@ -9987,7 +10007,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
9987
10007
  showCategories: boolean;
9988
10008
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
9989
10009
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
9990
- currentTitle(): "OVERVIEW" | "MARGINS";
10010
+ currentTitle(): "MARGINS" | "OVERVIEW";
9991
10011
  ngOnDestroy(): void;
9992
10012
  handleClickWrapper(event: MouseEvent): void;
9993
10013
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
@@ -16219,6 +16239,7 @@ declare class TransactionLineWarehouseCcGeneralComponent extends TransactionLine
16219
16239
  commissionCodeDisplayList: CoDomainValue[];
16220
16240
  warehouseDescription: string;
16221
16241
  commissionCodeDescription: string;
16242
+ commissionCodeReadonly: boolean;
16222
16243
  constructor(element: ElementRef, iconCacheService: IconCacheService, _transactionService: TransactionService, _changeDetector: ChangeDetectorRef);
16223
16244
  ngOnInit(): void;
16224
16245
  ngOnChanges(): void;
@@ -16228,7 +16249,7 @@ declare class TransactionLineWarehouseCcGeneralComponent extends TransactionLine
16228
16249
  private _getWarehouseDescription;
16229
16250
  private _detectChanges;
16230
16251
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineWarehouseCcGeneralComponent, never>;
16231
- static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineWarehouseCcGeneralComponent, "co-transaction-line-warehouse-cc-general", never, {}, {}, never, never, false, never>;
16252
+ static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineWarehouseCcGeneralComponent, "co-transaction-line-warehouse-cc-general", never, { "commissionCodeReadonly": { "alias": "commissionCodeReadonly"; "required": false; }; }, {}, never, never, false, never>;
16232
16253
  }
16233
16254
 
16234
16255
  declare enum WarehouseTargetSourceTab {
@@ -1,4 +1,19 @@
1
1
  @include export-module('cc-voucher-code-pending-reason-dialog-layout') {
2
2
  .co-voucher-code-pending-reason-dialog {
3
+ co-dialog {
4
+ .co-dialog-wrapper {
5
+ max-width: $cc-voucher-code-pending-dialog-width;
6
+ .co-dialog-header-title-icon {
7
+ display: flex;
8
+ align-items: center;
9
+ gap: $cc-voucher-code-pending-dialog-title-gap;
10
+ }
11
+ .co-dialog-content {
12
+ .co-input-text {
13
+ margin: $cc-voucher-code-pending-dialog-co-input-margin;
14
+ }
15
+ }
16
+ }
17
+ }
3
18
  }
4
19
  }
@@ -0,0 +1,3 @@
1
+ $cc-voucher-code-pending-dialog-width: 600px !default;
2
+ $cc-voucher-code-pending-dialog-title-gap: 10px !default;
3
+ $cc-voucher-code-pending-dialog-co-input-margin: 5px 0 15px 0 !default;
@@ -1,4 +1,4 @@
1
- @import "../../../style/mixin";
1
+ @import "../../../../../../style/mixin";
2
2
  @import "./_material-definition";
3
3
  @import "./_layout";
4
4
  @import "./_theme";
@@ -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": "262.1.26",
3
+ "version": "262.1.28",
4
4
  "description": "Colijn IT transaction module for Angular 20",
5
5
  "repository": "npm/npm",
6
6
  "author": "Colijn IT",
@@ -19,7 +19,7 @@
19
19
  "@colijnit/relationapi": ">=262.1.0",
20
20
  "@colijnit/sharedapi": ">=1.0.20",
21
21
  "@colijnit/sharedcomponents": ">=262.1.11",
22
- "@colijnit/transactionapi": ">=262.1.12"
22
+ "@colijnit/transactionapi": ">=262.1.13"
23
23
  },
24
24
  "dependencies": {
25
25
  "tslib": "^2.8.1"