|
|
|
|
@ -47,7 +47,7 @@ class MyInvoicesService extends BaseService {
|
|
|
|
|
return Future.value(localRes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Future<Map> getDentalAppointmentInvoice(int projectID, int appoNo, context) async {
|
|
|
|
|
Future<Map> getDentalAppointmentInvoice(int projectID, int appoNo, int invoiceNo, context) async {
|
|
|
|
|
Map<String, dynamic> request;
|
|
|
|
|
var languageID =
|
|
|
|
|
await sharedPref.getStringWithDefaultValue(APP_LANGUAGE, 'ar');
|
|
|
|
|
@ -64,6 +64,7 @@ class MyInvoicesService extends BaseService {
|
|
|
|
|
"PatientID": authUser.patientID,
|
|
|
|
|
"License": true,
|
|
|
|
|
"AppointmentNo": appoNo,
|
|
|
|
|
"InvoiceNo": invoiceNo,
|
|
|
|
|
"IsRegistered": true,
|
|
|
|
|
"ProjectID": projectID,
|
|
|
|
|
"PatientTypeID": authUser.patientIdentificationType,
|
|
|
|
|
|