@movalib/movalib-commons 1.17.0 → 1.19.0
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/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/src/ScheduleFields.js +9 -9
- package/dist/src/helpers/Enums.d.ts +8 -1
- package/dist/src/helpers/Enums.js +9 -1
- package/dist/src/helpers/Tools.d.ts +1 -1
- package/dist/src/helpers/Tools.js +4 -0
- package/index.ts +1 -1
- package/package.json +1 -1
- package/src/ScheduleFields.tsx +10 -10
- package/src/helpers/Enums.ts +9 -1
- package/src/helpers/Tools.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -47,4 +47,4 @@ export { validateField, formatVehicleTire, formatFrenchVehiclePlate, isEmpty, ge
|
|
|
47
47
|
export { validatePhoneNumber, validateText, validateEmail } from './src/helpers/Validator';
|
|
48
48
|
export { formatDateByCountryCode, getLongFormattedDateTime } from './src/helpers/DateUtils';
|
|
49
49
|
export { request } from './src/helpers/ApiHelper';
|
|
50
|
-
export { RoleType, MovaAppType, DayOfWeek, EventState, EventType, DocumentType, DigitalPassportIndex, DocumentState, Gender, DateFormatTypes, PartsApplicationType, ProductType, OrderPreference, OrderState, SlotAlgorithm, VehiclePlateFormat as VehiclePlateType, SubscriptionPaymentInterval, RegistrationState, PrestationType, PrestationState } from './src/helpers/Enums';
|
|
50
|
+
export { RoleType, MovaAppType, DayOfWeek, EventState, EventType, DocumentType, DigitalPassportIndex, DocumentState, Gender, DateFormatTypes, PartsApplicationType, ProductType, OrderPreference, OrderState, SlotAlgorithm, VehiclePlateFormat as VehiclePlateType, SubscriptionPaymentInterval, RegistrationState, PrestationType, PrestationState, CountryCode } from './src/helpers/Enums';
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.flexLeftRow = exports.capitalizeFirstLetter = exports.getApplicationShortLabel = exports.isEmpty = exports.formatFrenchVehiclePlate = exports.formatVehicleTire = exports.validateField = exports.deleteCookie = exports.readCookie = exports.VehicleTire = exports.Event = exports.Schedule = exports.Garage = exports.Document = exports.Vehicle = exports.Address = exports.Role = exports.User = exports.Customer = exports.Logger = exports.Operation = exports.Prestation = exports.Product = exports.Supplier = exports.Employee = exports.Absence = exports.GenderSelector = exports.ConfirmationDialog = exports.MovaVehicleTireField = exports.MovaCopyright = exports.MovaSignUp = exports.MovaLogin = exports.MovaSnackbar = exports.TestButton = exports.VehiclePlateField = exports.QRCode = exports.MovaDialog = exports.Loader = exports.MovaDigitalPassport = exports.VehicleFullCard = exports.ScheduleFields = exports.AddressFields = exports.AccountValidation = exports.GaragePLV = exports.IbanInput = exports.DialogForgotPassword = exports.UserService = exports.GarageService = exports.AuthenticationService = exports.VehicleService = void 0;
|
|
8
|
-
exports.PrestationState = exports.PrestationType = exports.RegistrationState = exports.SubscriptionPaymentInterval = exports.VehiclePlateType = exports.SlotAlgorithm = exports.OrderState = exports.OrderPreference = exports.ProductType = exports.PartsApplicationType = exports.DateFormatTypes = exports.Gender = exports.DocumentState = exports.DigitalPassportIndex = exports.DocumentType = exports.EventType = exports.EventState = exports.DayOfWeek = exports.MovaAppType = exports.RoleType = exports.request = exports.getLongFormattedDateTime = exports.formatDateByCountryCode = exports.validateEmail = exports.validateText = exports.validatePhoneNumber = exports.isSafariOniOS = exports.getDayOfWeekLabel = exports.findScheduleByDayOfWeek = exports.getFormattedIntervals = exports.getFormattedSchedule = exports.formatPhoneNumber = void 0;
|
|
8
|
+
exports.CountryCode = exports.PrestationState = exports.PrestationType = exports.RegistrationState = exports.SubscriptionPaymentInterval = exports.VehiclePlateType = exports.SlotAlgorithm = exports.OrderState = exports.OrderPreference = exports.ProductType = exports.PartsApplicationType = exports.DateFormatTypes = exports.Gender = exports.DocumentState = exports.DigitalPassportIndex = exports.DocumentType = exports.EventType = exports.EventState = exports.DayOfWeek = exports.MovaAppType = exports.RoleType = exports.request = exports.getLongFormattedDateTime = exports.formatDateByCountryCode = exports.validateEmail = exports.validateText = exports.validatePhoneNumber = exports.isSafariOniOS = exports.getDayOfWeekLabel = exports.findScheduleByDayOfWeek = exports.getFormattedIntervals = exports.getFormattedSchedule = exports.formatPhoneNumber = void 0;
|
|
9
9
|
// Export des services
|
|
10
10
|
var VehicleService_1 = require("./src/services/VehicleService");
|
|
11
11
|
Object.defineProperty(exports, "VehicleService", { enumerable: true, get: function () { return __importDefault(VehicleService_1).default; } });
|
|
@@ -140,3 +140,4 @@ Object.defineProperty(exports, "SubscriptionPaymentInterval", { enumerable: true
|
|
|
140
140
|
Object.defineProperty(exports, "RegistrationState", { enumerable: true, get: function () { return Enums_1.RegistrationState; } });
|
|
141
141
|
Object.defineProperty(exports, "PrestationType", { enumerable: true, get: function () { return Enums_1.PrestationType; } });
|
|
142
142
|
Object.defineProperty(exports, "PrestationState", { enumerable: true, get: function () { return Enums_1.PrestationState; } });
|
|
143
|
+
Object.defineProperty(exports, "CountryCode", { enumerable: true, get: function () { return Enums_1.CountryCode; } });
|
|
@@ -35,13 +35,13 @@ var Logger_1 = __importDefault(require("./helpers/Logger"));
|
|
|
35
35
|
var Tools_1 = require("./helpers/Tools");
|
|
36
36
|
var ContentCopy_1 = __importDefault(require("@mui/icons-material/ContentCopy"));
|
|
37
37
|
var initialSchedules = [
|
|
38
|
-
{ day: Enums_1.DayOfWeek.MONDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode:
|
|
39
|
-
{ day: Enums_1.DayOfWeek.TUESDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode:
|
|
40
|
-
{ day: Enums_1.DayOfWeek.WEDNESDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode:
|
|
41
|
-
{ day: Enums_1.DayOfWeek.THURSDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode:
|
|
42
|
-
{ day: Enums_1.DayOfWeek.FRIDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode:
|
|
43
|
-
{ day: Enums_1.DayOfWeek.SATURDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode:
|
|
44
|
-
{ day: Enums_1.DayOfWeek.SUNDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode:
|
|
38
|
+
{ day: Enums_1.DayOfWeek.MONDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null }] },
|
|
39
|
+
{ day: Enums_1.DayOfWeek.TUESDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null }] },
|
|
40
|
+
{ day: Enums_1.DayOfWeek.WEDNESDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null }] },
|
|
41
|
+
{ day: Enums_1.DayOfWeek.THURSDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null }] },
|
|
42
|
+
{ day: Enums_1.DayOfWeek.FRIDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null }] },
|
|
43
|
+
{ day: Enums_1.DayOfWeek.SATURDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null }] },
|
|
44
|
+
{ day: Enums_1.DayOfWeek.SUNDAY, checked: false, allDay: false, intervals: [{ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null }] },
|
|
45
45
|
];
|
|
46
46
|
var ScheduleFields = function (_a) {
|
|
47
47
|
var timePickerStep = _a.timePickerStep, schedules = _a.schedules, size = _a.size, onChange = _a.onChange;
|
|
@@ -101,7 +101,7 @@ var ScheduleFields = function (_a) {
|
|
|
101
101
|
var newSchedule = __spreadArray([], schedule, true);
|
|
102
102
|
newSchedule[dayIndex].checked = event.target.checked;
|
|
103
103
|
// On réinitialise aussi les intervals
|
|
104
|
-
newSchedule[dayIndex].intervals = [{ startTime: null, endTime: null, countryCode:
|
|
104
|
+
newSchedule[dayIndex].intervals = [{ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null }];
|
|
105
105
|
// L'activation ne doit pas déclencher le onChange
|
|
106
106
|
if (!event.target.checked)
|
|
107
107
|
onChange(newSchedule);
|
|
@@ -178,7 +178,7 @@ var ScheduleFields = function (_a) {
|
|
|
178
178
|
var addInterval = function (dayIndex) { return function () {
|
|
179
179
|
Logger_1.default.info(dayIndex);
|
|
180
180
|
var newSchedule = __spreadArray([], schedule, true);
|
|
181
|
-
newSchedule[dayIndex].intervals.push({ startTime: null, endTime: null, countryCode:
|
|
181
|
+
newSchedule[dayIndex].intervals.push({ startTime: null, endTime: null, countryCode: Enums_1.CountryCode.FR, error: null });
|
|
182
182
|
Logger_1.default.info(newSchedule);
|
|
183
183
|
setSchedule(newSchedule);
|
|
184
184
|
}; };
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export declare enum CountryCode {
|
|
2
|
+
FR = "FR"
|
|
3
|
+
}
|
|
1
4
|
export declare enum PrestationState {
|
|
2
5
|
NEW = "NEW",
|
|
3
6
|
VALIDATED = "VALIDATED"
|
|
@@ -100,7 +103,11 @@ export declare enum PartsApplicationType {
|
|
|
100
103
|
FRONT_REAR = "FTRR",
|
|
101
104
|
LEFT = "LT",
|
|
102
105
|
RIGHT = "RT",
|
|
103
|
-
LEFT_RIGHT = "LTRT"
|
|
106
|
+
LEFT_RIGHT = "LTRT",
|
|
107
|
+
FRONT_LEFT = "FTLT",
|
|
108
|
+
FRONT_RIGHT = "FTRT",
|
|
109
|
+
REAR_LEFT = "RRLT",
|
|
110
|
+
REAR_RIGHT = "RRRT"
|
|
104
111
|
}
|
|
105
112
|
export declare enum APIMethod {
|
|
106
113
|
GET = "GET",
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RoleType = exports.MovaAppType = exports.DocumentType = exports.DocumentState = exports.DayOfWeek = exports.EventType = exports.EventState = exports.DigitalPassportIndex = exports.Gender = exports.DateFormatTypes = exports.APIMethod = exports.PartsApplicationType = exports.ProductType = exports.OrderPreference = exports.OrderState = exports.SlotAlgorithm = exports.VehiclePlateFormat = exports.RegistrationState = exports.SubscriptionPaymentInterval = exports.PrestationType = exports.PrestationState = void 0;
|
|
3
|
+
exports.RoleType = exports.MovaAppType = exports.DocumentType = exports.DocumentState = exports.DayOfWeek = exports.EventType = exports.EventState = exports.DigitalPassportIndex = exports.Gender = exports.DateFormatTypes = exports.APIMethod = exports.PartsApplicationType = exports.ProductType = exports.OrderPreference = exports.OrderState = exports.SlotAlgorithm = exports.VehiclePlateFormat = exports.RegistrationState = exports.SubscriptionPaymentInterval = exports.PrestationType = exports.PrestationState = exports.CountryCode = void 0;
|
|
4
|
+
var CountryCode;
|
|
5
|
+
(function (CountryCode) {
|
|
6
|
+
CountryCode["FR"] = "FR";
|
|
7
|
+
})(CountryCode = exports.CountryCode || (exports.CountryCode = {}));
|
|
4
8
|
var PrestationState;
|
|
5
9
|
(function (PrestationState) {
|
|
6
10
|
PrestationState["NEW"] = "NEW";
|
|
@@ -114,6 +118,10 @@ var PartsApplicationType;
|
|
|
114
118
|
PartsApplicationType["LEFT"] = "LT";
|
|
115
119
|
PartsApplicationType["RIGHT"] = "RT";
|
|
116
120
|
PartsApplicationType["LEFT_RIGHT"] = "LTRT";
|
|
121
|
+
PartsApplicationType["FRONT_LEFT"] = "FTLT";
|
|
122
|
+
PartsApplicationType["FRONT_RIGHT"] = "FTRT";
|
|
123
|
+
PartsApplicationType["REAR_LEFT"] = "RRLT";
|
|
124
|
+
PartsApplicationType["REAR_RIGHT"] = "RRRT";
|
|
117
125
|
})(PartsApplicationType = exports.PartsApplicationType || (exports.PartsApplicationType = {}));
|
|
118
126
|
var APIMethod;
|
|
119
127
|
(function (APIMethod) {
|
|
@@ -17,7 +17,7 @@ export declare const getDayOfWeek: (index: number) => DayOfWeek | undefined;
|
|
|
17
17
|
export declare const getFrenchDayLabel: (day: DayOfWeek | undefined) => "Lundi" | "Mardi" | "Mercredi" | "Jeudi" | "Vendredi" | "Samedi" | "Dimanche" | undefined;
|
|
18
18
|
export declare const flexLeftRow: CSSProperties;
|
|
19
19
|
export declare const capitalizeFirstLetter: (str: string) => string;
|
|
20
|
-
export declare const getApplicationShortLabel: (application: PartsApplicationType | undefined) => "" | "AV" | "AR" | "AV + AR" | "G" | "D" | "G + D";
|
|
20
|
+
export declare const getApplicationShortLabel: (application: PartsApplicationType | undefined) => "" | "AV" | "AR" | "AV + AR" | "G" | "D" | "G + D" | "AVG" | "AVD" | "ARG" | "ARD";
|
|
21
21
|
export declare const flexEnd: CSSProperties;
|
|
22
22
|
export declare const flexCenter: CSSProperties;
|
|
23
23
|
export declare const isEmpty: (data: Object) => boolean;
|
|
@@ -144,6 +144,10 @@ var getApplicationShortLabel = function (application) {
|
|
|
144
144
|
case Enums_1.PartsApplicationType.LEFT: return "G";
|
|
145
145
|
case Enums_1.PartsApplicationType.RIGHT: return "D";
|
|
146
146
|
case Enums_1.PartsApplicationType.LEFT_RIGHT: return "G + D";
|
|
147
|
+
case Enums_1.PartsApplicationType.FRONT_LEFT: return "AVG";
|
|
148
|
+
case Enums_1.PartsApplicationType.FRONT_RIGHT: return "AVD";
|
|
149
|
+
case Enums_1.PartsApplicationType.REAR_LEFT: return "ARG";
|
|
150
|
+
case Enums_1.PartsApplicationType.REAR_RIGHT: return "ARD";
|
|
147
151
|
}
|
|
148
152
|
}
|
|
149
153
|
return "";
|
package/index.ts
CHANGED
|
@@ -66,5 +66,5 @@ export { request } from './src/helpers/ApiHelper';
|
|
|
66
66
|
export { RoleType, MovaAppType, DayOfWeek, EventState, EventType, DocumentType,
|
|
67
67
|
DigitalPassportIndex, DocumentState, Gender, DateFormatTypes, PartsApplicationType,
|
|
68
68
|
ProductType, OrderPreference, OrderState, SlotAlgorithm, VehiclePlateFormat as VehiclePlateType,
|
|
69
|
-
SubscriptionPaymentInterval, RegistrationState, PrestationType, PrestationState } from './src/helpers/Enums';
|
|
69
|
+
SubscriptionPaymentInterval, RegistrationState, PrestationType, PrestationState, CountryCode } from './src/helpers/Enums';
|
|
70
70
|
|
package/package.json
CHANGED
package/src/ScheduleFields.tsx
CHANGED
|
@@ -6,7 +6,7 @@ import DeleteIcon from '@mui/icons-material/DeleteRounded';
|
|
|
6
6
|
import { TimePicker } from '@mui/x-date-pickers';
|
|
7
7
|
import theme from '../theme'; // Import du thème personnalisé
|
|
8
8
|
import Schedule from './models/Schedule';
|
|
9
|
-
import { DayOfWeek } from './helpers/Enums';
|
|
9
|
+
import { CountryCode, DayOfWeek } from './helpers/Enums';
|
|
10
10
|
import Logger from './helpers/Logger';
|
|
11
11
|
import { flexCenter, getDayOfWeekIndex, getDayOfWeekLabel } from './helpers/Tools';
|
|
12
12
|
import { toUTCToLocaleDate } from './helpers/DateUtils';
|
|
@@ -28,13 +28,13 @@ export type DaySchedule = {
|
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
const initialSchedules: DaySchedule[] = [
|
|
31
|
-
{day: DayOfWeek.MONDAY, checked: false, allDay: false, intervals: [{startTime: null, endTime: null, countryCode:
|
|
32
|
-
{day: DayOfWeek.TUESDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode:
|
|
33
|
-
{day: DayOfWeek.WEDNESDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode:
|
|
34
|
-
{day: DayOfWeek.THURSDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode:
|
|
35
|
-
{day: DayOfWeek.FRIDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode:
|
|
36
|
-
{day: DayOfWeek.SATURDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode:
|
|
37
|
-
{day: DayOfWeek.SUNDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode:
|
|
31
|
+
{day: DayOfWeek.MONDAY, checked: false, allDay: false, intervals: [{startTime: null, endTime: null, countryCode: CountryCode.FR, error: null}]},
|
|
32
|
+
{day: DayOfWeek.TUESDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode: CountryCode.FR, error: null}]},
|
|
33
|
+
{day: DayOfWeek.WEDNESDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode: CountryCode.FR, error: null}]},
|
|
34
|
+
{day: DayOfWeek.THURSDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode: CountryCode.FR, error: null}]},
|
|
35
|
+
{day: DayOfWeek.FRIDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode: CountryCode.FR, error: null}]},
|
|
36
|
+
{day: DayOfWeek.SATURDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode: CountryCode.FR, error: null}]},
|
|
37
|
+
{day: DayOfWeek.SUNDAY, checked: false, allDay: false,intervals: [{startTime: null, endTime: null, countryCode: CountryCode.FR, error: null}]},
|
|
38
38
|
];
|
|
39
39
|
|
|
40
40
|
interface ScheduleFieldsProps {
|
|
@@ -115,7 +115,7 @@ const ScheduleFields: FunctionComponent<ScheduleFieldsProps> = ({ timePickerStep
|
|
|
115
115
|
const newSchedule = [...schedule];
|
|
116
116
|
newSchedule[dayIndex].checked = event.target.checked;
|
|
117
117
|
// On réinitialise aussi les intervals
|
|
118
|
-
newSchedule[dayIndex].intervals = [{startTime: null, endTime: null, countryCode:
|
|
118
|
+
newSchedule[dayIndex].intervals = [{startTime: null, endTime: null, countryCode: CountryCode.FR, error: null}];
|
|
119
119
|
// L'activation ne doit pas déclencher le onChange
|
|
120
120
|
if(!event.target.checked)
|
|
121
121
|
onChange(newSchedule);
|
|
@@ -224,7 +224,7 @@ const ScheduleFields: FunctionComponent<ScheduleFieldsProps> = ({ timePickerStep
|
|
|
224
224
|
Logger.info(dayIndex);
|
|
225
225
|
|
|
226
226
|
const newSchedule = [...schedule];
|
|
227
|
-
newSchedule[dayIndex].intervals.push({startTime: null, endTime: null, countryCode:
|
|
227
|
+
newSchedule[dayIndex].intervals.push({startTime: null, endTime: null, countryCode: CountryCode.FR, error: null});
|
|
228
228
|
Logger.info(newSchedule);
|
|
229
229
|
setSchedule(newSchedule);
|
|
230
230
|
};
|
package/src/helpers/Enums.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export enum CountryCode {
|
|
2
|
+
FR = "FR"
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
export enum PrestationState {
|
|
2
6
|
NEW = 'NEW',
|
|
3
7
|
VALIDATED = 'VALIDATED'
|
|
@@ -111,7 +115,11 @@ export enum PartsApplicationType {
|
|
|
111
115
|
FRONT_REAR = "FTRR",
|
|
112
116
|
LEFT = "LT",
|
|
113
117
|
RIGHT = "RT",
|
|
114
|
-
LEFT_RIGHT = "LTRT"
|
|
118
|
+
LEFT_RIGHT = "LTRT",
|
|
119
|
+
FRONT_LEFT = "FTLT",
|
|
120
|
+
FRONT_RIGHT = "FTRT",
|
|
121
|
+
REAR_LEFT = "RRLT",
|
|
122
|
+
REAR_RIGHT = "RRRT"
|
|
115
123
|
}
|
|
116
124
|
|
|
117
125
|
export enum APIMethod {
|
package/src/helpers/Tools.ts
CHANGED
|
@@ -155,6 +155,10 @@ export const getApplicationShortLabel = (application:PartsApplicationType | unde
|
|
|
155
155
|
case PartsApplicationType.LEFT: return "G";
|
|
156
156
|
case PartsApplicationType.RIGHT: return "D";
|
|
157
157
|
case PartsApplicationType.LEFT_RIGHT: return "G + D";
|
|
158
|
+
case PartsApplicationType.FRONT_LEFT: return "AVG";
|
|
159
|
+
case PartsApplicationType.FRONT_RIGHT: return "AVD";
|
|
160
|
+
case PartsApplicationType.REAR_LEFT: return "ARG";
|
|
161
|
+
case PartsApplicationType.REAR_RIGHT: return "ARD";
|
|
158
162
|
}
|
|
159
163
|
}
|
|
160
164
|
return "";
|