@movalib/movalib-commons 1.68.11 → 1.68.13
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/devIndex.tsx
CHANGED
|
@@ -77,7 +77,7 @@ const App = () => {
|
|
|
77
77
|
const getQRCodeData = ():string => {
|
|
78
78
|
// On renvoie les données pour le QR Code, l'url change selon l'environnement (variables d'environnement)
|
|
79
79
|
//return `https://app.movalib.com/#/garage/2?redirect=garage`;
|
|
80
|
-
return `https://
|
|
80
|
+
return `https://forms.gle/TabzYcYiaLNfhTu7A`;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
const handleScheduleChange = (schedule: DaySchedule[]) => {
|
package/dist/devIndex.js
CHANGED
|
@@ -105,7 +105,7 @@ var App = function () {
|
|
|
105
105
|
var getQRCodeData = function () {
|
|
106
106
|
// On renvoie les données pour le QR Code, l'url change selon l'environnement (variables d'environnement)
|
|
107
107
|
//return `https://app.movalib.com/#/garage/2?redirect=garage`;
|
|
108
|
-
return "https://
|
|
108
|
+
return "https://forms.gle/TabzYcYiaLNfhTu7A";
|
|
109
109
|
};
|
|
110
110
|
var handleScheduleChange = function (schedule) {
|
|
111
111
|
if (schedule) {
|
|
@@ -18,6 +18,7 @@ interface roiInterface {
|
|
|
18
18
|
partialWorkforce: number;
|
|
19
19
|
workingTimePerPartialEmployee: number;
|
|
20
20
|
smsCampaign: boolean;
|
|
21
|
+
totalPrice: number;
|
|
21
22
|
}
|
|
22
23
|
export default class Subscription {
|
|
23
24
|
id: string;
|
|
@@ -46,6 +47,16 @@ export default class Subscription {
|
|
|
46
47
|
smsCampaign: boolean;
|
|
47
48
|
expertMonthly: boolean;
|
|
48
49
|
checkList: any;
|
|
49
|
-
|
|
50
|
+
wholesaleOffer: string;
|
|
51
|
+
accountantEmail: string;
|
|
52
|
+
accountantPhone: string;
|
|
53
|
+
accountantIdentity: string;
|
|
54
|
+
isClientImportBillable: boolean;
|
|
55
|
+
isCatalogImportBillable: boolean;
|
|
56
|
+
needAccountingOffer: boolean;
|
|
57
|
+
accountingPrice: boolean;
|
|
58
|
+
training: boolean;
|
|
59
|
+
totalPrice: number;
|
|
60
|
+
constructor(id: string, garageId: string, type: SubscriptionType, state: SubscriptionState, companyName: string, companyEmail: string, companySiren: string, companyLegalForm: string, trialDays: number, startDate: Date, activationDate: Date, cancellationDate: Date, paymentInterval: SubscriptionPaymentInterval, paymentIban: string, roi: roiInterface, additionalFormationQuantity: number, webPage: boolean, smsCampaign: boolean, trainingOptionalOne: Date, trainingOptionalTwo: Date, webcam: boolean, billing: boolean, movaPackage: string, packInfo: boolean, checkList: any, expertMonthly: boolean, wholesaleOffer: string, accountantEmail: string, accountantPhone: string, accountantIdentity: string, isClientImportBillable: boolean, isCatalogImportBillable: boolean, needAccountingOffer: boolean, accountingPrice: boolean, training: boolean, totalPrice: number);
|
|
50
61
|
}
|
|
51
62
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var Subscription = /** @class */ (function () {
|
|
4
|
-
function Subscription(id, garageId, type, state, companyName, companyEmail, companySiren, companyLegalForm, trialDays, startDate, activationDate, cancellationDate, paymentInterval, paymentIban, roi, additionalFormationQuantity, webPage, smsCampaign, trainingOptionalOne, trainingOptionalTwo, webcam, billing, movaPackage, packInfo, checkList, expertMonthly) {
|
|
4
|
+
function Subscription(id, garageId, type, state, companyName, companyEmail, companySiren, companyLegalForm, trialDays, startDate, activationDate, cancellationDate, paymentInterval, paymentIban, roi, additionalFormationQuantity, webPage, smsCampaign, trainingOptionalOne, trainingOptionalTwo, webcam, billing, movaPackage, packInfo, checkList, expertMonthly, wholesaleOffer, accountantEmail, accountantPhone, accountantIdentity, isClientImportBillable, isCatalogImportBillable, needAccountingOffer, accountingPrice, training, totalPrice) {
|
|
5
5
|
this.id = id;
|
|
6
6
|
this.garageId = garageId;
|
|
7
7
|
this.type = type;
|
|
@@ -28,6 +28,16 @@ var Subscription = /** @class */ (function () {
|
|
|
28
28
|
this.smsCampaign = smsCampaign;
|
|
29
29
|
this.checkList = checkList;
|
|
30
30
|
this.expertMonthly = expertMonthly;
|
|
31
|
+
this.wholesaleOffer = wholesaleOffer;
|
|
32
|
+
this.accountantEmail = accountantEmail;
|
|
33
|
+
this.accountantPhone = accountantPhone;
|
|
34
|
+
this.accountantIdentity = accountantIdentity;
|
|
35
|
+
this.isClientImportBillable = isClientImportBillable;
|
|
36
|
+
this.isCatalogImportBillable = isCatalogImportBillable;
|
|
37
|
+
this.needAccountingOffer = needAccountingOffer;
|
|
38
|
+
this.accountingPrice = accountingPrice;
|
|
39
|
+
this.training = training;
|
|
40
|
+
this.totalPrice = totalPrice;
|
|
31
41
|
}
|
|
32
42
|
return Subscription;
|
|
33
43
|
}());
|
package/package.json
CHANGED
|
@@ -22,6 +22,7 @@ interface roiInterface {
|
|
|
22
22
|
partialWorkforce: number;
|
|
23
23
|
workingTimePerPartialEmployee: number;
|
|
24
24
|
smsCampaign: boolean;
|
|
25
|
+
totalPrice: number;
|
|
25
26
|
}
|
|
26
27
|
export default class Subscription {
|
|
27
28
|
// Properties
|
|
@@ -51,7 +52,16 @@ export default class Subscription {
|
|
|
51
52
|
smsCampaign: boolean;
|
|
52
53
|
expertMonthly: boolean;
|
|
53
54
|
checkList: any;
|
|
54
|
-
|
|
55
|
+
wholesaleOffer: string;
|
|
56
|
+
accountantEmail: string;
|
|
57
|
+
accountantPhone: string;
|
|
58
|
+
accountantIdentity: string;
|
|
59
|
+
isClientImportBillable: boolean;
|
|
60
|
+
isCatalogImportBillable: boolean;
|
|
61
|
+
needAccountingOffer: boolean;
|
|
62
|
+
accountingPrice: boolean;
|
|
63
|
+
training: boolean;
|
|
64
|
+
totalPrice: number;
|
|
55
65
|
constructor(
|
|
56
66
|
id: string,
|
|
57
67
|
garageId: string,
|
|
@@ -78,7 +88,17 @@ export default class Subscription {
|
|
|
78
88
|
movaPackage: string,
|
|
79
89
|
packInfo: boolean,
|
|
80
90
|
checkList: any,
|
|
81
|
-
expertMonthly: boolean
|
|
91
|
+
expertMonthly: boolean,
|
|
92
|
+
wholesaleOffer: string,
|
|
93
|
+
accountantEmail: string,
|
|
94
|
+
accountantPhone: string,
|
|
95
|
+
accountantIdentity: string,
|
|
96
|
+
isClientImportBillable: boolean,
|
|
97
|
+
isCatalogImportBillable: boolean,
|
|
98
|
+
needAccountingOffer: boolean,
|
|
99
|
+
accountingPrice: boolean,
|
|
100
|
+
training: boolean,
|
|
101
|
+
totalPrice: number
|
|
82
102
|
) {
|
|
83
103
|
this.id = id;
|
|
84
104
|
this.garageId = garageId;
|
|
@@ -106,5 +126,15 @@ export default class Subscription {
|
|
|
106
126
|
this.smsCampaign = smsCampaign;
|
|
107
127
|
this.checkList = checkList;
|
|
108
128
|
this.expertMonthly = expertMonthly;
|
|
129
|
+
this.wholesaleOffer = wholesaleOffer;
|
|
130
|
+
this.accountantEmail = accountantEmail;
|
|
131
|
+
this.accountantPhone = accountantPhone;
|
|
132
|
+
this.accountantIdentity = accountantIdentity;
|
|
133
|
+
this.isClientImportBillable = isClientImportBillable;
|
|
134
|
+
this.isCatalogImportBillable = isCatalogImportBillable;
|
|
135
|
+
this.needAccountingOffer = needAccountingOffer;
|
|
136
|
+
this.accountingPrice = accountingPrice;
|
|
137
|
+
this.training = training;
|
|
138
|
+
this.totalPrice = totalPrice;
|
|
109
139
|
}
|
|
110
140
|
}
|