contractnumber provider added, old provider number field only if no previous contact exist

This commit is contained in:
2026-02-08 14:34:56 +01:00
parent 55f257fffd
commit 4f588015a4
30 changed files with 2046 additions and 744 deletions
+6
View File
@@ -297,6 +297,11 @@ export interface Contract {
salesPlatform?: SalesPlatform;
previousContractId?: number;
previousContract?: Contract;
// Altanbieter (nur wenn kein Vorgängervertrag)
previousProviderId?: number;
previousProvider?: Provider;
previousCustomerNumber?: string;
previousContractNumber?: string;
providerId?: number;
provider?: Provider;
tariffId?: number;
@@ -308,6 +313,7 @@ export interface Contract {
providerName?: string;
tariffName?: string;
customerNumberAtProvider?: string;
contractNumberAtProvider?: string;
priceFirst12Months?: string;
priceFrom13Months?: string;
priceAfter24Months?: string;