@colijnit/transaction 261.20.33 → 261.20.34

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/index.d.ts CHANGED
@@ -305,7 +305,7 @@ import { BaseModuleScreenConfigService, BaseModuleService, FormMasterService, Sc
305
305
  import * as i5 from '@colijnit/relation';
306
306
  import { RelationService } from '@colijnit/relation';
307
307
  import * as i6 from '@colijnit/sharedcomponents';
308
- import { SharedService, StatusbarData, CalendarView, SendMethod, AgendaEventPerDay, FormBuilderUserFormComponent, ComponentActivityListComponent } from '@colijnit/sharedcomponents';
308
+ import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, FormBuilderUserFormComponent, ComponentActivityListComponent } from '@colijnit/sharedcomponents';
309
309
  import { ExternalCatalogAddArticleRequest } from '@colijnit/transactionapi/build/model/external-catalog-add-article-request';
310
310
  import { TransactionDeliveryCostLineInfo } from '@colijnit/transactionapi/build/model/transaction-delivery-cost-line-info.bo';
311
311
  import { UserRoleType } from '@colijnit/ioneconnector/build/enum/user-role-type.enum';
@@ -1066,6 +1066,7 @@ declare class TransactionConnectorAdapterService {
1066
1066
  searchTransactions(request: TransactionSearchViewRequest): Promise<TransactionSearchResult>;
1067
1067
  getSequenceValue(sequenceName: SequenceName): Promise<number>;
1068
1068
  getDeliveryMethods(): Promise<DeliveryMethod$1[]>;
1069
+ getDeliveryMethodsForReturns(): Promise<DeliveryMethod$1[]>;
1069
1070
  getDeliveryOptions(): Promise<DeliveryOption[]>;
1070
1071
  getDiscountCodes(transactionKind: TransactionKind): Promise<DiscountCode[]>;
1071
1072
  setTransactionDiscounts(request: SetTransactionDiscountsRequest): Promise<TransactionInfoResponse>;
@@ -1581,6 +1582,7 @@ declare class TransactionConnectorService {
1581
1582
  searchTransactions(request: TransactionSearchViewRequest): Promise<TransactionSearchResult>;
1582
1583
  getSequenceValue(sequenceName: SequenceName): Promise<number>;
1583
1584
  getDeliveryMethods(): Promise<DeliveryMethod$1[]>;
1585
+ getDeliveryMethodsForReturns(): Promise<DeliveryMethod$1[]>;
1584
1586
  getDeliveryOptions(): Promise<DeliveryOption[]>;
1585
1587
  getDiscountCodes(transactionKind: TransactionKind): Promise<DiscountCode[]>;
1586
1588
  setTransactionDiscounts(request: SetTransactionDiscountsRequest): Promise<TransactionInfoResponse>;
@@ -2506,6 +2508,7 @@ declare class TransactionService extends PendingReasonService {
2506
2508
  createServiceOrderWithSourceTransactionLineRequest(): Promise<boolean>;
2507
2509
  createSalesQuotation(request: CreateSalesQuotationRequest): Promise<boolean>;
2508
2510
  addRelationToTransaction(relationId: number): Promise<boolean>;
2511
+ doDeliveryPlanningRequest(inputs: DoDeliveryPlanningRequestInputParams): Promise<boolean>;
2509
2512
  getCommissionCodes(languageCode: string): Promise<CoDomainValue[]>;
2510
2513
  getContactTypes(languageCode: string): Promise<CoDomainValue[]>;
2511
2514
  getYesNo(languageCode: string): Promise<CoDomainValue[]>;
@@ -2523,6 +2526,7 @@ declare class TransactionService extends PendingReasonService {
2523
2526
  getArticleListWithBarcodeArticleNrEanCode(search: string): Promise<ArticleLight[]>;
2524
2527
  getMainArticles(): Promise<MainArticle[]>;
2525
2528
  getDeliveryMethods(): Promise<DeliveryMethod$1[]>;
2529
+ getDeliveryMethodsForReturns(): Promise<DeliveryMethod$1[]>;
2526
2530
  getDeliveryOptions(): Promise<DeliveryOption[]>;
2527
2531
  getDiscountCodes(): Promise<DiscountCode[]>;
2528
2532
  setTransactionDiscounts(request: SetTransactionDiscountsRequest): Promise<boolean>;
@@ -2748,6 +2752,10 @@ declare class TransactionService extends PendingReasonService {
2748
2752
  getSLAProducts(): Promise<SLAProduct[]>;
2749
2753
  getTermsAndConditionsForm(transId: number): Promise<void>;
2750
2754
  getTransactionPlanPeriods(transId: number): Promise<PlanTimes[]>;
2755
+ getAgendaEventsPerDayForPreferredPlanning(transId: number): Promise<AgendaEventPerDay[]>;
2756
+ private _createEventsPerDayFromPlanTimes;
2757
+ private _createAgendaEventPerDayFromPlanTimes;
2758
+ private _createAgendaEventFromDayPart;
2751
2759
  getSupplierProducts(transId: number): Promise<SupplierProduct[]>;
2752
2760
  getDeliveryDateForSupplierProduct(goodId: number, supplierId: number): Promise<Date>;
2753
2761
  getPlannedResourcesForTransactionLine(transId: number, lineNr: number): Promise<PlannedResourceForTransactionLine[]>;
@@ -13629,8 +13637,6 @@ declare class DialogTransactionPlanningRequest extends DialogTransactionHeaderBa
13629
13637
  private _getAllAvailablePlanDates;
13630
13638
  private _getSelectableDayParts;
13631
13639
  private _applySelectedDate;
13632
- private _createAgendaEventPerDayFromPlanTimes;
13633
- private _createAgendaEventFromDayPart;
13634
13640
  private _getFirstDayOfWeek;
13635
13641
  private _getLastDayOfWeek;
13636
13642
  private _validDate;
@@ -0,0 +1,12 @@
1
+ @include export-module('co-delivery-chooser-layout') {
2
+ .co-delivery-chooser {
3
+ .delivery-chooser-contents {
4
+ display: flex;
5
+ flex-direction: column;
6
+ row-gap: 25px;
7
+ }
8
+ .preferred-planning-contents {
9
+ width: 100%;
10
+ }
11
+ }
12
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('co-delivery-chooser-theme') {
2
+ .co-delivery-chooser {
3
+ }
4
+ }
@@ -0,0 +1,3 @@
1
+ @import "./material-definition";
2
+ @import "./layout";
3
+ @import "./theme";
@@ -0,0 +1,30 @@
1
+ @include export-module('co-delivery-method-tile-layout') {
2
+ .co-delivery-method-tile {
3
+ .delivery-method-tile-contents {
4
+ display: flex;
5
+ flex-direction: row;
6
+ column-gap: 10px;
7
+
8
+ width: 220px;
9
+ padding: 10px 20px;
10
+
11
+ border-style: solid;
12
+ border-color: #9e9e9e;
13
+ border-width: 2px;
14
+ border-radius: 5px;
15
+
16
+ &.selected {
17
+ border-color: $action-color;
18
+ background-color: #bfd2ff;
19
+ }
20
+
21
+ .description-span {
22
+ width: 100%;
23
+ text-align: start;
24
+ text-overflow: ellipsis;
25
+ overflow: hidden;
26
+ white-space: nowrap;
27
+ }
28
+ }
29
+ }
30
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('co-delivery-method-tile-theme') {
2
+ .co-delivery-method-tile {
3
+ }
4
+ }
@@ -0,0 +1,3 @@
1
+ @import "./material-definition";
2
+ @import "./layout";
3
+ @import "./theme";
@@ -0,0 +1,11 @@
1
+ @include export-module('co-delivery-method-chooser-layout') {
2
+ .co-delivery-method-chooser {
3
+
4
+ .delivery-method-chooser-contents {
5
+ display: flex;
6
+ flex-direction: row;
7
+ column-gap: 10px;
8
+
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('co-delivery-method-chooser-theme') {
2
+ .co-delivery-method-chooser {
3
+ }
4
+ }
@@ -0,0 +1,3 @@
1
+ @import "./material-definition";
2
+ @import "./layout";
3
+ @import "./theme";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transaction",
3
- "version": "261.20.33",
3
+ "version": "261.20.34",
4
4
  "description": "Colijn IT transaction module for Angular 20",
5
5
  "repository": "npm/npm",
6
6
  "author": "Colijn IT",
@@ -18,8 +18,8 @@
18
18
  "@colijnit/relation": ">=261.20.0",
19
19
  "@colijnit/relationapi": ">=261.1.1",
20
20
  "@colijnit/sharedapi": ">=1.0.20",
21
- "@colijnit/sharedcomponents": ">=261.20.4",
22
- "@colijnit/transactionapi": ">=261.1.20"
21
+ "@colijnit/sharedcomponents": ">=261.20.5",
22
+ "@colijnit/transactionapi": ">=261.1.21"
23
23
  },
24
24
  "dependencies": {
25
25
  "tslib": "^2.8.1"