@colijnit/transaction 300.1.8 → 300.1.9
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 +2409 -2178
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +52 -6
- 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 +2 -2
- package/colijnit-transaction-300.1.7.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -4818,6 +4818,7 @@ declare class TransactionLineComponent implements OnChanges, OnInit, OnDestroy {
|
|
|
4818
4818
|
|
|
4819
4819
|
declare class OrderLineSetService {
|
|
4820
4820
|
currentOrderLineSetCode: string;
|
|
4821
|
+
currentCompositionId: number;
|
|
4821
4822
|
static ɵfac: i0.ɵɵFactoryDeclaration<OrderLineSetService, never>;
|
|
4822
4823
|
static ɵprov: i0.ɵɵInjectableDeclaration<OrderLineSetService>;
|
|
4823
4824
|
}
|
|
@@ -5030,10 +5031,13 @@ declare class TransactionOverviewLineComponent extends TransactionLineBaseCompon
|
|
|
5030
5031
|
constructor(orderLineSetService: OrderLineSetService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, transactionConnectorService: TransactionConnectorService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, transactionService: TransactionService, imageService: TransactionImageService, dictionaryService: DictionaryService, changeDetector: ChangeDetectorRef);
|
|
5031
5032
|
ngOnInit(): void;
|
|
5032
5033
|
ngOnDestroy(): void;
|
|
5034
|
+
canShowCheckbox(): boolean;
|
|
5035
|
+
checkboxValue(): boolean;
|
|
5033
5036
|
handleCheckBoxValueChanged(value: boolean): void;
|
|
5034
5037
|
handleServiceExistingOrderNavigation(ref: TransactionRefTransaction): void;
|
|
5035
5038
|
onDescriptionDblClick(): void;
|
|
5036
5039
|
openForm(): Promise<void>;
|
|
5040
|
+
protected readonly isNaN: typeof isNaN;
|
|
5037
5041
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionOverviewLineComponent, never>;
|
|
5038
5042
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionOverviewLineComponent, "co-transaction-overview-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; }, { "descriptionDblClick": "descriptionDblClick"; }, never, never, false, never>;
|
|
5039
5043
|
}
|
|
@@ -6487,6 +6491,8 @@ declare class RelationAddressesModule {
|
|
|
6487
6491
|
declare class DropShipmentComponent implements OnInit {
|
|
6488
6492
|
iconCacheService: IconCacheService;
|
|
6489
6493
|
transactionService: TransactionService;
|
|
6494
|
+
transactionEventService: TransactionEventService;
|
|
6495
|
+
changeDetection: ChangeDetectorRef;
|
|
6490
6496
|
private _dialogService;
|
|
6491
6497
|
showClass(): boolean;
|
|
6492
6498
|
transUuid: string;
|
|
@@ -6498,15 +6504,18 @@ declare class DropShipmentComponent implements OnInit {
|
|
|
6498
6504
|
showDisconnectButton: boolean;
|
|
6499
6505
|
editMode: boolean;
|
|
6500
6506
|
readonly icons: typeof Icon;
|
|
6501
|
-
constructor(iconCacheService: IconCacheService, transactionService: TransactionService, _dialogService: TransactionDialogService);
|
|
6507
|
+
constructor(iconCacheService: IconCacheService, transactionService: TransactionService, transactionEventService: TransactionEventService, changeDetection: ChangeDetectorRef, _dialogService: TransactionDialogService);
|
|
6502
6508
|
ngOnInit(): void;
|
|
6509
|
+
handleShowDropShipmentDialog(): void;
|
|
6503
6510
|
saveDropShipment(): void;
|
|
6504
6511
|
closeDropShipment(): void;
|
|
6505
6512
|
handleSearch(searchTerm: string): void;
|
|
6513
|
+
setExistingAddressIfExists(): void;
|
|
6506
6514
|
selectAddress(selectedAddress: DropshipmentInfo): void;
|
|
6507
6515
|
removeDropShipment(): void;
|
|
6508
6516
|
addNewAddress(): void;
|
|
6509
6517
|
cancelAddingNewAddress(): void;
|
|
6518
|
+
protected detectChanges(): void;
|
|
6510
6519
|
private _objectContainsTerm;
|
|
6511
6520
|
private _getAddresses;
|
|
6512
6521
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropShipmentComponent, never>;
|
|
@@ -8056,7 +8065,6 @@ declare class TransactionMarginInfoLineComponent extends TransactionLineBaseComp
|
|
|
8056
8065
|
statusBarConfigNames: StatusBarCfgNames;
|
|
8057
8066
|
discountConfigNames: LineDiscountCfgNames;
|
|
8058
8067
|
constructor(orderLineSetService: OrderLineSetService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef);
|
|
8059
|
-
handleCheckBoxValueChanged(value: boolean): void;
|
|
8060
8068
|
onDescriptionDblClick(): void;
|
|
8061
8069
|
protected transactionInfoSet(): void;
|
|
8062
8070
|
protected visibilitySet(): void;
|
|
@@ -8690,7 +8698,6 @@ declare class TransactionCustomerPortalLineComponent extends TransactionLineBase
|
|
|
8690
8698
|
statusBarConfigNames: StatusBarCfgNames;
|
|
8691
8699
|
discountConfigNames: LineDiscountCfgNames;
|
|
8692
8700
|
constructor(orderLineSetService: OrderLineSetService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef);
|
|
8693
|
-
handleCheckBoxValueChanged(value: boolean): void;
|
|
8694
8701
|
onDescriptionDblClick(): void;
|
|
8695
8702
|
getWeekNumber(dateInput: Date | string | null | undefined): string;
|
|
8696
8703
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCustomerPortalLineComponent, never>;
|
|
@@ -9499,9 +9506,12 @@ declare class TransactionSalesOrderQuotationLineComponent extends TransactionLin
|
|
|
9499
9506
|
showClass(): boolean;
|
|
9500
9507
|
constructor(orderLineSetService: OrderLineSetService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef);
|
|
9501
9508
|
ngOnInit(): Promise<void>;
|
|
9509
|
+
canShowCheckbox(): boolean;
|
|
9510
|
+
checkboxValue(): boolean;
|
|
9502
9511
|
handleCheckBoxValueChanged(value: boolean): void;
|
|
9503
9512
|
discountConfigNames: LineDiscountCfgNames;
|
|
9504
9513
|
protected readonly TransactionTypeCategory: typeof TransactionTypeCategory;
|
|
9514
|
+
protected readonly isNaN: typeof isNaN;
|
|
9505
9515
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSalesOrderQuotationLineComponent, never>;
|
|
9506
9516
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSalesOrderQuotationLineComponent, "co-transaction-sales-order-quotation-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; }, {}, never, never, false, never>;
|
|
9507
9517
|
}
|
|
@@ -10029,7 +10039,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
10029
10039
|
showCategories: boolean;
|
|
10030
10040
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10031
10041
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10032
|
-
currentTitle(): "
|
|
10042
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
10033
10043
|
ngOnDestroy(): void;
|
|
10034
10044
|
handleClickWrapper(event: MouseEvent): void;
|
|
10035
10045
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10055,7 +10065,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
10055
10065
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
10056
10066
|
ngOnDestroy(): void;
|
|
10057
10067
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10058
|
-
currentTitle(): "
|
|
10068
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
10059
10069
|
handleClickWrapper(event: MouseEvent): void;
|
|
10060
10070
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
10061
10071
|
private handleDocumentClick;
|
|
@@ -10107,7 +10117,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10107
10117
|
showCategories: boolean;
|
|
10108
10118
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10109
10119
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10110
|
-
currentTitle(): "
|
|
10120
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
10111
10121
|
ngOnDestroy(): void;
|
|
10112
10122
|
handleClickWrapper(event: MouseEvent): void;
|
|
10113
10123
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -12112,6 +12122,11 @@ declare class TransactionSalesOrderFilterContentOrderComponent extends Transacti
|
|
|
12112
12122
|
text: any;
|
|
12113
12123
|
value: any;
|
|
12114
12124
|
};
|
|
12125
|
+
searchTypes: FilterItemViewmodel[];
|
|
12126
|
+
searchTypeFields: {
|
|
12127
|
+
text: any;
|
|
12128
|
+
value: any;
|
|
12129
|
+
};
|
|
12115
12130
|
handleCollectionChange(): void;
|
|
12116
12131
|
constructor(searchService: TransactionSearchService, filterRequestService: FilterRequestService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, relationService: TransactionRelationService, transationConnectorService: TransactionConnectorService, transactionFilterContentService: TransactionFilterContentService);
|
|
12117
12132
|
loadCustomers: (nameFilter: string) => Promise<FilterItemViewmodel[]>;
|
|
@@ -12132,6 +12147,7 @@ declare class TransactionSalesOrderFilterContentOrderComponent extends Transacti
|
|
|
12132
12147
|
private _setWorkFlowStatusNames;
|
|
12133
12148
|
private _setAllProjectCodes;
|
|
12134
12149
|
private _setWithOrWithoutLines;
|
|
12150
|
+
private _setSearchTypes;
|
|
12135
12151
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSalesOrderFilterContentOrderComponent, never>;
|
|
12136
12152
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSalesOrderFilterContentOrderComponent, "co-transaction-sales-order-filter-content-order", never, {}, {}, never, never, false, never>;
|
|
12137
12153
|
}
|
|
@@ -12388,6 +12404,11 @@ declare class TransactionInterBranchOrderFilterContentOrderComponent extends Tra
|
|
|
12388
12404
|
text: any;
|
|
12389
12405
|
value: any;
|
|
12390
12406
|
};
|
|
12407
|
+
searchTypes: FilterItemViewmodel[];
|
|
12408
|
+
searchTypeFields: {
|
|
12409
|
+
text: any;
|
|
12410
|
+
value: any;
|
|
12411
|
+
};
|
|
12391
12412
|
handleCollectionChange(): void;
|
|
12392
12413
|
loadCustomers: (nameFilter: string) => Promise<FilterItemViewmodel[]>;
|
|
12393
12414
|
protected loadCollections(): void;
|
|
@@ -12406,6 +12427,7 @@ declare class TransactionInterBranchOrderFilterContentOrderComponent extends Tra
|
|
|
12406
12427
|
private _setTransactionKinds;
|
|
12407
12428
|
private _setWorkFlowStatusNames;
|
|
12408
12429
|
private _setAllProjectCodes;
|
|
12430
|
+
private _setSearchTypes;
|
|
12409
12431
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInterBranchOrderFilterContentOrderComponent, never>;
|
|
12410
12432
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInterBranchOrderFilterContentOrderComponent, "co-transaction-inter-branch-order-filter-content-order", never, {}, {}, never, never, false, never>;
|
|
12411
12433
|
}
|
|
@@ -12603,6 +12625,11 @@ declare class TransactionPurchaseOrderFilterContentOrderComponent extends Transa
|
|
|
12603
12625
|
text: any;
|
|
12604
12626
|
value: any;
|
|
12605
12627
|
};
|
|
12628
|
+
searchTypes: FilterItemViewmodel[];
|
|
12629
|
+
searchTypeFields: {
|
|
12630
|
+
text: any;
|
|
12631
|
+
value: any;
|
|
12632
|
+
};
|
|
12606
12633
|
transStartDate: Date;
|
|
12607
12634
|
transEndDate: Date;
|
|
12608
12635
|
deliveryStartDate: Date;
|
|
@@ -12621,6 +12648,7 @@ declare class TransactionPurchaseOrderFilterContentOrderComponent extends Transa
|
|
|
12621
12648
|
private _setAllProjectCodes;
|
|
12622
12649
|
private _setSuppliers;
|
|
12623
12650
|
private _setWithOrWithoutLines;
|
|
12651
|
+
private _setSearchTypes;
|
|
12624
12652
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPurchaseOrderFilterContentOrderComponent, never>;
|
|
12625
12653
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionPurchaseOrderFilterContentOrderComponent, "co-transaction-purchase-order-filter-content-order", never, {}, {}, never, never, false, never>;
|
|
12626
12654
|
}
|
|
@@ -12790,6 +12818,11 @@ declare class TransactionSalesQuotationFilterContentOrderComponent extends Trans
|
|
|
12790
12818
|
text: any;
|
|
12791
12819
|
value: any;
|
|
12792
12820
|
};
|
|
12821
|
+
searchTypes: FilterItemViewmodel[];
|
|
12822
|
+
searchTypeFields: {
|
|
12823
|
+
text: any;
|
|
12824
|
+
value: any;
|
|
12825
|
+
};
|
|
12793
12826
|
loadCustomers: (nameFilter: string) => Promise<FilterItemViewmodel[]>;
|
|
12794
12827
|
protected loadCollections(): void;
|
|
12795
12828
|
private _setSalesPersons;
|
|
@@ -12804,6 +12837,7 @@ declare class TransactionSalesQuotationFilterContentOrderComponent extends Trans
|
|
|
12804
12837
|
private _setRetailStadiums;
|
|
12805
12838
|
private _setIsQuotationProcessedToSales;
|
|
12806
12839
|
private _setAllProjectCodes;
|
|
12840
|
+
private _setSearchTypes;
|
|
12807
12841
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSalesQuotationFilterContentOrderComponent, never>;
|
|
12808
12842
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSalesQuotationFilterContentOrderComponent, "co-transaction-sales-quotation-filter-content-order", never, {}, {}, never, never, false, never>;
|
|
12809
12843
|
}
|
|
@@ -13064,6 +13098,11 @@ declare class TransactionCashDeskFilterContentOrderComponent extends Transaction
|
|
|
13064
13098
|
text: any;
|
|
13065
13099
|
value: any;
|
|
13066
13100
|
};
|
|
13101
|
+
searchTypes: FilterItemViewmodel[];
|
|
13102
|
+
searchTypeFields: {
|
|
13103
|
+
text: any;
|
|
13104
|
+
value: any;
|
|
13105
|
+
};
|
|
13067
13106
|
handleCollectionChange(): void;
|
|
13068
13107
|
loadCustomers: (nameFilter: string) => Promise<FilterItemViewmodel[]>;
|
|
13069
13108
|
protected loadCollections(): void;
|
|
@@ -13079,6 +13118,7 @@ declare class TransactionCashDeskFilterContentOrderComponent extends Transaction
|
|
|
13079
13118
|
private _setOrderActive;
|
|
13080
13119
|
private _setCustomerGroups;
|
|
13081
13120
|
private _setWorkFlowStatusNames;
|
|
13121
|
+
private _setSearchTypes;
|
|
13082
13122
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCashDeskFilterContentOrderComponent, never>;
|
|
13083
13123
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionCashDeskFilterContentOrderComponent, "co-transaction-cash-desk-filter-content-order", never, {}, {}, never, never, false, never>;
|
|
13084
13124
|
}
|
|
@@ -13177,6 +13217,11 @@ declare class TransactionServiceOrderFilterContentOrderComponent extends Transac
|
|
|
13177
13217
|
text: any;
|
|
13178
13218
|
value: any;
|
|
13179
13219
|
};
|
|
13220
|
+
searchTypes: FilterItemViewmodel[];
|
|
13221
|
+
searchTypeFields: {
|
|
13222
|
+
text: any;
|
|
13223
|
+
value: any;
|
|
13224
|
+
};
|
|
13180
13225
|
handleCollectionChange(): void;
|
|
13181
13226
|
loadCustomers: (nameFilter: string) => Promise<FilterItemViewmodel[]>;
|
|
13182
13227
|
protected loadCollections(): void;
|
|
@@ -13194,6 +13239,7 @@ declare class TransactionServiceOrderFilterContentOrderComponent extends Transac
|
|
|
13194
13239
|
private _setWorkFlowStatusNames;
|
|
13195
13240
|
private _setSLAProducts;
|
|
13196
13241
|
private _setAllProjectCodes;
|
|
13242
|
+
private _setSearchTypes;
|
|
13197
13243
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionServiceOrderFilterContentOrderComponent, never>;
|
|
13198
13244
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionServiceOrderFilterContentOrderComponent, "co-transaction-service-order-filter-content-order", never, {}, {}, never, never, false, never>;
|
|
13199
13245
|
}
|
|
@@ -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";
|