|
|
|
@ -12,7 +12,7 @@ class RadiologyService extends BaseService {
|
|
|
|
|
|
|
|
|
|
|
|
String radReportPDF = "";
|
|
|
|
String radReportPDF = "";
|
|
|
|
|
|
|
|
|
|
|
|
Future getRadImageURL({int? invoiceNo, String? invoiceType, int? lineItem, int? projectId, bool? isVidaPlus}) async {
|
|
|
|
Future getRadImageURL({int? invoiceNo, String? invoiceType, int? lineItem, int? projectId, bool? isVidaPlus, String? examId}) async {
|
|
|
|
hasError = false;
|
|
|
|
hasError = false;
|
|
|
|
final Map<String, dynamic> body = new Map<String, dynamic>();
|
|
|
|
final Map<String, dynamic> body = new Map<String, dynamic>();
|
|
|
|
body['InvoiceNo'] = isVidaPlus! ? "0" : invoiceNo;
|
|
|
|
body['InvoiceNo'] = isVidaPlus! ? "0" : invoiceNo;
|
|
|
|
@ -20,6 +20,7 @@ class RadiologyService extends BaseService {
|
|
|
|
body['LineItemNo'] = lineItem;
|
|
|
|
body['LineItemNo'] = lineItem;
|
|
|
|
body['ProjectID'] = projectId;
|
|
|
|
body['ProjectID'] = projectId;
|
|
|
|
body['InvoiceType'] = invoiceType;
|
|
|
|
body['InvoiceType'] = invoiceType;
|
|
|
|
|
|
|
|
body['ExamId'] = examId;
|
|
|
|
|
|
|
|
|
|
|
|
await baseAppClient.post(GET_RAD_IMAGE_URL, isAllowAny: true, onSuccess: (dynamic response, int statusCode) {
|
|
|
|
await baseAppClient.post(GET_RAD_IMAGE_URL, isAllowAny: true, onSuccess: (dynamic response, int statusCode) {
|
|
|
|
url = response['Data'];
|
|
|
|
url = response['Data'];
|
|
|
|
|