|
|
|
|
@ -89,7 +89,11 @@ class PatientMedicalReportService extends BaseService {
|
|
|
|
|
hasError = false;
|
|
|
|
|
Map<String, dynamic> body = Map();
|
|
|
|
|
// body['TokenID'] = "@dm!n";
|
|
|
|
|
body['SetupID'] = "91877";
|
|
|
|
|
body['SetupID'] = body.containsKey('SetupID')
|
|
|
|
|
? body['SetupID'] != null
|
|
|
|
|
? body['SetupID']
|
|
|
|
|
: SETUP_ID
|
|
|
|
|
: SETUP_ID;
|
|
|
|
|
body['AdmissionNo'] = int.parse(patient.admissionNo);
|
|
|
|
|
body['MedicalReportHTML'] = htmlText;
|
|
|
|
|
if (body['ProjectID'] == null) {
|
|
|
|
|
@ -112,7 +116,11 @@ class PatientMedicalReportService extends BaseService {
|
|
|
|
|
body['LineItemNo'] = limitNumber;
|
|
|
|
|
body['InvoiceNo'] = invoiceNumber;
|
|
|
|
|
|
|
|
|
|
body['SetupID'] = "91877";
|
|
|
|
|
body['SetupID'] = body.containsKey('SetupID')
|
|
|
|
|
? body['SetupID'] != null
|
|
|
|
|
? body['SetupID']
|
|
|
|
|
: SETUP_ID
|
|
|
|
|
: SETUP_ID;
|
|
|
|
|
//body['AdmissionNo'] = int.parse(patient.admissionNo);
|
|
|
|
|
body['MedicalReportHTML'] = htmlText;
|
|
|
|
|
if (body['ProjectID'] == null) {
|
|
|
|
|
|