Appointment parking QR implemented
parent
f08775cbd4
commit
98450b4f94
@ -0,0 +1,5 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||
<path d="M21.0004 20.0004H18.0004V16.4004C18.0004 16.2034 18.0008 16.0957 18.005 16.0174L18.0057 16.0057L18.0174 16.005C18.0957 16.0008 18.2034 16.0004 18.4004 16.0004H21.0004C22.105 16.0004 23.0004 16.8958 23.0004 18.0004C23.0004 19.105 22.105 20.0004 21.0004 20.0004Z" fill="#8F9AA3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.0513 9.75H19.9487C17.8773 9.74999 16.2537 9.74998 14.9758 9.90522C13.6698 10.0639 12.6246 10.3941 11.7657 11.1277C11.5366 11.3233 11.3233 11.5366 11.1277 11.7657C10.3941 12.6246 10.0639 13.6698 9.90522 14.9758C9.74998 16.2538 9.74999 17.8773 9.75 19.9487V20.0513C9.74999 22.1227 9.74998 23.7462 9.90522 25.0242C10.0639 26.3302 10.3941 27.3754 11.1277 28.2343C11.3233 28.4634 11.5366 28.6767 11.7657 28.8723C12.6246 29.6059 13.6698 29.9361 14.9758 30.0948C16.2538 30.25 17.8773 30.25 19.9487 30.25H20.0513C22.1227 30.25 23.7462 30.25 25.0242 30.0948C26.3302 29.9361 27.3754 29.6059 28.2343 28.8723C28.4634 28.6767 28.6767 28.4634 28.8723 28.2343C29.6059 27.3754 29.9361 26.3302 30.0948 25.0242C30.25 23.7462 30.25 22.1227 30.25 20.0513V19.9487C30.25 17.8773 30.25 16.2538 30.0948 14.9758C29.9361 13.6698 29.6059 12.6246 28.8723 11.7657C28.6767 11.5366 28.4634 11.3233 28.2343 11.1277C27.3754 10.3941 26.3302 10.0639 25.0242 9.90522C23.7463 9.74998 22.1227 9.74999 20.0513 9.75ZM18.4004 14.0004L18.3194 14.0002C18.0377 13.9992 17.6913 13.9979 17.3824 14.0983C16.7735 14.2961 16.2961 14.7735 16.0983 15.3824C15.9979 15.6913 15.9992 16.0377 16.0002 16.3194L16.0004 16.4004V26.0004C16.0004 26.5527 16.4481 27.0004 17.0004 27.0004C17.5527 27.0004 18.0004 26.5527 18.0004 26.0004V22.0004H21.0004C23.2096 22.0004 25.0004 20.2096 25.0004 18.0004C25.0004 15.7913 23.2096 14.0004 21.0004 14.0004H18.4004Z" fill="#8F9AA3"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,84 @@
|
||||
class AppointmentParkingQRResponseModel {
|
||||
String? admissionDate;
|
||||
int? admissionNo;
|
||||
String? appointmentDate;
|
||||
int? appointmentNo;
|
||||
int? createdBy;
|
||||
String? createdOn;
|
||||
String? gUID;
|
||||
String? invoiceDate;
|
||||
int? invoiceNo;
|
||||
bool? isActive;
|
||||
bool? isOutInPatient;
|
||||
int? isPatient;
|
||||
bool? isUsed;
|
||||
int? patientID;
|
||||
int? projectID;
|
||||
dynamic ticketBase64;
|
||||
int? ticketID;
|
||||
String? ticketURL;
|
||||
|
||||
AppointmentParkingQRResponseModel(
|
||||
{this.admissionDate,
|
||||
this.admissionNo,
|
||||
this.appointmentDate,
|
||||
this.appointmentNo,
|
||||
this.createdBy,
|
||||
this.createdOn,
|
||||
this.gUID,
|
||||
this.invoiceDate,
|
||||
this.invoiceNo,
|
||||
this.isActive,
|
||||
this.isOutInPatient,
|
||||
this.isPatient,
|
||||
this.isUsed,
|
||||
this.patientID,
|
||||
this.projectID,
|
||||
this.ticketBase64,
|
||||
this.ticketID,
|
||||
this.ticketURL});
|
||||
|
||||
AppointmentParkingQRResponseModel.fromJson(Map<String, dynamic> json) {
|
||||
admissionDate = json['AdmissionDate'];
|
||||
admissionNo = json['AdmissionNo'];
|
||||
appointmentDate = json['AppointmentDate'];
|
||||
appointmentNo = json['AppointmentNo'];
|
||||
createdBy = json['CreatedBy'];
|
||||
createdOn = json['CreatedOn'];
|
||||
gUID = json['GUID'];
|
||||
invoiceDate = json['InvoiceDate'];
|
||||
invoiceNo = json['InvoiceNo'];
|
||||
isActive = json['IsActive'];
|
||||
isOutInPatient = json['IsOutInPatient'];
|
||||
isPatient = json['IsPatient'];
|
||||
isUsed = json['IsUsed'];
|
||||
patientID = json['PatientID'];
|
||||
projectID = json['ProjectID'];
|
||||
ticketBase64 = json['TicketBase64'].cast<int>();
|
||||
ticketID = json['TicketID'];
|
||||
ticketURL = json['TicketURL'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['AdmissionDate'] = this.admissionDate;
|
||||
data['AdmissionNo'] = this.admissionNo;
|
||||
data['AppointmentDate'] = this.appointmentDate;
|
||||
data['AppointmentNo'] = this.appointmentNo;
|
||||
data['CreatedBy'] = this.createdBy;
|
||||
data['CreatedOn'] = this.createdOn;
|
||||
data['GUID'] = this.gUID;
|
||||
data['InvoiceDate'] = this.invoiceDate;
|
||||
data['InvoiceNo'] = this.invoiceNo;
|
||||
data['IsActive'] = this.isActive;
|
||||
data['IsOutInPatient'] = this.isOutInPatient;
|
||||
data['IsPatient'] = this.isPatient;
|
||||
data['IsUsed'] = this.isUsed;
|
||||
data['PatientID'] = this.patientID;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['TicketBase64'] = this.ticketBase64;
|
||||
data['TicketID'] = this.ticketID;
|
||||
data['TicketURL'] = this.ticketURL;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue