@colijnit/transaction 262.1.29 → 262.1.30
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 +3052 -2674
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +44 -5
- package/lib/component/core/base/components/voucher-code-pending-reason-dialog/style/_material-definition.scss +1 -1
- package/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/style/_layout.scss +24 -5
- package/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/style/_material-definition.scss +8 -2
- package/lib/component/transaction-header/transaction-header-popup/style/_layout.scss +7 -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-search/transaction-search-tile/transaction-invoice-check-order-tile/style/_layout.scss +20 -8
- package/lib/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile/style/_material-definition.scss +11 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -2327,6 +2327,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2327
2327
|
internalParameterSellDirectlyFromSupp: boolean;
|
|
2328
2328
|
internalParameterStockMutBeforeDelivery: boolean;
|
|
2329
2329
|
printColliStickerDefault: boolean;
|
|
2330
|
+
internalPlanDaysParam: number;
|
|
2330
2331
|
contactPersonId: number;
|
|
2331
2332
|
firstDayOfWeek: string;
|
|
2332
2333
|
articleAmountChange: BehaviorSubject<number>;
|
|
@@ -2368,6 +2369,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2368
2369
|
logisticsButtonVisible: () => Promise<boolean>;
|
|
2369
2370
|
prepareDropShipmentInternalParam(): void;
|
|
2370
2371
|
prepareReceiveGoodsWithDataTerminalInternalParam(): void;
|
|
2372
|
+
prepareInternalPlanDaysParam(): Promise<void>;
|
|
2371
2373
|
preparePrintColliStickerDefault(): void;
|
|
2372
2374
|
getInternalParameter(param: InternalParam): Promise<boolean>;
|
|
2373
2375
|
getCashLimitValue(param: InternalParam): Promise<number>;
|
|
@@ -3037,6 +3039,7 @@ declare class TransactionHeaderService {
|
|
|
3037
3039
|
fullyInvoiced: boolean;
|
|
3038
3040
|
partiallyOrFullyInvoiced: boolean;
|
|
3039
3041
|
fullyDelivered: boolean;
|
|
3042
|
+
partiallyOrFullyDelivered: boolean;
|
|
3040
3043
|
partiallyOrFullyOrdered: boolean;
|
|
3041
3044
|
partiallyOrFullyInvoiceControl: boolean;
|
|
3042
3045
|
partiallyOrFullyReceived: boolean;
|
|
@@ -3068,7 +3071,8 @@ declare class TransactionHeaderService {
|
|
|
3068
3071
|
private _relation;
|
|
3069
3072
|
private _readOnly;
|
|
3070
3073
|
constructor(_transactionService: TransactionService, _relationService: TransactionRelationService, _transactionPaymentConnectorService: TransactionPaymentConnectorService, _dictionaryService: DictionaryService, _transactionEventService: TransactionEventService);
|
|
3071
|
-
|
|
3074
|
+
canChangeRelationOnTransaction(): boolean;
|
|
3075
|
+
canAlterRelationDataOnTransaction(): boolean;
|
|
3072
3076
|
getTransactionMargeInfoList(): Promise<void>;
|
|
3073
3077
|
createCloneRelation(): void;
|
|
3074
3078
|
getPlanOrder(): Promise<PlanOrder>;
|
|
@@ -4131,6 +4135,7 @@ declare enum TransactionCfgName {
|
|
|
4131
4135
|
LineNetLineTotal = "lineNetLineTotal",
|
|
4132
4136
|
LinePurchasePrice = "linePurchasePrice",
|
|
4133
4137
|
LinePurchaseDescription = "linePurchaseDescription",
|
|
4138
|
+
LineExpectedDeliveryDateCP = "lineExpectedDeliveryDateCP",
|
|
4134
4139
|
LineSupplier = "lineSupplier",
|
|
4135
4140
|
LineRefTransactions = "lineRefTransactions",
|
|
4136
4141
|
LineConfirmedDeliveryDate = "lineConfirmedDeliveryDate",
|
|
@@ -4985,6 +4990,7 @@ declare class TransactionOverviewLineComponent extends TransactionLineBaseCompon
|
|
|
4985
4990
|
showClass(): boolean;
|
|
4986
4991
|
stock: StockStatus;
|
|
4987
4992
|
noLabel: boolean;
|
|
4993
|
+
showEstimatedDeliveryDate: boolean;
|
|
4988
4994
|
statusBarConfigNames: StatusBarCfgNames;
|
|
4989
4995
|
discountConfigNames: LineDiscountCfgNames;
|
|
4990
4996
|
private _subs;
|
|
@@ -6051,6 +6057,7 @@ declare class TransactionHeaderPopupRelationComponent extends TransactionHeaderP
|
|
|
6051
6057
|
showMessageForChangeCustomer: boolean;
|
|
6052
6058
|
showInvoiceAddress: boolean;
|
|
6053
6059
|
noLockOnCustomerSet: boolean;
|
|
6060
|
+
showChangeOptionWhenCustomerReadonly: boolean;
|
|
6054
6061
|
inputChangeForSuggestions: EventEmitter<RelationSuggestionsRequest>;
|
|
6055
6062
|
changeCustomerRequested: EventEmitter<void>;
|
|
6056
6063
|
deliveryAddressLocalHashChange: EventEmitter<string>;
|
|
@@ -6092,11 +6099,10 @@ declare class TransactionHeaderPopupRelationComponent extends TransactionHeaderP
|
|
|
6092
6099
|
handleNavigationClick(nav: string): void;
|
|
6093
6100
|
handleChangeCustomGroup(group: string): void;
|
|
6094
6101
|
navigateToRelation(): void;
|
|
6095
|
-
private _isAllowedToChangeRelation;
|
|
6096
6102
|
private _setFirstAddress;
|
|
6097
6103
|
private _lockRelation;
|
|
6098
6104
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderPopupRelationComponent, never>;
|
|
6099
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderPopupRelationComponent, "co-transaction-header-popup-relation", never, { "configNames": { "alias": "configNames"; "required": false; }; "showPrivacy": { "alias": "showPrivacy"; "required": false; }; "showMessageForChangeCustomer": { "alias": "showMessageForChangeCustomer"; "required": false; }; "showInvoiceAddress": { "alias": "showInvoiceAddress"; "required": false; }; "noLockOnCustomerSet": { "alias": "noLockOnCustomerSet"; "required": false; }; }, { "inputChangeForSuggestions": "inputChangeForSuggestions"; "changeCustomerRequested": "changeCustomerRequested"; "deliveryAddressLocalHashChange": "deliveryAddressLocalHashChange"; "invoiceAddressLocalHashChange": "invoiceAddressLocalHashChange"; }, never, never, false, never>;
|
|
6105
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderPopupRelationComponent, "co-transaction-header-popup-relation", never, { "configNames": { "alias": "configNames"; "required": false; }; "showPrivacy": { "alias": "showPrivacy"; "required": false; }; "showMessageForChangeCustomer": { "alias": "showMessageForChangeCustomer"; "required": false; }; "showInvoiceAddress": { "alias": "showInvoiceAddress"; "required": false; }; "noLockOnCustomerSet": { "alias": "noLockOnCustomerSet"; "required": false; }; "showChangeOptionWhenCustomerReadonly": { "alias": "showChangeOptionWhenCustomerReadonly"; "required": false; }; }, { "inputChangeForSuggestions": "inputChangeForSuggestions"; "changeCustomerRequested": "changeCustomerRequested"; "deliveryAddressLocalHashChange": "deliveryAddressLocalHashChange"; "invoiceAddressLocalHashChange": "invoiceAddressLocalHashChange"; }, never, never, false, never>;
|
|
6100
6106
|
}
|
|
6101
6107
|
|
|
6102
6108
|
declare abstract class TransactionFilterPopupHeaderBaseComponent<T extends BusinessObject | number | string | Object> extends TransactionHeaderBaseComponent {
|
|
@@ -8165,9 +8171,42 @@ declare class TransactionNavigationButtonListModule {
|
|
|
8165
8171
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionNavigationButtonListModule>;
|
|
8166
8172
|
}
|
|
8167
8173
|
|
|
8174
|
+
declare class TransactionLineExpectedDeliveryDateButtonComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
8175
|
+
transactionHeaderService: TransactionHeaderService;
|
|
8176
|
+
transactionLineService: TransactionLineService;
|
|
8177
|
+
transactionEventService: TransactionEventService;
|
|
8178
|
+
service: TransactionService;
|
|
8179
|
+
iconCacheService: IconCacheService;
|
|
8180
|
+
transactionScreenConfigurationService: TransactionScreenConfigurationService;
|
|
8181
|
+
protected dictionaryService: DictionaryService;
|
|
8182
|
+
protected imageService: TransactionImageService;
|
|
8183
|
+
protected changeDetector: ChangeDetectorRef;
|
|
8184
|
+
readonly icons: typeof Icon;
|
|
8185
|
+
parentComponent: ElementRef;
|
|
8186
|
+
showClass(): boolean;
|
|
8187
|
+
inputLabel: boolean;
|
|
8188
|
+
showConfirmedDeliveryDateChange: EventEmitter<boolean>;
|
|
8189
|
+
expectedDeliveryDate: Date;
|
|
8190
|
+
private _handled;
|
|
8191
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef);
|
|
8192
|
+
ngOnInit(): void;
|
|
8193
|
+
ngOnDestroy(): void;
|
|
8194
|
+
protected transactionInfoSet(): void;
|
|
8195
|
+
protected transactionLineSet(): void;
|
|
8196
|
+
private _checkConfirmedDeliveryDate;
|
|
8197
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineExpectedDeliveryDateButtonComponent, never>;
|
|
8198
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineExpectedDeliveryDateButtonComponent, "co-transaction-line-expected-delivery-date-button", never, { "inputLabel": { "alias": "inputLabel"; "required": false; }; }, { "showConfirmedDeliveryDateChange": "showConfirmedDeliveryDateChange"; }, never, never, false, never>;
|
|
8199
|
+
}
|
|
8200
|
+
|
|
8201
|
+
declare class TransactionLineExpectedDeliveryDateButtonModule {
|
|
8202
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineExpectedDeliveryDateButtonModule, never>;
|
|
8203
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineExpectedDeliveryDateButtonModule, [typeof TransactionLineExpectedDeliveryDateButtonComponent], [typeof i2.CommonModule, typeof TransactionButtonModule, typeof TransactionLineLabelModule, typeof PipeModule], [typeof TransactionLineExpectedDeliveryDateButtonComponent]>;
|
|
8204
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineExpectedDeliveryDateButtonModule>;
|
|
8205
|
+
}
|
|
8206
|
+
|
|
8168
8207
|
declare class TransactionOverviewLineModule {
|
|
8169
8208
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionOverviewLineModule, never>;
|
|
8170
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionOverviewLineModule, [typeof TransactionOverviewLineComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.ButtonModule, typeof i3.InputNumberPickerModule, typeof TransactionArticleTextModule, typeof TransactionArticleTextOverviewModule, typeof PipeModule, typeof TransactionLineActionButtonsModule, typeof i3.IconModule, typeof EditableLabelModule, typeof TransactionLinePriceModule, typeof TransactionLineDescriptionModule, typeof TransactionBaseLineModule, typeof i13.DragDropModule, typeof TransactionLineCommissionButtonModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineDeliveryButtonModule, typeof TransactionLineDeliveryDateButtonModule, typeof DialogTransactionLineVatModule, typeof DialogTransactionLineDiscountModule, typeof TransactionLineStatusbarModule, typeof TransactionLineAmountModule, typeof TransactionLineVatButtonModule, typeof TransactionLineDiscountButtonModule, typeof TransactionLineDeliveryDateModule, typeof TransactionMarginInfoLineModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof TransactionLineLabelModule, typeof TransactionLineDirectSellButtonModule, typeof TransactionNavigationButtonListModule], [typeof TransactionOverviewLineComponent]>;
|
|
8209
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionOverviewLineModule, [typeof TransactionOverviewLineComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.ButtonModule, typeof i3.InputNumberPickerModule, typeof TransactionArticleTextModule, typeof TransactionArticleTextOverviewModule, typeof PipeModule, typeof TransactionLineActionButtonsModule, typeof i3.IconModule, typeof EditableLabelModule, typeof TransactionLinePriceModule, typeof TransactionLineDescriptionModule, typeof TransactionBaseLineModule, typeof i13.DragDropModule, typeof TransactionLineCommissionButtonModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineDeliveryButtonModule, typeof TransactionLineDeliveryDateButtonModule, typeof DialogTransactionLineVatModule, typeof DialogTransactionLineDiscountModule, typeof TransactionLineStatusbarModule, typeof TransactionLineAmountModule, typeof TransactionLineVatButtonModule, typeof TransactionLineDiscountButtonModule, typeof TransactionLineDeliveryDateModule, typeof TransactionMarginInfoLineModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof TransactionLineLabelModule, typeof TransactionLineDirectSellButtonModule, typeof TransactionNavigationButtonListModule, typeof TransactionLineExpectedDeliveryDateButtonModule], [typeof TransactionOverviewLineComponent]>;
|
|
8171
8210
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionOverviewLineModule>;
|
|
8172
8211
|
}
|
|
8173
8212
|
|
|
@@ -14094,7 +14133,7 @@ declare class TransactionHeaderRelationComponent extends TransactionHeaderBaseCo
|
|
|
14094
14133
|
typeOfCustomerFullObject(relation: Relation): boolean;
|
|
14095
14134
|
get relationAsCustomer(): CustomerFullObject;
|
|
14096
14135
|
contactPersonForId(relationId: number): RelationContactLink;
|
|
14097
|
-
|
|
14136
|
+
isPopupBlocked(): boolean;
|
|
14098
14137
|
handleHeaderClick(): void;
|
|
14099
14138
|
protected relationSet(): void;
|
|
14100
14139
|
protected transactionInfoSet(): void;
|
|
@@ -85,12 +85,31 @@
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
.co-transaction-cash-register-payment-voucher-popup {
|
|
88
|
-
.co-dialog
|
|
88
|
+
.co-dialog {
|
|
89
89
|
.co-dialog-wrapper {
|
|
90
|
-
width:
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
min-
|
|
90
|
+
width: $tp-transaction-cash-register-payment-voucher-dialog-width;
|
|
91
|
+
max-width: 100%;
|
|
92
|
+
height: auto;
|
|
93
|
+
min-width: $tp-transaction-cash-register-payment-voucher-dialog-min-width;
|
|
94
|
+
min-height: $tp-transaction-cash-register-payment-voucher-dialog-min-height;
|
|
95
|
+
}
|
|
96
|
+
.co-dialog-header-title-icon {
|
|
97
|
+
display: flex;
|
|
98
|
+
align-items: center;
|
|
99
|
+
gap: $tp-transaction-cash-register-payment-voucher-dialog-title-gap;
|
|
100
|
+
}
|
|
101
|
+
.dialog-content {
|
|
102
|
+
.row {
|
|
103
|
+
display: flex;
|
|
104
|
+
align-items: center;
|
|
105
|
+
gap: $tp-transaction-cash-register-payment-voucher-dialog-row-gap;
|
|
106
|
+
.bold {
|
|
107
|
+
min-width: $tp-transaction-cash-register-payment-voucher-dialog-row-bold-width;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
.voucher-popup-body-wrapper {
|
|
111
|
+
margin: $tp-transaction-cash-register-payment-voucher-dialog-row-body-margin;
|
|
112
|
+
}
|
|
94
113
|
}
|
|
95
114
|
}
|
|
96
115
|
}
|
|
@@ -38,9 +38,15 @@ $tp-transaction-cash-register-payment-dialog-button-border-color: #0084de !defau
|
|
|
38
38
|
$tp-transaction-cash-register-payment-dialog-button-icon-color: #0084de !default;
|
|
39
39
|
$tp-transaction-cash-register-payment-dialog-receipt-button-min-width: 135px !default;
|
|
40
40
|
$tp-transaction-cash-register-color-action: #1A73E8;
|
|
41
|
-
|
|
42
41
|
$tp-transaction-cash-register-payment-dialog-button-border: 2px solid #0084de !default;
|
|
43
42
|
$tp-transaction-cash-register-payment-dialog-button-border-disabled: 2px solid rgba(#0084de, 0.5) !default;
|
|
43
|
+
$tp-transaction-cash-register-payment-dialog-payment-wrapper-width: 600px !default;
|
|
44
44
|
|
|
45
|
+
$tp-transaction-cash-register-payment-voucher-dialog-width: 460px !default;
|
|
46
|
+
$tp-transaction-cash-register-payment-voucher-dialog-min-width: 256px !default;
|
|
47
|
+
$tp-transaction-cash-register-payment-voucher-dialog-min-height: 232px !default;
|
|
48
|
+
$tp-transaction-cash-register-payment-voucher-dialog-title-gap: 10px !default;
|
|
49
|
+
$tp-transaction-cash-register-payment-voucher-dialog-row-gap: 5px !default;
|
|
50
|
+
$tp-transaction-cash-register-payment-voucher-dialog-row-bold-width: 120px !default;
|
|
51
|
+
$tp-transaction-cash-register-payment-voucher-dialog-row-body-margin: 2px 0 0 0 !default;
|
|
45
52
|
|
|
46
|
-
$tp-transaction-cash-register-payment-dialog-payment-wrapper-width: 600px !default;
|
|
@@ -133,6 +133,7 @@
|
|
|
133
133
|
.title {
|
|
134
134
|
font-size: $tp-transaction-header-popup-category-title-font-size;
|
|
135
135
|
text-align: center;
|
|
136
|
+
white-space: nowrap;
|
|
136
137
|
}
|
|
137
138
|
}
|
|
138
139
|
|
|
@@ -578,6 +579,12 @@
|
|
|
578
579
|
flex: 1;
|
|
579
580
|
}
|
|
580
581
|
}
|
|
582
|
+
|
|
583
|
+
.co-input-text.disabled {
|
|
584
|
+
opacity: 0.5;
|
|
585
|
+
pointer-events: none;
|
|
586
|
+
cursor: default;
|
|
587
|
+
}
|
|
581
588
|
}
|
|
582
589
|
|
|
583
590
|
.drop-shipment-dialog {
|
|
@@ -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";
|