@colijnit/transaction 261.20.29 → 261.20.31
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 +146 -100
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +6 -1
- package/lib/component/checkout/style/_layout.scss +9 -1
- package/lib/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +15 -0
- package/lib/component/transaction-line-side-panel/style/_layout.scss +3 -0
- 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 +1 -1
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>;
|
|
@@ -8858,6 +8858,7 @@ declare abstract class TransactionReceiveGoodsLineBaseComponent extends Transact
|
|
|
8858
8858
|
showCheckboxForLine: boolean;
|
|
8859
8859
|
returnStockMode: boolean;
|
|
8860
8860
|
calculatedStickerAmount: number;
|
|
8861
|
+
showLocation: boolean;
|
|
8861
8862
|
private _subscriptions;
|
|
8862
8863
|
ngOnInit(): Promise<void>;
|
|
8863
8864
|
ngOnDestroy(): void;
|
|
@@ -9019,6 +9020,7 @@ declare abstract class TransactionInterbranchReceiveGoodsLineBaseComponent exten
|
|
|
9019
9020
|
showCheckboxForLine: boolean;
|
|
9020
9021
|
returnStockMode: boolean;
|
|
9021
9022
|
calculatedStickerAmount: number;
|
|
9023
|
+
showLocation: boolean;
|
|
9022
9024
|
private _subscriptions;
|
|
9023
9025
|
ngOnInit(): Promise<void>;
|
|
9024
9026
|
ngOnDestroy(): void;
|
|
@@ -10020,6 +10022,7 @@ declare class TransactionLinePurchaseReceiveGoodsComponent extends TransactionLi
|
|
|
10020
10022
|
warehouseLocationButtonDisabled: boolean;
|
|
10021
10023
|
quantityToReceive: number;
|
|
10022
10024
|
calculatedStickerAmount: number;
|
|
10025
|
+
showLocation: boolean;
|
|
10023
10026
|
private _subs;
|
|
10024
10027
|
private _defaultReportId;
|
|
10025
10028
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
|
|
@@ -10826,6 +10829,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10826
10829
|
getSequenceOrderValue(order: PlanOrder): Promise<void>;
|
|
10827
10830
|
handlePopupPlanEvent(event: [PlanOrder, PlanningTransportWeekDay, PlanningTransportWeekDay[]]): Promise<void>;
|
|
10828
10831
|
handleSettingsReset(): void;
|
|
10832
|
+
handleSettingsSaved(): Promise<void>;
|
|
10829
10833
|
openSettingsDialog(transportDay: PlanningTransportWeekDay): void;
|
|
10830
10834
|
handleCalendarPlanEvent(data: {
|
|
10831
10835
|
currentHour: string;
|
|
@@ -13251,6 +13255,7 @@ declare class TransactionLineInterbranchReceiveGoodsComponent extends Transactio
|
|
|
13251
13255
|
warehouseLocationButtonDisabled: boolean;
|
|
13252
13256
|
quantityToReceive: number;
|
|
13253
13257
|
calculatedStickerAmount: number;
|
|
13258
|
+
showLocation: boolean;
|
|
13254
13259
|
private _subs;
|
|
13255
13260
|
private _defaultReportId;
|
|
13256
13261
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
|
|
@@ -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 {
|
|
@@ -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 {
|
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;
|
package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss
CHANGED
|
@@ -2,7 +2,7 @@ $tp-co-transaction-search-result-width: 100% !default;
|
|
|
2
2
|
$tp-transaction-tiles-wrapper-padding: 20px !default;
|
|
3
3
|
$tp-transaction-tiles-wrapper-column-gap: 5px !default;
|
|
4
4
|
$tp-transaction-tiles-wrapper-row-gap: 5px !default;
|
|
5
|
-
$tp-transaction-tile-width: calc(20% -
|
|
5
|
+
$tp-transaction-tile-width: calc(20% - 4px) !default;
|
|
6
6
|
$tp-transaction-tile-width-mobile: calc(50% - 5px) !default;
|
|
7
7
|
$tp-transaction-tile-width-tablet: calc(33.3333% - 5px) !default;
|
|
8
8
|
$tp-transaction-tile-width-small: 100% !default;
|
|
@@ -7,7 +7,7 @@ $tp-transaction-tile-font-size: $tp-font-size !default;
|
|
|
7
7
|
$tp-transaction-tile-height: auto !default;
|
|
8
8
|
$tp-transaction-tile-content-height: 90px !default;
|
|
9
9
|
$tp-transaction-tile-body-height: 100px !default;
|
|
10
|
-
$tp-transaction-tile-width: calc(20% -
|
|
10
|
+
$tp-transaction-tile-width: calc(20% - 4px) !default;
|
|
11
11
|
$tp-transaction-tile-width-mobile: calc(50% - 5px) !default;
|
|
12
12
|
$tp-transaction-tile-padding: 10px 15px !default;
|
|
13
13
|
$tp-transaction-tile-row-gap: 10px !default;
|