@colijnit/transaction 12.1.115 → 12.1.116
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.
- package/bundles/colijnit-transaction.umd.js +440 -263
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +196 -194
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +197 -195
- package/esm2015/lib/component/checkout/checkout.component.js +3 -9
- package/esm2015/lib/component/core/relation/customer-groups.component.js +2 -1
- package/esm2015/lib/component/transaction-card/transaction-card-receive-goods/transaction-card-receive-goods.component.js +2 -2
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.js +2 -1
- package/esm2015/lib/component/transaction-header-fields/transaction-header-payment-condition.component.js +2 -1
- package/esm2015/lib/component/transaction-labeled-warehouse-location-button/transaction-labeled-warehouse-location-button.component.js +74 -0
- package/esm2015/lib/component/transaction-labeled-warehouse-location-button/transaction-labeled-warehouse-location-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.js +6 -5
- package/esm2015/lib/component/transaction-line/transaction-invoice-line/transaction-invoice-line-base.component.js +2 -1
- package/esm2015/lib/component/transaction-line/transaction-invoice-line/transaction-invoice-line.component.js +2 -2
- package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line-base.component.js +2 -1
- package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.js +2 -2
- package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line-base.component.js +23 -1
- package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.component.js +69 -50
- package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.module.js +6 -3
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line-base.component.js +2 -1
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.js +4 -4
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.js +8 -19
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.component.js +6 -11
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.module.js +4 -3
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-price.component.js +8 -4
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-gross-order-price.component.js +3 -4
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-net-order-price.component.js +4 -4
- package/esm2015/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.component.js +35 -9
- package/esm2015/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.module.js +5 -3
- package/esm2015/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.component.js +11 -11
- package/esm2015/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.module.js +4 -2
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-invoice/transaction-quick-access-invoice.component.js +15 -7
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +8 -7
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.js +9 -3
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +11 -11
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.js +4 -2
- package/esm2015/lib/component/transaction-send-documents/transaction-send-documents.component.js +9 -5
- package/esm2015/lib/enum/icon.enum.js +3 -1
- package/esm2015/lib/model/icon-svg.js +3 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/esm2015/lib/service/transaction-base.service.js +2 -1
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +321 -154
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction/style/_layout.scss +3 -0
- package/lib/component/transaction/style/_material-definition.scss +1 -0
- package/lib/component/transaction/style/material.scss +1 -0
- package/lib/component/transaction-date-select/style/_layout.scss +1 -0
- package/lib/component/transaction-labeled-warehouse-location-button/style/_layout.scss +46 -0
- package/lib/component/transaction-labeled-warehouse-location-button/style/_material-definition.scss +0 -0
- package/lib/component/transaction-labeled-warehouse-location-button/style/_theme.scss +4 -0
- package/lib/component/transaction-labeled-warehouse-location-button/style/material.scss +4 -0
- package/lib/component/transaction-labeled-warehouse-location-button/transaction-labeled-warehouse-location-button.component.d.ts +25 -0
- package/lib/component/transaction-labeled-warehouse-location-button/transaction-labeled-warehouse-location-button.module.d.ts +2 -0
- package/lib/component/transaction-line/transaction-purchase-order-line/style/_layout.scss +20 -47
- package/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line-base.component.d.ts +2 -0
- package/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.component.d.ts +1 -0
- package/lib/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +1 -1
- package/lib/component/transaction-line-fields/transaction-line-price/style/_layout.scss +3 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.d.ts +1 -6
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.component.d.ts +3 -3
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-price.component.d.ts +1 -0
- package/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.component.d.ts +1 -0
- package/lib/component/transaction-line-side-panel/style/_layout.scss +42 -6
- package/lib/component/transaction-quick-access/transaction-quick-access-invoice/transaction-quick-access-invoice.component.d.ts +4 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.d.ts +0 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +1 -1
- package/lib/component/transaction-send-documents/transaction-send-documents.component.d.ts +1 -0
- package/lib/enum/icon.enum.d.ts +2 -0
- package/lib/res/dictionary/dictionaries.d.ts +4 -0
- package/lib/style/transaction-globals.scss +3 -30
- package/package.json +1 -1
|
@@ -6,3 +6,4 @@ $tp-transaction-transaction-lines-header-padding: 20px 0 !default;
|
|
|
6
6
|
$tp-transaction-padding: 20px !default;
|
|
7
7
|
$tp-transaction-transaction-lines-header-padding: 20px !default;
|
|
8
8
|
$tp-transaction-transaction-lines-header-column-gap: 20px !default;
|
|
9
|
+
$tp-transaction-transaction-lines-wrapper-padding: 0 !default;
|
|
@@ -10,5 +10,6 @@
|
|
|
10
10
|
@import "../../transaction-line-side-panel/style/material";
|
|
11
11
|
@import "../../dialog/transaction-header/dialog-transaction-header-delivery-method/style/material";
|
|
12
12
|
@import "../../dialog/transaction-header/dialog-transaction-header-branch/style/material";
|
|
13
|
+
@import "../../transaction-labeled-warehouse-location-button/style/material";
|
|
13
14
|
@import "../../transaction-line-checkbox-list/style/material";
|
|
14
15
|
@import "../../transaction-card/transaction-card/style/material";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
@include export-module('cc-transaction-labeled-warehouse-location-button-layout') {
|
|
2
|
+
.co-transaction-labeled-warehouse-location-button {
|
|
3
|
+
|
|
4
|
+
.transaction-line-button {
|
|
5
|
+
height: 45px;
|
|
6
|
+
width: 100px;
|
|
7
|
+
|
|
8
|
+
.icon-wrapper {
|
|
9
|
+
.co-icon {
|
|
10
|
+
padding: 13px;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.text-content-wrapper {
|
|
15
|
+
width: 100%;
|
|
16
|
+
height: 100%;
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: flex-start;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
row-gap: $tp-transaction-line-button-label-row-gap;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
padding-right: $tp-transaction-line-button-label-padding-right;
|
|
24
|
+
|
|
25
|
+
.label {
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
white-space: nowrap;
|
|
28
|
+
text-overflow: ellipsis;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.label {
|
|
32
|
+
color: $tp-transaction-line-button-label-color;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
span {
|
|
36
|
+
width: inherit;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&:not(.spacer) {
|
|
41
|
+
padding: $tp-transaction-line-button-padding;
|
|
42
|
+
column-gap: $tp-transaction-line-button-column-gap;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
package/lib/component/transaction-labeled-warehouse-location-button/style/_material-definition.scss
ADDED
|
File without changes
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from "@angular/core";
|
|
2
|
+
import { TransactionBaseComponent } from "../core/base/transaction-base.component";
|
|
3
|
+
import { Icon } from "../../enum/icon.enum";
|
|
4
|
+
import { TransactionEventService } from "../../service/transaction-event.service";
|
|
5
|
+
import { TransactionService } from "../../service/transaction.service";
|
|
6
|
+
import { IconCacheService } from "../../service/icon-cache.service";
|
|
7
|
+
import { DictionaryService } from "../../service/dictionary.service";
|
|
8
|
+
import { TransactionImageService } from "../../service/transaction-image.service";
|
|
9
|
+
import { DialogService } from "../../service/dialog.service";
|
|
10
|
+
export declare class TransactionLabeledWarehouseLocationButtonComponent extends TransactionBaseComponent {
|
|
11
|
+
transactionEventService: TransactionEventService;
|
|
12
|
+
service: TransactionService;
|
|
13
|
+
iconCacheService: IconCacheService;
|
|
14
|
+
protected dictionaryService: DictionaryService;
|
|
15
|
+
protected imageService: TransactionImageService;
|
|
16
|
+
protected changeDetector: ChangeDetectorRef;
|
|
17
|
+
private _dialogService;
|
|
18
|
+
readonly icons: typeof Icon;
|
|
19
|
+
locationNr: string;
|
|
20
|
+
warehouseNumber: number;
|
|
21
|
+
locationNrChange: EventEmitter<string>;
|
|
22
|
+
showClass(): boolean;
|
|
23
|
+
constructor(transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _dialogService: DialogService);
|
|
24
|
+
openWarehouseLocationDialog(): Promise<void>;
|
|
25
|
+
}
|
|
@@ -1,59 +1,32 @@
|
|
|
1
1
|
@include export-module('cc-transaction-purchase-order-line-layout') {
|
|
2
2
|
.co-transaction-purchase-order-line {
|
|
3
|
-
.transaction-line-wrapper {
|
|
4
|
-
align-items: center;
|
|
5
|
-
height: 100%;
|
|
6
|
-
}
|
|
7
3
|
|
|
8
|
-
.transaction-line-
|
|
4
|
+
.transaction-line-content-wrapper {
|
|
9
5
|
display: flex;
|
|
10
|
-
|
|
6
|
+
justify-content: space-evenly;
|
|
7
|
+
margin-right: 5px;
|
|
8
|
+
column-gap: 10px;
|
|
11
9
|
|
|
12
|
-
|
|
13
|
-
width:
|
|
14
|
-
height: 25px;
|
|
15
|
-
display: flex;
|
|
16
|
-
align-items: center;
|
|
17
|
-
justify-content: center;
|
|
18
|
-
border: 1px solid #DCE4EA;
|
|
19
|
-
border-radius: 10px;
|
|
20
|
-
margin-right: 3px;
|
|
10
|
+
co-transaction-line-statusbar {
|
|
11
|
+
width: 75px;
|
|
21
12
|
}
|
|
22
13
|
|
|
23
|
-
.
|
|
24
|
-
width: 100px;
|
|
25
|
-
height: 25px;
|
|
14
|
+
.transaction-line-content {
|
|
26
15
|
display: flex;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
16
|
+
flex-wrap: wrap;
|
|
17
|
+
column-gap: 10px;
|
|
18
|
+
row-gap: 10px;
|
|
19
|
+
|
|
20
|
+
co-input-text, co-editable-label {
|
|
21
|
+
width: $tp-transaction-line-button-width;
|
|
22
|
+
height: $tp-transaction-line-button-height;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
co-input-number-picker {
|
|
26
|
+
width: $tp-transaction-line-input-number-picker-width;
|
|
27
|
+
height: $tp-transaction-line-button-height;
|
|
28
|
+
}
|
|
34
29
|
}
|
|
35
30
|
}
|
|
36
|
-
.vertical-border {
|
|
37
|
-
border-left: 1px solid #DCE4EA;
|
|
38
|
-
height: 100%;
|
|
39
|
-
}
|
|
40
|
-
.transaction-line-supplier-id {
|
|
41
|
-
font-size: 11px;
|
|
42
|
-
font-weight: 600;
|
|
43
|
-
display: flex;
|
|
44
|
-
align-items: center;
|
|
45
|
-
height: 26px;
|
|
46
|
-
padding: 0 10px;
|
|
47
|
-
}
|
|
48
|
-
.transaction-line-supplier-icon {
|
|
49
|
-
height: 20px;
|
|
50
|
-
margin: 2px;
|
|
51
|
-
}
|
|
52
|
-
//.amount-number-picker {
|
|
53
|
-
// height: 25px;
|
|
54
|
-
// border: 1px solid black;
|
|
55
|
-
// border-radius: 10px;
|
|
56
|
-
// width: 100px;
|
|
57
|
-
//}
|
|
58
31
|
}
|
|
59
32
|
}
|
|
@@ -5,9 +5,11 @@ export declare abstract class TransactionPurchaseOrderLineBaseComponent extends
|
|
|
5
5
|
readonly transactionTypeCategory: typeof TransactionTypeCategory;
|
|
6
6
|
showDialogDiscount: boolean;
|
|
7
7
|
showCheckboxForLine: boolean;
|
|
8
|
+
lineQuantityToConfirm: number;
|
|
8
9
|
private _subs;
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
ngOnDestroy(): void;
|
|
11
12
|
protected transactionLineSet(): void;
|
|
12
13
|
handleOpenSidePanel(mouseClick: PointerEvent): void;
|
|
14
|
+
private _getPurchasePortalLine;
|
|
13
15
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TransactionPurchaseOrderLineBaseComponent } from './transaction-purchase-order-line-base.component';
|
|
2
2
|
export declare class TransactionPurchaseOrderLineComponent extends TransactionPurchaseOrderLineBaseComponent {
|
|
3
3
|
showClass(): boolean;
|
|
4
|
+
confirmDeliveryDate(data: any): void;
|
|
4
5
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { Icon } from "../../enum/icon.enum";
|
|
3
3
|
import { IconCacheService } from "../../service/icon-cache.service";
|
|
4
4
|
import { DialogService } from "../../service/dialog.service";
|
|
@@ -16,12 +16,7 @@ export declare class TransactionLineWarehouseLocationButtonComponent extends Tra
|
|
|
16
16
|
protected changeDetector: ChangeDetectorRef;
|
|
17
17
|
private _dialogService;
|
|
18
18
|
readonly icons: typeof Icon;
|
|
19
|
-
locationNr: string;
|
|
20
|
-
warehouseNumber: number;
|
|
21
19
|
readonly: boolean;
|
|
22
|
-
label: string;
|
|
23
|
-
globalLocation: boolean;
|
|
24
|
-
locationNrChange: EventEmitter<string>;
|
|
25
20
|
showClass(): boolean;
|
|
26
21
|
constructor(transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _dialogService: DialogService);
|
|
27
22
|
openWarehouseLocationDialog(): Promise<void>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
1
2
|
import { Icon } from "../../enum/icon.enum";
|
|
2
|
-
import { IconCacheService } from "../../service/icon-cache.service";
|
|
3
3
|
import { PurchasePortalLine } from "@colijnit/transactionapi/build/model/purchase-portal-line.bo";
|
|
4
4
|
export declare class TransactionPurchasePortalLineConfirmedDeliveryDateComponent {
|
|
5
|
-
iconCacheService: IconCacheService;
|
|
6
5
|
readonly icons: typeof Icon;
|
|
7
6
|
purchasePortalLine: PurchasePortalLine;
|
|
7
|
+
selectedConfirmedDeliveryDate: EventEmitter<any>;
|
|
8
|
+
confirmedDeliveryDate: Date;
|
|
8
9
|
showClass(): boolean;
|
|
9
|
-
constructor(iconCacheService: IconCacheService);
|
|
10
10
|
}
|
|
@@ -54,14 +54,50 @@
|
|
|
54
54
|
overflow-x: hidden;
|
|
55
55
|
}
|
|
56
56
|
.save-cancel-wrapper {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
width: 100%;
|
|
58
|
+
display: flex;
|
|
59
|
+
margin-top: 25px;
|
|
60
|
+
margin-bottom: 40px;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
column-gap: 4px;
|
|
63
|
+
|
|
64
|
+
co-button {
|
|
65
|
+
height: auto;
|
|
66
|
+
width: auto;
|
|
67
|
+
background-color: $tp-default-background-accent;
|
|
68
|
+
border-bottom: 2px solid $tp-color-border;
|
|
69
|
+
cursor: pointer;
|
|
60
70
|
|
|
61
|
-
|
|
62
|
-
|
|
71
|
+
&:not(.circle) {
|
|
72
|
+
padding: 8px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&.cancel-button {
|
|
76
|
+
padding: 5px;
|
|
77
|
+
co-icon {
|
|
78
|
+
width: 22px;
|
|
79
|
+
height: 22px;
|
|
80
|
+
svg { // for fontawesome icons
|
|
81
|
+
fill: $tp-color-dark-accent;
|
|
82
|
+
}
|
|
83
|
+
& [fill] { // for own icons
|
|
84
|
+
fill: $tp-color-dark-accent;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
co-icon {
|
|
91
|
+
width: 16px;
|
|
92
|
+
height: 16px;
|
|
93
|
+
svg { // for fontawesome icons
|
|
94
|
+
fill: $tp-color-action;
|
|
95
|
+
}
|
|
96
|
+
& [fill] { // for own icons
|
|
97
|
+
fill: $tp-color-action;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
63
100
|
}
|
|
64
|
-
}
|
|
65
101
|
.hidden {
|
|
66
102
|
visibility: hidden;
|
|
67
103
|
}
|
|
@@ -6,12 +6,13 @@ import { EmailInvoiceRequest } from "@colijnit/transactionapi/build/model/email-
|
|
|
6
6
|
import { PrintInvoiceRequest } from "@colijnit/transactionapi/build/model/print-invoice-request";
|
|
7
7
|
import { PdfInvoiceRequest } from "@colijnit/transactionapi/build/model/pdf-invoice-request";
|
|
8
8
|
export declare class TransactionQuickAccessInvoiceComponent extends TransactionQuickAccessSendMethodBaseComponent implements OnInit {
|
|
9
|
-
|
|
9
|
+
sendDocumentsComponent: any;
|
|
10
10
|
showClass(): boolean;
|
|
11
11
|
reportDocumentEmailRequest: EmailInvoiceRequest;
|
|
12
12
|
reportDocumentPrintRequest: PrintInvoiceRequest;
|
|
13
13
|
reportDocumentPdfRequest: PdfInvoiceRequest;
|
|
14
14
|
canInvoice: boolean;
|
|
15
|
+
internalParameterAllowsPartialInvoicing: boolean;
|
|
15
16
|
ngOnInit(): void;
|
|
16
17
|
handleSelectAllLines(value: boolean): void;
|
|
17
18
|
protected getDefaultEmailAddressList(): Promise<string[]>;
|
|
@@ -23,6 +24,8 @@ export declare class TransactionQuickAccessInvoiceComponent extends TransactionQ
|
|
|
23
24
|
protected emailDocument(emailInvoiceRequest: EmailInvoiceRequest): void;
|
|
24
25
|
transactionSet(): void;
|
|
25
26
|
_prepareRequest(request: EmailInvoiceRequest | PrintInvoiceRequest | PdfInvoiceRequest): void;
|
|
27
|
+
historicDocuments(): boolean;
|
|
28
|
+
handleSendDocument(defaultSendMethod: string): void;
|
|
26
29
|
private _createRequestLines;
|
|
27
30
|
private _createLinesInfoArray;
|
|
28
31
|
private _getInternalParameterAllowPartialInvoicing;
|
|
@@ -24,5 +24,7 @@ export declare class TransactionQuickAccessOrderDeliveryComponent extends Transa
|
|
|
24
24
|
protected emailDocument(emailDeliveryNoteRequest: EmailDeliveryNoteRequest): void;
|
|
25
25
|
transactionSet(): void;
|
|
26
26
|
_prepareRequest(request: EmailDeliveryNoteRequest | PrintDeliveryNoteRequest | PdfDeliveryNoteRequest): void;
|
|
27
|
+
historicDocuments(): boolean;
|
|
28
|
+
handleSendDocument(defaultSendMethod: string): void;
|
|
27
29
|
private _createRequestLines;
|
|
28
30
|
}
|
|
@@ -28,5 +28,5 @@ export declare class TransactionQuickAccessReceivedGoodsComponent extends Transa
|
|
|
28
28
|
protected pdfDocument(): void;
|
|
29
29
|
protected printDocument(printRequest: ReportingDocumentPrintBaseRequest): void;
|
|
30
30
|
protected emailDocument(emailInvoiceRequest: EmailInvoiceRequest): void;
|
|
31
|
-
|
|
31
|
+
handleGlobalLocationChange(location: string): void;
|
|
32
32
|
}
|
|
@@ -12,6 +12,7 @@ export declare class TransactionSendDocumentsComponent extends TransactionBaseCo
|
|
|
12
12
|
showClass(): boolean;
|
|
13
13
|
ngOnInit(): void;
|
|
14
14
|
ngOnDestroy(): void;
|
|
15
|
+
getHistoricDocuments(): void;
|
|
15
16
|
toggleSendDocumentsDialog(): void;
|
|
16
17
|
handleShowHistoricDocumentLines(historicReport: HistoricReport): void;
|
|
17
18
|
getSendMethodIcon(report: HistoricReport): Icon;
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -65,6 +65,8 @@ export declare enum Icon {
|
|
|
65
65
|
PrintSolid = "print_solid",
|
|
66
66
|
Purchase = "purchase",
|
|
67
67
|
RegularCartFlatbedBoxesCircleCheck = "regular_cart_flatbed_boxes_circle_check",
|
|
68
|
+
RegularIndustryClock = "regular_industry_clock",
|
|
69
|
+
RegularIndustryTag = "regular_industry_tag",
|
|
68
70
|
Resize = "resize",
|
|
69
71
|
ShareSolid = "share_solid",
|
|
70
72
|
SharpLightTruckMovingClock = "sharp_light_truck_moving_clock",
|
|
@@ -5791,6 +5791,7 @@ export declare class Dictionaries {
|
|
|
5791
5791
|
OUTGOING: string;
|
|
5792
5792
|
OUTSTANDING: string;
|
|
5793
5793
|
OUTSTANDING_AMOUNT: string;
|
|
5794
|
+
OUTSTANDING_AMOUNT_CURRENCY: string;
|
|
5794
5795
|
OUTSTANDING_AMOUNTS_BOOKINGS: string;
|
|
5795
5796
|
OUTSTANDING_AMOUNTS_CUSTOMERS: string;
|
|
5796
5797
|
OUTSTANDING_AMOUNTS_SUPPLIERS: string;
|
|
@@ -5908,6 +5909,7 @@ export declare class Dictionaries {
|
|
|
5908
5909
|
PAYMENT_CONDITION_30_60: string;
|
|
5909
5910
|
PAYMENT_CONDITION_60: string;
|
|
5910
5911
|
PAYMENT_CONDITION_LEDGER_ACCOUNT: string;
|
|
5912
|
+
PAYMENT_DISCOUNT: string;
|
|
5911
5913
|
PAYMENT_EXECUTED: string;
|
|
5912
5914
|
PAYMENT_INFO: string;
|
|
5913
5915
|
PAYMENT_INFORMATION: string;
|
|
@@ -14229,6 +14231,7 @@ export declare class Dictionaries {
|
|
|
14229
14231
|
OUTGOING: string;
|
|
14230
14232
|
OUTSTANDING: string;
|
|
14231
14233
|
OUTSTANDING_AMOUNT: string;
|
|
14234
|
+
OUTSTANDING_AMOUNT_CURRENCY: string;
|
|
14232
14235
|
OUTSTANDING_AMOUNTS_BOOKINGS: string;
|
|
14233
14236
|
OUTSTANDING_AMOUNTS_CUSTOMERS: string;
|
|
14234
14237
|
OUTSTANDING_AMOUNTS_SUPPLIERS: string;
|
|
@@ -14351,6 +14354,7 @@ export declare class Dictionaries {
|
|
|
14351
14354
|
PAYMENT_CONDITION_60: string;
|
|
14352
14355
|
PAYMENT_CONDITION_LEDGER_ACCOUNT: string;
|
|
14353
14356
|
PAYMENT_DESCRIPTION: string;
|
|
14357
|
+
PAYMENT_DISCOUNT: string;
|
|
14354
14358
|
PAYMENT_EXECUTED: string;
|
|
14355
14359
|
PAYMENT_ID: string;
|
|
14356
14360
|
PAYMENT_INFO: string;
|
|
@@ -65,53 +65,26 @@
|
|
|
65
65
|
display: flex;
|
|
66
66
|
align-items: center;
|
|
67
67
|
height: $tp-transaction-line-button-height;
|
|
68
|
-
|
|
69
|
-
height: $tp-transaction-line-button-icon-size;
|
|
70
|
-
width: $tp-transaction-line-button-icon-size;
|
|
71
|
-
}
|
|
68
|
+
|
|
72
69
|
.icon-wrapper {
|
|
73
70
|
display: flex;
|
|
74
71
|
height: 100%;
|
|
75
72
|
flex-shrink: 0;
|
|
76
73
|
align-items: center;
|
|
77
74
|
margin-right: $tp-transaction-line-button-icon-margin;
|
|
75
|
+
|
|
78
76
|
.co-icon {
|
|
79
77
|
height: 100%;
|
|
80
78
|
width: auto;
|
|
81
79
|
padding: $tp-transaction-line-button-icon-padding;
|
|
82
80
|
}
|
|
81
|
+
|
|
83
82
|
.spacer {
|
|
84
83
|
height: 100%;
|
|
85
84
|
min-width: $tp-transaction-line-button-icon-spacer-width;
|
|
86
85
|
background-color: $tp-color-border;
|
|
87
86
|
}
|
|
88
87
|
}
|
|
89
|
-
.text-content-wrapper {
|
|
90
|
-
width: 100%;
|
|
91
|
-
height: 100%;
|
|
92
|
-
display: flex;
|
|
93
|
-
align-items: flex-start;
|
|
94
|
-
flex-direction: column;
|
|
95
|
-
row-gap: $tp-transaction-line-button-label-row-gap;
|
|
96
|
-
justify-content: center;
|
|
97
|
-
overflow: hidden;
|
|
98
|
-
padding-right: $tp-transaction-line-button-label-padding-right;
|
|
99
|
-
.label {
|
|
100
|
-
overflow: hidden;
|
|
101
|
-
white-space: nowrap;
|
|
102
|
-
text-overflow: ellipsis;
|
|
103
|
-
}
|
|
104
|
-
&.label {
|
|
105
|
-
color: $tp-transaction-line-button-label-color;
|
|
106
|
-
}
|
|
107
|
-
span {
|
|
108
|
-
width: inherit;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
&:not(.spacer) {
|
|
112
|
-
padding: $tp-transaction-line-button-padding;
|
|
113
|
-
column-gap: $tp-transaction-line-button-column-gap;
|
|
114
|
-
}
|
|
115
88
|
&:not(.no-border) {
|
|
116
89
|
border: $tp-transaction-line-button-border;
|
|
117
90
|
border-color: $tp-transaction-line-button-border-color;
|