Merge branch 'master' of http://34.17.182.140/Haroon6138/mohemm-flutter-app
* 'master' of http://34.17.182.140/Haroon6138/mohemm-flutter-app: ticket enable dashboard dashboard Ticket Ticket color coding changes on the monthly leave calendar and prod e-learning URL added. VHR-279 VHR-279 Alma Banner updates, VersionID 9.7 sent to stores updates Etqan fixes, Update to Stores VersionID 9.6 updates Greeting Greeting Card Ticket Attachments Survey title key fixcoc-into-ensat
commit
33829a2ab3
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 31 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 31 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 730 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 1.2 MiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 1.2 MiB |
@ -0,0 +1,97 @@
|
||||
import 'dart:convert';
|
||||
|
||||
class GetEitAttachmentTicket {
|
||||
List<GetEitAttachmentList>? getEitAttachmentList;
|
||||
|
||||
GetEitAttachmentTicket({
|
||||
this.getEitAttachmentList,
|
||||
});
|
||||
|
||||
factory GetEitAttachmentTicket.fromRawJson(String str) => GetEitAttachmentTicket.fromJson(json.decode(str));
|
||||
|
||||
String toRawJson() => json.encode(toJson());
|
||||
|
||||
factory GetEitAttachmentTicket.fromJson(Map<String, dynamic> json) => GetEitAttachmentTicket(
|
||||
getEitAttachmentList: json["GetEITAttachmentList"] == null ? [] : List<GetEitAttachmentList>.from(json["GetEITAttachmentList"]!.map((x) => GetEitAttachmentList.fromJson(x))),
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
"GetEITAttachmentList": getEitAttachmentList == null ? [] : List<dynamic>.from(getEitAttachmentList!.map((x) => x.toJson())),
|
||||
};
|
||||
}
|
||||
|
||||
class GetEitAttachmentList {
|
||||
int? attachedDocumentId;
|
||||
int? categoryId;
|
||||
int? datatypeId;
|
||||
int? documentId;
|
||||
String? entityName;
|
||||
String? fileContentType;
|
||||
String? fileData;
|
||||
int? fileId;
|
||||
String? fileName;
|
||||
String? pk1Value;
|
||||
String? pk2Value;
|
||||
String? pk3Value;
|
||||
String? pk4Value;
|
||||
String? pk5Value;
|
||||
int? seqNum;
|
||||
|
||||
GetEitAttachmentList({
|
||||
this.attachedDocumentId,
|
||||
this.categoryId,
|
||||
this.datatypeId,
|
||||
this.documentId,
|
||||
this.entityName,
|
||||
this.fileContentType,
|
||||
this.fileData,
|
||||
this.fileId,
|
||||
this.fileName,
|
||||
this.pk1Value,
|
||||
this.pk2Value,
|
||||
this.pk3Value,
|
||||
this.pk4Value,
|
||||
this.pk5Value,
|
||||
this.seqNum,
|
||||
});
|
||||
|
||||
factory GetEitAttachmentList.fromRawJson(String str) => GetEitAttachmentList.fromJson(json.decode(str));
|
||||
|
||||
String toRawJson() => json.encode(toJson());
|
||||
|
||||
factory GetEitAttachmentList.fromJson(Map<String, dynamic> json) => GetEitAttachmentList(
|
||||
attachedDocumentId: json["ATTACHED_DOCUMENT_ID"],
|
||||
categoryId: json["CATEGORY_ID"],
|
||||
datatypeId: json["DATATYPE_ID"],
|
||||
documentId: json["DOCUMENT_ID"],
|
||||
entityName: json["ENTITY_NAME"],
|
||||
fileContentType: json["FILE_CONTENT_TYPE"],
|
||||
fileData: json["FILE_DATA"],
|
||||
fileId: json["FILE_ID"],
|
||||
fileName: json["FILE_NAME"],
|
||||
pk1Value: json["PK1_VALUE"],
|
||||
pk2Value: json["PK2_VALUE"],
|
||||
pk3Value: json["PK3_VALUE"],
|
||||
pk4Value: json["PK4_VALUE"],
|
||||
pk5Value: json["PK5_VALUE"],
|
||||
seqNum: json["SEQ_NUM"],
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
"ATTACHED_DOCUMENT_ID": attachedDocumentId,
|
||||
"CATEGORY_ID": categoryId,
|
||||
"DATATYPE_ID": datatypeId,
|
||||
"DOCUMENT_ID": documentId,
|
||||
"ENTITY_NAME": entityName,
|
||||
"FILE_CONTENT_TYPE": fileContentType,
|
||||
"FILE_DATA": fileData,
|
||||
"FILE_ID": fileId,
|
||||
"FILE_NAME": fileName,
|
||||
"PK1_VALUE": pk1Value,
|
||||
"PK2_VALUE": pk2Value,
|
||||
"PK3_VALUE": pk3Value,
|
||||
"PK4_VALUE": pk4Value,
|
||||
"PK5_VALUE": pk5Value,
|
||||
"SEQ_NUM": seqNum,
|
||||
};
|
||||
}
|
||||
@ -0,0 +1,142 @@
|
||||
import 'dart:convert';
|
||||
|
||||
class GetGreetingCardsModelResponse {
|
||||
List<GetGreetingCardsModelResponseElement>? getGreetingCardsModelResponse;
|
||||
|
||||
GetGreetingCardsModelResponse({
|
||||
this.getGreetingCardsModelResponse,
|
||||
});
|
||||
|
||||
factory GetGreetingCardsModelResponse.fromRawJson(String str) => GetGreetingCardsModelResponse.fromJson(json.decode(str));
|
||||
|
||||
String toRawJson() => json.encode(toJson());
|
||||
|
||||
factory GetGreetingCardsModelResponse.fromJson(Map<String, dynamic> json) => GetGreetingCardsModelResponse(
|
||||
getGreetingCardsModelResponse: json["Get_GreetingCardsModel_Response"] == null ? [] : List<GetGreetingCardsModelResponseElement>.from(json["Get_GreetingCardsModel_Response"]!.map((x) => GetGreetingCardsModelResponseElement.fromJson(x))),
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
"Get_GreetingCardsModel_Response": getGreetingCardsModelResponse == null ? [] : List<dynamic>.from(getGreetingCardsModelResponse!.map((x) => x.toJson())),
|
||||
};
|
||||
}
|
||||
|
||||
class GetGreetingCardsModelResponseElement {
|
||||
String? backgroundImageUrlAr;
|
||||
String? backgroundImageUrlEn;
|
||||
String? buttonBgColor;
|
||||
String? buttonText;
|
||||
String? buttonTextN;
|
||||
int? cardType;
|
||||
int? categoryId;
|
||||
String? categoryNameAr;
|
||||
String? categoryNameEn;
|
||||
int? channel;
|
||||
String? createdOn;
|
||||
String? descriptionAr;
|
||||
String? descriptionEn;
|
||||
String? endDate;
|
||||
bool? hasButton;
|
||||
int? id;
|
||||
bool? isActive;
|
||||
int? moduleId;
|
||||
String? moduleName;
|
||||
String? moduleNameN;
|
||||
String? startDate;
|
||||
String? textColor;
|
||||
String? titleAr;
|
||||
String? titleEn;
|
||||
String? urlAr;
|
||||
String? urlEn;
|
||||
|
||||
GetGreetingCardsModelResponseElement({
|
||||
this.backgroundImageUrlAr,
|
||||
this.backgroundImageUrlEn,
|
||||
this.buttonBgColor,
|
||||
this.buttonText,
|
||||
this.buttonTextN,
|
||||
this.cardType,
|
||||
this.categoryId,
|
||||
this.categoryNameAr,
|
||||
this.categoryNameEn,
|
||||
this.channel,
|
||||
this.createdOn,
|
||||
this.descriptionAr,
|
||||
this.descriptionEn,
|
||||
this.endDate,
|
||||
this.hasButton,
|
||||
this.id,
|
||||
this.isActive,
|
||||
this.moduleId,
|
||||
this.moduleName,
|
||||
this.moduleNameN,
|
||||
this.startDate,
|
||||
this.textColor,
|
||||
this.titleAr,
|
||||
this.titleEn,
|
||||
this.urlAr,
|
||||
this.urlEn,
|
||||
});
|
||||
|
||||
factory GetGreetingCardsModelResponseElement.fromRawJson(String str) => GetGreetingCardsModelResponseElement.fromJson(json.decode(str));
|
||||
|
||||
String toRawJson() => json.encode(toJson());
|
||||
|
||||
factory GetGreetingCardsModelResponseElement.fromJson(Map<String, dynamic> json) => GetGreetingCardsModelResponseElement(
|
||||
backgroundImageUrlAr: json["BackgroundImageUrlAr"],
|
||||
backgroundImageUrlEn: json["BackgroundImageUrlEn"],
|
||||
buttonBgColor: json["ButtonBgColor"],
|
||||
buttonText: json["ButtonText"],
|
||||
buttonTextN: json["ButtonTextN"],
|
||||
cardType: json["CardType"],
|
||||
categoryId: json["CategoryID"],
|
||||
categoryNameAr: json["CategoryNameAr"],
|
||||
categoryNameEn: json["CategoryNameEn"],
|
||||
channel: json["Channel"],
|
||||
createdOn: json["CreatedOn"],
|
||||
descriptionAr: json["DescriptionAr"],
|
||||
descriptionEn: json["DescriptionEn"],
|
||||
endDate: json["EndDate"],
|
||||
hasButton: json["HasButton"],
|
||||
id: json["ID"],
|
||||
isActive: json["IsActive"],
|
||||
moduleId: json["ModuleID"],
|
||||
moduleName: json["ModuleName"],
|
||||
moduleNameN: json["ModuleNameN"],
|
||||
startDate: json["StartDate"],
|
||||
textColor: json["TextColor"],
|
||||
titleAr: json["TitleAr"],
|
||||
titleEn: json["TitleEn"],
|
||||
urlAr: json["UrlAr"],
|
||||
urlEn: json["UrlEn"],
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
"BackgroundImageUrlAr": backgroundImageUrlAr,
|
||||
"BackgroundImageUrlEn": backgroundImageUrlEn,
|
||||
"ButtonBgColor": buttonBgColor,
|
||||
"ButtonText": buttonText,
|
||||
"ButtonTextN": buttonTextN,
|
||||
"CardType": cardType,
|
||||
"CategoryID": categoryId,
|
||||
"CategoryNameAr": categoryNameAr,
|
||||
"CategoryNameEn": categoryNameEn,
|
||||
"Channel": channel,
|
||||
"CreatedOn": createdOn,
|
||||
"DescriptionAr": descriptionAr,
|
||||
"DescriptionEn": descriptionEn,
|
||||
"EndDate": endDate,
|
||||
"HasButton": hasButton,
|
||||
"ID": id,
|
||||
"IsActive": isActive,
|
||||
"ModuleID": moduleId,
|
||||
"ModuleName": moduleName,
|
||||
"ModuleNameN": moduleNameN,
|
||||
"StartDate": startDate,
|
||||
"TextColor": textColor,
|
||||
"TitleAr": titleAr,
|
||||
"TitleEn": titleEn,
|
||||
"UrlAr": urlAr,
|
||||
"UrlEn": urlEn,
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue