@colijnit/transaction 261.20.30 → 261.20.32
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 +849 -782
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +18 -5
- package/lib/component/checkout/style/_layout.scss +9 -1
- package/lib/component/returns/return-wizard/return-lines-wizard/style/_layout.scss +5 -1
- package/lib/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +15 -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-line-side-panel/style/_layout.scss +3 -0
- 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-filter/transaction-filter/style/_layout.scss +1 -1
- package/lib/component/transaction-search/transaction-search-result/style/_layout.scss +1 -1
- package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss +1 -1
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_material-definition.scss +1 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -2319,7 +2319,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2319
2319
|
constructor(optionsService: TransactionSettingsService, dialogService: TransactionDialogService, connector: TransactionConnectorService, articleConnector: ArticleConnectorService, dictionaryService: DictionaryService, transactionEventService: TransactionEventService, transactionRelationService: TransactionRelationService, screenConfigService: TransactionScreenConfigurationService, relationService: RelationService, sharedService: SharedService);
|
|
2320
2320
|
init(options: any, resetCurrentTransaction?: boolean): Promise<void>;
|
|
2321
2321
|
ngOnDestroy(): void;
|
|
2322
|
-
prepareMLocatInternalParam(): void
|
|
2322
|
+
prepareMLocatInternalParam(): Promise<void>;
|
|
2323
2323
|
preparePakBinnenInternalParam(): void;
|
|
2324
2324
|
prepareDirectSellInternalParam(): Promise<void>;
|
|
2325
2325
|
prepareJsPickingListInternalParam(): Promise<void>;
|
|
@@ -2332,6 +2332,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2332
2332
|
prepareReceiveGoodsWithDataTerminalInternalParam(): void;
|
|
2333
2333
|
preparePrintColliStickerDefault(): void;
|
|
2334
2334
|
getInternalParameter(param: InternalParam): Promise<boolean>;
|
|
2335
|
+
getCashLimitValue(param: InternalParam): Promise<number>;
|
|
2335
2336
|
getInternalDefault(param: InternalDefault): Promise<string>;
|
|
2336
2337
|
checkTransactionValidity(): Promise<boolean>;
|
|
2337
2338
|
createNewRelation(): void;
|
|
@@ -4642,6 +4643,8 @@ declare class TransactionLineService {
|
|
|
4642
4643
|
lineQuantityPurchaseConfirmed: number;
|
|
4643
4644
|
lineQuantityTransportNotification: number;
|
|
4644
4645
|
lineQuantityInvoiceControl: number;
|
|
4646
|
+
lineQuantitySignedOff: number;
|
|
4647
|
+
lineQuantityReturnRequested: number;
|
|
4645
4648
|
decimals: number;
|
|
4646
4649
|
isText: boolean;
|
|
4647
4650
|
isArticle: boolean;
|
|
@@ -7241,6 +7244,7 @@ declare class QuestionAnswerComponent {
|
|
|
7241
7244
|
onChangeAnswer(changedAnswer: ServiceWizardAnswer): void;
|
|
7242
7245
|
onQaResultChange(newVResult: QaResult): void;
|
|
7243
7246
|
onWizardFinished(wizardFinished: boolean): void;
|
|
7247
|
+
resetResult(): void;
|
|
7244
7248
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionAnswerComponent, never>;
|
|
7245
7249
|
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionAnswerComponent, "co-question-answer-item", never, { "question": { "alias": "question"; "required": false; }; "answers": { "alias": "answers"; "required": false; }; }, { "qaResultChange": "qaResultChange"; "wizardFinished": "wizardFinished"; }, never, never, false, never>;
|
|
7246
7250
|
}
|
|
@@ -7254,6 +7258,7 @@ interface QaResult {
|
|
|
7254
7258
|
|
|
7255
7259
|
declare class ServiceWizardQaComponent implements OnInit {
|
|
7256
7260
|
transactionService: TransactionService;
|
|
7261
|
+
qaComponent: QuestionAnswerComponent;
|
|
7257
7262
|
wizardFinished: EventEmitter<string>;
|
|
7258
7263
|
skipWizard: EventEmitter<void>;
|
|
7259
7264
|
serviceWizardQuestion: ServiceWizardQuestion;
|
|
@@ -7262,7 +7267,9 @@ declare class ServiceWizardQaComponent implements OnInit {
|
|
|
7262
7267
|
ngOnInit(): Promise<void>;
|
|
7263
7268
|
onQaResultChange(newVResult: QaResult): void;
|
|
7264
7269
|
onWizardFinished(wizardFinished: boolean): void;
|
|
7265
|
-
|
|
7270
|
+
resetWizard(): void;
|
|
7271
|
+
private getServiceWizard;
|
|
7272
|
+
private buildQAString;
|
|
7266
7273
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWizardQaComponent, never>;
|
|
7267
7274
|
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardQaComponent, "co-service-wizard-qa", never, {}, { "wizardFinished": "wizardFinished"; "skipWizard": "skipWizard"; }, never, never, false, never>;
|
|
7268
7275
|
}
|
|
@@ -8858,6 +8865,7 @@ declare abstract class TransactionReceiveGoodsLineBaseComponent extends Transact
|
|
|
8858
8865
|
showCheckboxForLine: boolean;
|
|
8859
8866
|
returnStockMode: boolean;
|
|
8860
8867
|
calculatedStickerAmount: number;
|
|
8868
|
+
showLocation: boolean;
|
|
8861
8869
|
private _subscriptions;
|
|
8862
8870
|
ngOnInit(): Promise<void>;
|
|
8863
8871
|
ngOnDestroy(): void;
|
|
@@ -9019,6 +9027,7 @@ declare abstract class TransactionInterbranchReceiveGoodsLineBaseComponent exten
|
|
|
9019
9027
|
showCheckboxForLine: boolean;
|
|
9020
9028
|
returnStockMode: boolean;
|
|
9021
9029
|
calculatedStickerAmount: number;
|
|
9030
|
+
showLocation: boolean;
|
|
9022
9031
|
private _subscriptions;
|
|
9023
9032
|
ngOnInit(): Promise<void>;
|
|
9024
9033
|
ngOnDestroy(): void;
|
|
@@ -9822,7 +9831,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9822
9831
|
showCategories: boolean;
|
|
9823
9832
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9824
9833
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9825
|
-
currentTitle(): "
|
|
9834
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
9826
9835
|
ngOnDestroy(): void;
|
|
9827
9836
|
handleClickWrapper(event: MouseEvent): void;
|
|
9828
9837
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9848,7 +9857,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
9848
9857
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
9849
9858
|
ngOnDestroy(): void;
|
|
9850
9859
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9851
|
-
currentTitle(): "
|
|
9860
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
9852
9861
|
handleClickWrapper(event: MouseEvent): void;
|
|
9853
9862
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
9854
9863
|
private handleDocumentClick;
|
|
@@ -9900,7 +9909,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
9900
9909
|
showCategories: boolean;
|
|
9901
9910
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9902
9911
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9903
|
-
currentTitle(): "
|
|
9912
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
9904
9913
|
ngOnDestroy(): void;
|
|
9905
9914
|
handleClickWrapper(event: MouseEvent): void;
|
|
9906
9915
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10020,6 +10029,7 @@ declare class TransactionLinePurchaseReceiveGoodsComponent extends TransactionLi
|
|
|
10020
10029
|
warehouseLocationButtonDisabled: boolean;
|
|
10021
10030
|
quantityToReceive: number;
|
|
10022
10031
|
calculatedStickerAmount: number;
|
|
10032
|
+
showLocation: boolean;
|
|
10023
10033
|
private _subs;
|
|
10024
10034
|
private _defaultReportId;
|
|
10025
10035
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
|
|
@@ -10826,6 +10836,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10826
10836
|
getSequenceOrderValue(order: PlanOrder): Promise<void>;
|
|
10827
10837
|
handlePopupPlanEvent(event: [PlanOrder, PlanningTransportWeekDay, PlanningTransportWeekDay[]]): Promise<void>;
|
|
10828
10838
|
handleSettingsReset(): void;
|
|
10839
|
+
handleSettingsSaved(): Promise<void>;
|
|
10829
10840
|
openSettingsDialog(transportDay: PlanningTransportWeekDay): void;
|
|
10830
10841
|
handleCalendarPlanEvent(data: {
|
|
10831
10842
|
currentHour: string;
|
|
@@ -13251,6 +13262,7 @@ declare class TransactionLineInterbranchReceiveGoodsComponent extends Transactio
|
|
|
13251
13262
|
warehouseLocationButtonDisabled: boolean;
|
|
13252
13263
|
quantityToReceive: number;
|
|
13253
13264
|
calculatedStickerAmount: number;
|
|
13265
|
+
showLocation: boolean;
|
|
13254
13266
|
private _subs;
|
|
13255
13267
|
private _defaultReportId;
|
|
13256
13268
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
|
|
@@ -13992,6 +14004,7 @@ declare class TransactionHeaderPaymentComponent extends TransactionHeaderBaseCom
|
|
|
13992
14004
|
toPay: number;
|
|
13993
14005
|
remainingToPay: number;
|
|
13994
14006
|
showRemainingPayment: boolean;
|
|
14007
|
+
needRefreshTransaction: boolean;
|
|
13995
14008
|
private _subs;
|
|
13996
14009
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _paymentConnectorService: TransactionPaymentConnectorService);
|
|
13997
14010
|
ngOnInit(): void;
|
|
@@ -2,13 +2,21 @@
|
|
|
2
2
|
.co-checkout {
|
|
3
3
|
display: block;
|
|
4
4
|
width: 100%;
|
|
5
|
+
.co-stepper {
|
|
6
|
+
&.no-cart {
|
|
7
|
+
.co-stepper-content-wrapper {
|
|
8
|
+
justify-content: center;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
5
12
|
.co-stepper-content-wrapper {
|
|
6
13
|
display: flex;
|
|
7
14
|
flex-direction: row;
|
|
8
15
|
flex-wrap: nowrap;
|
|
9
16
|
column-gap: $tp-checkout-column-gap;
|
|
10
17
|
padding: $tp-checkout-padding;
|
|
11
|
-
|
|
18
|
+
width: $tp-checkout-wrapper-max-width;
|
|
19
|
+
max-width: 100%;
|
|
12
20
|
margin: 0 auto;
|
|
13
21
|
}
|
|
14
22
|
.co-stepper-step {
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
row-gap: 10px;
|
|
7
7
|
|
|
8
8
|
.lines-wizard-sub-title {
|
|
9
|
+
margin-top: 30px;
|
|
9
10
|
font-weight: bold;
|
|
10
11
|
}
|
|
11
12
|
|
|
@@ -17,7 +18,10 @@
|
|
|
17
18
|
min-height: 150px;
|
|
18
19
|
overflow-x: auto;
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
co-drag-drop-container {
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-direction: row;
|
|
24
|
+
column-gap: 20px;
|
|
21
25
|
padding-top: 30px;
|
|
22
26
|
position: relative;
|
|
23
27
|
margin-top: 0;
|
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
@include export-module('cc-transaction-receive-goods-line-layout') {
|
|
2
2
|
.co-transaction-receive-goods-line {
|
|
3
3
|
|
|
4
|
+
.column {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
flex-grow: 1;
|
|
8
|
+
align-items: flex-start;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
padding: 2rem 0 0 0;
|
|
11
|
+
width: 100%;
|
|
12
|
+
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.center {
|
|
16
|
+
text-align: center;
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
4
19
|
}
|
|
5
20
|
|
|
6
21
|
.co-input-number-picker .icon-wrapper {
|
|
@@ -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";
|
package/lib/component/transaction-search/transaction-filter/transaction-filter/style/_layout.scss
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
.transaction-filter-wrapper {
|
|
6
6
|
display: flex;
|
|
7
7
|
}
|
|
8
|
-
.co-transaction-sales-order-filter, .co-transaction-purchase-order-filter, .co-transaction-sales-quotation-filter, co-transaction-cash-desk-filter {
|
|
8
|
+
.co-transaction-sales-order-filter, .co-transaction-purchase-order-filter, .co-transaction-sales-quotation-filter, co-transaction-cash-desk-filter, co-transaction-service-order-filter {
|
|
9
9
|
font-family: $tp-co-transaction-filter-font-family;
|
|
10
10
|
font-size: $tp-co-transaction-filter-font-size;
|
|
11
11
|
width: $cc-co-transaction-filter-width;
|