@colijnit/transaction 262.1.9 → 262.1.11
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/fesm2022/colijnit-transaction.mjs +3013 -2953
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +19 -7
- package/lib/component/core/base/components/transaction-header-block/style/_layout.scss +4 -0
- package/lib/component/delivery-planning/style/_layout.scss +2 -2
- package/lib/component/transaction-create-wizard/style/_layout.scss +3 -1
- package/lib/component/transaction-header/transaction-header-relation/style/_layout.scss +8 -0
- package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
- package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
- package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
- package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-invoice/style/_layout.scss +4 -1
- package/lib/component/transaction-service-overview/style/_layout.scss +136 -25
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -177,7 +177,6 @@ import { TransactionLspInformationRequest } from '@colijnit/transactionapi/build
|
|
|
177
177
|
import { PackageLSP } from '@colijnit/transactionapi/build/model/package-lsp.bo';
|
|
178
178
|
import { AnalyzedOrderConfirmation } from '@colijnit/transactionapi/build/model/analyzed-order-confirmation.bo';
|
|
179
179
|
import { OrderConfirmationTransactionLink } from '@colijnit/transactionapi/build/model/order-confirmation-transaction-link.bo';
|
|
180
|
-
import { PdfPosReceiptResponse } from '@colijnit/transactionapi/build/model/pdf-pos-receipt-response.bo';
|
|
181
180
|
import { ProjectCode } from '@colijnit/transactionapi/build/model/project-code.bo';
|
|
182
181
|
import { CashType } from '@colijnit/transactionapi/build/model/cash-type.bo';
|
|
183
182
|
import { PosGroup } from '@colijnit/transactionapi/build/model/pos-group.bo';
|
|
@@ -296,6 +295,7 @@ import { DiscountCode } from '@colijnit/transactionapi/build/model/discount-code
|
|
|
296
295
|
import { SetTransactionDiscountsRequest } from '@colijnit/transactionapi/build/model/set-transaction-discounts-request';
|
|
297
296
|
import { ChangeLineDiscountRequest } from '@colijnit/transactionapi/build/model/change-line-discount-request';
|
|
298
297
|
import { SuggestedReceiptLocation } from '@colijnit/transactionapi/build/model/suggested-receipt-location';
|
|
298
|
+
import { PdfHistoricPosReceiptRequest } from '@colijnit/transactionapi/build/model/pdf-historic-pos-receipt-request';
|
|
299
299
|
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
300
300
|
import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
|
|
301
301
|
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
@@ -1311,7 +1311,8 @@ declare class TransactionConnectorAdapterService {
|
|
|
1311
1311
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
1312
1312
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
1313
1313
|
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
1314
|
-
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest): Promise<
|
|
1314
|
+
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint: boolean): Promise<boolean>;
|
|
1315
|
+
pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint: boolean): Promise<boolean>;
|
|
1315
1316
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
1316
1317
|
printHistoricPosReceipt(printHistoricPosReceiptRequest: PrintHistoricPosReceiptRequest): Promise<boolean>;
|
|
1317
1318
|
emailPosReceipt(emailPosReceiptRequest: EmailPosReceiptRequest): Promise<boolean>;
|
|
@@ -1804,7 +1805,8 @@ declare class TransactionConnectorService {
|
|
|
1804
1805
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
1805
1806
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
1806
1807
|
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
1807
|
-
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest): Promise<
|
|
1808
|
+
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint: boolean): Promise<boolean>;
|
|
1809
|
+
pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint: boolean): Promise<boolean>;
|
|
1808
1810
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
1809
1811
|
printHistoricPosReceipt(printHistoricPosReceiptRequest: PrintHistoricPosReceiptRequest): Promise<boolean>;
|
|
1810
1812
|
emailPosReceipt(emailPosReceiptRequest: EmailPosReceiptRequest): Promise<boolean>;
|
|
@@ -2674,7 +2676,8 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2674
2676
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
2675
2677
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
2676
2678
|
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
2677
|
-
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest): Promise<
|
|
2679
|
+
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint?: boolean): Promise<boolean>;
|
|
2680
|
+
pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint?: boolean): Promise<boolean>;
|
|
2678
2681
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
2679
2682
|
printHistoricPosReceipt(printHistoricPosReceiptRequest: PrintHistoricPosReceiptRequest): Promise<boolean>;
|
|
2680
2683
|
emailPosReceipt(emailPosReceiptRequest: EmailPosReceiptRequest): Promise<boolean>;
|
|
@@ -6949,7 +6952,9 @@ declare class TransactionHeaderDepositPercentageModule {
|
|
|
6949
6952
|
|
|
6950
6953
|
declare class TransactionHeaderDepositAmountComponent extends TransactionInputHeaderFieldBaseComponent {
|
|
6951
6954
|
currencyPipe: typeof CoCurrencyPipe;
|
|
6955
|
+
private _elementRef;
|
|
6952
6956
|
set child(content: any);
|
|
6957
|
+
onDocumentClick(target: HTMLElement): void;
|
|
6953
6958
|
clickToEdit: boolean;
|
|
6954
6959
|
businessRuleApplied: EventEmitter<boolean>;
|
|
6955
6960
|
depositUpdated: EventEmitter<boolean>;
|
|
@@ -6958,6 +6963,7 @@ declare class TransactionHeaderDepositAmountComponent extends TransactionInputHe
|
|
|
6958
6963
|
amount: number;
|
|
6959
6964
|
commit(amount: number): Promise<boolean>;
|
|
6960
6965
|
onDisplayClick(event?: KeyboardEvent | MouseEvent): void;
|
|
6966
|
+
onBlur(): void;
|
|
6961
6967
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDepositAmountComponent, never>;
|
|
6962
6968
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDepositAmountComponent, "co-transaction-header-deposit-amount", never, { "clickToEdit": { "alias": "clickToEdit"; "required": false; }; }, { "businessRuleApplied": "businessRuleApplied"; "depositUpdated": "depositUpdated"; }, never, never, false, never>;
|
|
6963
6969
|
}
|
|
@@ -7115,9 +7121,10 @@ declare class TransactionHeaderScoringDateModule {
|
|
|
7115
7121
|
}
|
|
7116
7122
|
|
|
7117
7123
|
declare class TransactionHeaderPartialDeliveryComponent extends TransactionHeaderBaseComponent {
|
|
7118
|
-
|
|
7124
|
+
set content(value: InputCheckboxComponent);
|
|
7119
7125
|
showClass: boolean;
|
|
7120
7126
|
onlyIcon: boolean;
|
|
7127
|
+
checkbox: InputCheckboxComponent;
|
|
7121
7128
|
handleModelChange(value: boolean): void;
|
|
7122
7129
|
commit(allow: boolean): Promise<boolean>;
|
|
7123
7130
|
togglePartialDelivery(): void;
|
|
@@ -14582,6 +14589,7 @@ declare class TransactionQuickAccessInvoiceComponent extends TransactionQuickAcc
|
|
|
14582
14589
|
internalParameterAllowsPartialInvoicing: boolean;
|
|
14583
14590
|
allSelected: boolean;
|
|
14584
14591
|
layoutCode: LayoutCode;
|
|
14592
|
+
invoiceDate: Date;
|
|
14585
14593
|
private _subs;
|
|
14586
14594
|
ngOnInit(): void;
|
|
14587
14595
|
ngOnDestroy(): void;
|
|
@@ -14611,7 +14619,7 @@ declare class TransactionQuickAccessInvoiceComponent extends TransactionQuickAcc
|
|
|
14611
14619
|
|
|
14612
14620
|
declare class TransactionQuickAccessInvoiceModule {
|
|
14613
14621
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessInvoiceModule, never>;
|
|
14614
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionQuickAccessInvoiceModule, [typeof TransactionQuickAccessInvoiceComponent], [typeof i2.CommonModule, typeof i6.SendMethodDialogModule, typeof QuickSendButtonModule, typeof i3.InputCheckboxModule, typeof PipeModule, typeof TransactionSendDocumentsModule, typeof DigitalSignatureModule], [typeof TransactionQuickAccessInvoiceComponent]>;
|
|
14622
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionQuickAccessInvoiceModule, [typeof TransactionQuickAccessInvoiceComponent], [typeof i2.CommonModule, typeof i6.SendMethodDialogModule, typeof QuickSendButtonModule, typeof i3.InputCheckboxModule, typeof PipeModule, typeof TransactionSendDocumentsModule, typeof DigitalSignatureModule, typeof i3.InputDatePickerModule], [typeof TransactionQuickAccessInvoiceComponent]>;
|
|
14615
14623
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionQuickAccessInvoiceModule>;
|
|
14616
14624
|
}
|
|
14617
14625
|
|
|
@@ -15974,7 +15982,7 @@ declare class TransactionLinesSidePanelModule {
|
|
|
15974
15982
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLinesSidePanelModule>;
|
|
15975
15983
|
}
|
|
15976
15984
|
|
|
15977
|
-
declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseComponent implements OnInit, OnDestroy {
|
|
15985
|
+
declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
15978
15986
|
transactionHeaderService: TransactionHeaderService;
|
|
15979
15987
|
transactionEventService: TransactionEventService;
|
|
15980
15988
|
iconCacheService: IconCacheService;
|
|
@@ -15988,6 +15996,7 @@ declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseC
|
|
|
15988
15996
|
readonly WorkflowCategoryType: typeof WorkflowCategoryType;
|
|
15989
15997
|
readonly cfgNames: typeof TransactionCfgName;
|
|
15990
15998
|
openActivities: ComponentActivityListComponent;
|
|
15999
|
+
activityList: ElementRef<HTMLDivElement>;
|
|
15991
16000
|
showClass(): boolean;
|
|
15992
16001
|
posOrderData: PosOrderData;
|
|
15993
16002
|
customerPortal: boolean;
|
|
@@ -16010,6 +16019,7 @@ declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseC
|
|
|
16010
16019
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _dialogService: TransactionDialogService);
|
|
16011
16020
|
ngOnInit(): Promise<void>;
|
|
16012
16021
|
ngOnDestroy(): void;
|
|
16022
|
+
ngAfterViewInit(): void;
|
|
16013
16023
|
getActivities(): Promise<void>;
|
|
16014
16024
|
finishedActivitiesRefreshRequested(): void;
|
|
16015
16025
|
fullActivitiesRefreshRequested(): void;
|
|
@@ -16025,6 +16035,7 @@ declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseC
|
|
|
16025
16035
|
openCreatedTask(taskId: number): Promise<void>;
|
|
16026
16036
|
getWizardQuestionPairs(text?: string): string[][];
|
|
16027
16037
|
protected transactionInfoSet(): void;
|
|
16038
|
+
private scrollActivitiesToBottom;
|
|
16028
16039
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionServiceOverviewComponent, never>;
|
|
16029
16040
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionServiceOverviewComponent, "co-transaction-service-overview", never, { "posOrderData": { "alias": "posOrderData"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, {}, never, never, false, never>;
|
|
16030
16041
|
}
|
|
@@ -16593,6 +16604,7 @@ declare class TransactionCashRegisterOrderReceiptDialogComponent extends Transac
|
|
|
16593
16604
|
ngOnInit(): void;
|
|
16594
16605
|
emailReceipt(): void;
|
|
16595
16606
|
printReceipt(): void;
|
|
16607
|
+
pdfReceipt(): void;
|
|
16596
16608
|
noPrintReceipt(): void;
|
|
16597
16609
|
handleClickReceipt(title: string): void;
|
|
16598
16610
|
handlePrinterChanged(printer: Printer): void;
|
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
border-radius: $tp-transaction-header-block-border-radius $tp-transaction-header-block-border-radius 0 0;
|
|
18
18
|
z-index: 100;
|
|
19
19
|
}
|
|
20
|
+
&.no-pointer {
|
|
21
|
+
pointer-events: none;
|
|
22
|
+
cursor: initial;
|
|
23
|
+
}
|
|
20
24
|
.transaction-header-block-header {
|
|
21
25
|
font-family: $tp-transaction-header-block-label-font-family;
|
|
22
26
|
display: flex;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
.delivery-overview-wrapper {
|
|
15
15
|
.tile-view-modes {
|
|
16
16
|
top: 30px;
|
|
17
|
-
right:
|
|
17
|
+
right: 50px;
|
|
18
18
|
.co-icon {
|
|
19
19
|
width: 35px;
|
|
20
20
|
height: 35px;
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
.tile-view-modes {
|
|
94
94
|
position: absolute;
|
|
95
95
|
top: 20px;
|
|
96
|
-
right:
|
|
96
|
+
right: 50px;
|
|
97
97
|
}
|
|
98
98
|
.block {
|
|
99
99
|
flex: 1;
|
|
@@ -10,9 +10,11 @@
|
|
|
10
10
|
flex-grow: 1;
|
|
11
11
|
flex-shrink: 1;
|
|
12
12
|
max-width: calc(100% - 450px);
|
|
13
|
+
margin: 30px auto;
|
|
14
|
+
padding: 30px 0;
|
|
15
|
+
box-shadow: 1px 1px 4px #0000001a;
|
|
13
16
|
co-stepper-step {
|
|
14
17
|
width: 100%;
|
|
15
|
-
max-width: 600px;
|
|
16
18
|
.co-transaction-header-popup-relation {
|
|
17
19
|
width: 100%;
|
|
18
20
|
}
|
|
@@ -92,6 +92,14 @@
|
|
|
92
92
|
background-color: transparent;
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
|
+
.no-relation {
|
|
96
|
+
position: relative;
|
|
97
|
+
left: $tp-co-transaction-header-relation-content-empty;
|
|
98
|
+
.no-relation-label {
|
|
99
|
+
font-weight: bold;
|
|
100
|
+
font-size: $tp-font-size-big;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
95
103
|
.transaction-relation-icon {
|
|
96
104
|
position: absolute;
|
|
97
105
|
left: $tp-co-transaction-header-relation-content-icon-left;
|
|
@@ -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
|
+
}
|
package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss
CHANGED
|
@@ -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";
|