@colijnit/transaction 261.20.18 → 261.20.19
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 +425 -494
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +39 -48
- 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/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6876,6 +6876,33 @@ declare class TransactionSearchService {
|
|
|
6876
6876
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionSearchService>;
|
|
6877
6877
|
}
|
|
6878
6878
|
|
|
6879
|
+
declare class TransactionSendDocumentsComponent extends TransactionHeaderBaseComponent implements OnInit, OnDestroy {
|
|
6880
|
+
readonly layoutCodes: typeof LayoutCode;
|
|
6881
|
+
set transactionTypeCategory(value: TransactionTypeCategory);
|
|
6882
|
+
get transactionTypeCategory(): TransactionTypeCategory;
|
|
6883
|
+
selected: boolean;
|
|
6884
|
+
openSendMethodDialog: EventEmitter<MouseEvent>;
|
|
6885
|
+
showClass(): boolean;
|
|
6886
|
+
layoutCode: LayoutCode;
|
|
6887
|
+
layoutCodeLabel: string;
|
|
6888
|
+
showDialog: boolean;
|
|
6889
|
+
activeReport: HistoricReport;
|
|
6890
|
+
historicReports: HistoricReport[];
|
|
6891
|
+
private _transactionTypeCategory;
|
|
6892
|
+
private _subs;
|
|
6893
|
+
ngOnInit(): void;
|
|
6894
|
+
ngOnDestroy(): void;
|
|
6895
|
+
getHistoricReports(refresh?: boolean): void;
|
|
6896
|
+
toggleSendDocumentsDialog(): void;
|
|
6897
|
+
handleShowHistoricDocumentLines(historicReport: HistoricReport): void;
|
|
6898
|
+
getSendMethodIcon(report: HistoricReport): Icon;
|
|
6899
|
+
getSendMethodDescription(report: HistoricReport): string;
|
|
6900
|
+
private _setLayoutCode;
|
|
6901
|
+
protected readonly LayoutCode: typeof LayoutCode;
|
|
6902
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSendDocumentsComponent, never>;
|
|
6903
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSendDocumentsComponent, "co-transaction-send-documents", never, { "transactionTypeCategory": { "alias": "transactionTypeCategory"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "openSendMethodDialog": "openSendMethodDialog"; }, never, never, false, never>;
|
|
6904
|
+
}
|
|
6905
|
+
|
|
6879
6906
|
declare abstract class TransactionQuickAccessSendMethodBaseComponent extends TransactionHeaderBaseComponent implements OnInit {
|
|
6880
6907
|
searchService: TransactionSearchService;
|
|
6881
6908
|
transactionHeaderService: TransactionHeaderService;
|
|
@@ -6890,6 +6917,7 @@ declare abstract class TransactionQuickAccessSendMethodBaseComponent extends Tra
|
|
|
6890
6917
|
readonly icons: typeof Icon;
|
|
6891
6918
|
readonly sendMethodType: typeof SendMethodType;
|
|
6892
6919
|
readonly transactionTypeCategory: typeof TransactionTypeCategory;
|
|
6920
|
+
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
6893
6921
|
printerList: Printer[];
|
|
6894
6922
|
emailLayouts: ReportLayoutSelectionEmail[];
|
|
6895
6923
|
printLayouts: ReportLayoutSelectionPrint[];
|
|
@@ -6923,7 +6951,7 @@ declare abstract class TransactionQuickAccessSendMethodBaseComponent extends Tra
|
|
|
6923
6951
|
commitAndRefreshTransaction(): void;
|
|
6924
6952
|
getTermsAndConditionsForm(): void;
|
|
6925
6953
|
upsertDocument(doc: CoDocument): Promise<void>;
|
|
6926
|
-
onShowFilePreview(reportId: number): void
|
|
6954
|
+
onShowFilePreview(reportId: number): Promise<void>;
|
|
6927
6955
|
getMethodFromEvent(method: string | ProcessPrintRequest): string;
|
|
6928
6956
|
protected abstract printDocument(request: ReportingDocumentPrintSignDocBaseRequest, localPrint: boolean): any;
|
|
6929
6957
|
protected abstract emailDocument(request: ReportingDocumentEmailSignDocBaseRequest): any;
|
|
@@ -6933,6 +6961,8 @@ declare abstract class TransactionQuickAccessSendMethodBaseComponent extends Tra
|
|
|
6933
6961
|
protected abstract combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): any;
|
|
6934
6962
|
protected abstract getDefaultEmailAddressList(): Promise<string[]>;
|
|
6935
6963
|
protected abstract getDefaultSendMethod(): Promise<number>;
|
|
6964
|
+
protected getPreviewHistoricDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
6965
|
+
protected getPreviewDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
6936
6966
|
private _prepareData;
|
|
6937
6967
|
private _getPrinters;
|
|
6938
6968
|
private _getDefaultSendMethod;
|
|
@@ -13835,36 +13865,8 @@ declare class TransactionQuickAccessInterbranchReceivedGoodsModule {
|
|
|
13835
13865
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionQuickAccessInterbranchReceivedGoodsModule>;
|
|
13836
13866
|
}
|
|
13837
13867
|
|
|
13838
|
-
declare class TransactionSendDocumentsComponent extends TransactionHeaderBaseComponent implements OnInit, OnDestroy {
|
|
13839
|
-
readonly layoutCodes: typeof LayoutCode;
|
|
13840
|
-
set transactionTypeCategory(value: TransactionTypeCategory);
|
|
13841
|
-
get transactionTypeCategory(): TransactionTypeCategory;
|
|
13842
|
-
selected: boolean;
|
|
13843
|
-
openSendMethodDialog: EventEmitter<MouseEvent>;
|
|
13844
|
-
showClass(): boolean;
|
|
13845
|
-
layoutCode: LayoutCode;
|
|
13846
|
-
layoutCodeLabel: string;
|
|
13847
|
-
showDialog: boolean;
|
|
13848
|
-
activeReport: HistoricReport;
|
|
13849
|
-
historicReports: HistoricReport[];
|
|
13850
|
-
private _transactionTypeCategory;
|
|
13851
|
-
private _subs;
|
|
13852
|
-
ngOnInit(): void;
|
|
13853
|
-
ngOnDestroy(): void;
|
|
13854
|
-
getHistoricReports(refresh?: boolean): void;
|
|
13855
|
-
toggleSendDocumentsDialog(): void;
|
|
13856
|
-
handleShowHistoricDocumentLines(historicReport: HistoricReport): void;
|
|
13857
|
-
getSendMethodIcon(report: HistoricReport): Icon;
|
|
13858
|
-
getSendMethodDescription(report: HistoricReport): string;
|
|
13859
|
-
private _setLayoutCode;
|
|
13860
|
-
protected readonly LayoutCode: typeof LayoutCode;
|
|
13861
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSendDocumentsComponent, never>;
|
|
13862
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSendDocumentsComponent, "co-transaction-send-documents", never, { "transactionTypeCategory": { "alias": "transactionTypeCategory"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "openSendMethodDialog": "openSendMethodDialog"; }, never, never, false, never>;
|
|
13863
|
-
}
|
|
13864
|
-
|
|
13865
13868
|
declare class TransactionQuickAccessOverviewComponent extends TransactionQuickAccessSendMethodBaseComponent implements OnInit, OnDestroy {
|
|
13866
13869
|
protected readonly categories: typeof TransactionTypeCategory;
|
|
13867
|
-
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
13868
13870
|
showClass(): boolean;
|
|
13869
13871
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
13870
13872
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
@@ -13884,9 +13886,8 @@ declare class TransactionQuickAccessOverviewComponent extends TransactionQuickAc
|
|
|
13884
13886
|
protected getPrintLayouts(): Promise<ReportLayoutSelectionPrint[]>;
|
|
13885
13887
|
protected pdfDocument(request: PdfOrderConfirmationRequest): Promise<void>;
|
|
13886
13888
|
protected printDocument(request: ReportingDocumentPrintSignDocBaseRequest, localPrint: boolean): Promise<void>;
|
|
13887
|
-
|
|
13888
|
-
|
|
13889
|
-
private _getPreviewDocumentData;
|
|
13889
|
+
protected getPreviewHistoricDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
13890
|
+
protected getPreviewDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
13890
13891
|
protected getDefaultSendMethod(): Promise<number>;
|
|
13891
13892
|
private _prepareHistoricRequest;
|
|
13892
13893
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
@@ -13947,7 +13948,6 @@ declare class TransactionQuickAccessOverviewModule {
|
|
|
13947
13948
|
}
|
|
13948
13949
|
|
|
13949
13950
|
declare class TransactionQuickAccessOrderDeliveryComponent extends TransactionQuickAccessSendMethodBaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
13950
|
-
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
13951
13951
|
showClass(): boolean;
|
|
13952
13952
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
13953
13953
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
@@ -13969,9 +13969,8 @@ declare class TransactionQuickAccessOrderDeliveryComponent extends TransactionQu
|
|
|
13969
13969
|
protected pdfDocument(reportingDocumentPdfBaseRequest: ReportingDocumentPdfBaseRequest): void;
|
|
13970
13970
|
protected printDocument(reportingDocumentPrintBaseRequest: ReportingDocumentPrintSignDocBaseRequest, localPrint: boolean): void;
|
|
13971
13971
|
protected emailDocument(reportingDocumentEmailBaseRequest: ReportingDocumentEmailSignDocBaseRequest): void;
|
|
13972
|
-
|
|
13973
|
-
|
|
13974
|
-
private _getPreviewDocumentData;
|
|
13972
|
+
protected getPreviewHistoricDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
13973
|
+
protected getPreviewDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
13975
13974
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
13976
13975
|
transactionSet(): void;
|
|
13977
13976
|
_prepareRequest(request: EmailDeliveryNoteRequest | PrintDeliveryNoteRequest | PdfDeliveryNoteRequest): void;
|
|
@@ -14029,7 +14028,6 @@ declare class TransactionQuickAccessOrderPurchaseComponent extends TransactionQu
|
|
|
14029
14028
|
dialogService: TransactionDialogService;
|
|
14030
14029
|
salesReservationService: TransactionSalesReservationService;
|
|
14031
14030
|
showClass(): boolean;
|
|
14032
|
-
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
14033
14031
|
canGenerate: boolean;
|
|
14034
14032
|
canReserve: boolean;
|
|
14035
14033
|
selectedTransactions: TransactionSearchView[];
|
|
@@ -14094,7 +14092,6 @@ declare class TransactionQuickAccessGoodsAllocationModule {
|
|
|
14094
14092
|
|
|
14095
14093
|
declare class TransactionQuickAccessPurchaseOrderOverviewComponent extends TransactionQuickAccessSendMethodBaseComponent {
|
|
14096
14094
|
showClass(): boolean;
|
|
14097
|
-
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
14098
14095
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
14099
14096
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
14100
14097
|
reportDocumentPdfRequest: PdfPurchaseOrderRequest;
|
|
@@ -14114,9 +14111,8 @@ declare class TransactionQuickAccessPurchaseOrderOverviewComponent extends Trans
|
|
|
14114
14111
|
protected getPrintLayouts(): Promise<ReportLayoutSelectionPrint[]>;
|
|
14115
14112
|
protected pdfDocument(request: PdfPurchaseOrderRequest): Promise<void>;
|
|
14116
14113
|
protected printDocument(request: ReportingDocumentPrintSignDocBaseRequest, localPrint: boolean): Promise<void>;
|
|
14117
|
-
|
|
14118
|
-
|
|
14119
|
-
private _getPreviewDocumentData;
|
|
14114
|
+
protected getPreviewHistoricDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
14115
|
+
protected getPreviewDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
14120
14116
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
14121
14117
|
protected getDefaultSendMethod(): Promise<number>;
|
|
14122
14118
|
private _prepareHistoricRequest;
|
|
@@ -14131,7 +14127,6 @@ declare class TransactionQuickAccessPurchaseOrderOverviewModule {
|
|
|
14131
14127
|
}
|
|
14132
14128
|
|
|
14133
14129
|
declare class TransactionQuickAccessInvoiceComponent extends TransactionQuickAccessSendMethodBaseComponent implements OnInit, OnDestroy {
|
|
14134
|
-
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
14135
14130
|
showClass(): boolean;
|
|
14136
14131
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
14137
14132
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
@@ -14152,9 +14147,8 @@ declare class TransactionQuickAccessInvoiceComponent extends TransactionQuickAcc
|
|
|
14152
14147
|
protected pdfDocument(request: ReportingDocumentPdfBaseRequest): void;
|
|
14153
14148
|
protected printDocument(request: ReportingDocumentPrintSignDocBaseRequest, localPrint: boolean): void;
|
|
14154
14149
|
protected emailDocument(request: ReportingDocumentEmailSignDocBaseRequest): void;
|
|
14155
|
-
|
|
14156
|
-
|
|
14157
|
-
private _getPreviewDocumentData;
|
|
14150
|
+
protected getPreviewHistoricDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
14151
|
+
protected getPreviewDocumentData(reportId: number): Promise<ReportingPdfBaseResponse>;
|
|
14158
14152
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
14159
14153
|
transactionSet(): void;
|
|
14160
14154
|
_prepareRequest(request: EmailInvoiceRequest | PrintInvoiceRequest | PdfInvoiceRequest): boolean;
|
|
@@ -14241,7 +14235,6 @@ declare class TransactionQuickAccessSalesQuotationComponent extends TransactionQ
|
|
|
14241
14235
|
protected dialogService: TransactionDialogService;
|
|
14242
14236
|
protected connector: TransactionConnectorService;
|
|
14243
14237
|
private _transactionCreationService;
|
|
14244
|
-
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
14245
14238
|
showConvertDialog: boolean;
|
|
14246
14239
|
creatingSalesOrder: boolean;
|
|
14247
14240
|
refTransactions: TransactionRefTransaction[];
|
|
@@ -14489,7 +14482,6 @@ declare class TransactionQuickAccessOrderStickerModule {
|
|
|
14489
14482
|
}
|
|
14490
14483
|
|
|
14491
14484
|
declare class TransactionQuickAccessServiceOrderComponent extends TransactionQuickAccessSendMethodBaseComponent {
|
|
14492
|
-
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
14493
14485
|
showClass(): boolean;
|
|
14494
14486
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
14495
14487
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
@@ -14528,7 +14520,6 @@ declare class TransactionQuickAccessInterbranchOrderPurchaseComponent extends Tr
|
|
|
14528
14520
|
dialogService: TransactionDialogService;
|
|
14529
14521
|
salesReservationService: TransactionSalesReservationService;
|
|
14530
14522
|
showClass(): boolean;
|
|
14531
|
-
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
14532
14523
|
canGenerate: boolean;
|
|
14533
14524
|
canReserve: boolean;
|
|
14534
14525
|
selectedTransactions: TransactionSearchView[];
|
|
@@ -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";
|