|
|
|
|
@ -1,16 +1,9 @@
|
|
|
|
|
import 'package:doctor_app_flutter/config/shared_pref_kay.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/enum/master_lookup_key.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/viewModel/SOAP_view_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/GeneralGetReqForSOAP.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/master_key_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/post_allergy_request_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/post_chief_complaint_request_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/post_histories_request_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/selected_items/my_selected_allergy.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/selected_items/my_selected_history.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/doctor/doctor_profile_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/patients/profile/soap_update/soap_utils.dart';
|
|
|
|
|
@ -33,13 +26,18 @@ class UpdateSubjectivePage extends StatefulWidget {
|
|
|
|
|
final int currentIndex;
|
|
|
|
|
|
|
|
|
|
UpdateSubjectivePage(
|
|
|
|
|
{Key key, this.changePageViewIndex, this.patientInfo, this.changeLoadingState, this.currentIndex});
|
|
|
|
|
{Key key,
|
|
|
|
|
this.changePageViewIndex,
|
|
|
|
|
this.patientInfo,
|
|
|
|
|
this.changeLoadingState,
|
|
|
|
|
this.currentIndex});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
_UpdateSubjectivePageState createState() => _UpdateSubjectivePageState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements SubjectiveCallBack {
|
|
|
|
|
class _UpdateSubjectivePageState extends State<UpdateSubjectivePage>
|
|
|
|
|
implements SubjectiveCallBack {
|
|
|
|
|
bool isChiefExpand = false;
|
|
|
|
|
bool isHistoryExpand = false;
|
|
|
|
|
bool isAllergiesExpand = false;
|
|
|
|
|
@ -55,7 +53,8 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
widget.changeLoadingState(true);
|
|
|
|
|
if (model.patientHistoryList.isNotEmpty) {
|
|
|
|
|
model.patientHistoryList.forEach((element) {
|
|
|
|
|
if (element.historyType == MasterKeysService.HistoryFamily.getMasterKeyService()) {
|
|
|
|
|
if (element.historyType ==
|
|
|
|
|
MasterKeysService.HistoryFamily.getMasterKeyService()) {
|
|
|
|
|
MasterKeyModel history = model.getOneMasterKey(
|
|
|
|
|
masterKeys: MasterKeysService.HistoryFamily,
|
|
|
|
|
id: element.historyId,
|
|
|
|
|
@ -63,11 +62,15 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
if (history != null) {
|
|
|
|
|
MySelectedHistory mySelectedHistory =
|
|
|
|
|
SoapUtils.generateMySelectedHistory(
|
|
|
|
|
history: history, isChecked: element.isChecked, remark: element.remarks, isLocal: false);
|
|
|
|
|
history: history,
|
|
|
|
|
isChecked: element.isChecked,
|
|
|
|
|
remark: element.remarks,
|
|
|
|
|
isLocal: false);
|
|
|
|
|
myHistoryList.add(mySelectedHistory);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (element.historyType == MasterKeysService.HistoryMedical.getMasterKeyService()) {
|
|
|
|
|
if (element.historyType ==
|
|
|
|
|
MasterKeysService.HistoryMedical.getMasterKeyService()) {
|
|
|
|
|
MasterKeyModel history = model.getOneMasterKey(
|
|
|
|
|
masterKeys: MasterKeysService.HistoryMedical,
|
|
|
|
|
id: element.historyId,
|
|
|
|
|
@ -75,11 +78,15 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
if (history != null) {
|
|
|
|
|
MySelectedHistory mySelectedHistory =
|
|
|
|
|
SoapUtils.generateMySelectedHistory(
|
|
|
|
|
history: history, isChecked: element.isChecked, remark: element.remarks, isLocal: false);
|
|
|
|
|
history: history,
|
|
|
|
|
isChecked: element.isChecked,
|
|
|
|
|
remark: element.remarks,
|
|
|
|
|
isLocal: false);
|
|
|
|
|
myHistoryList.add(mySelectedHistory);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (element.historyType == MasterKeysService.HistorySports.getMasterKeyService()) {
|
|
|
|
|
if (element.historyType ==
|
|
|
|
|
MasterKeysService.HistorySports.getMasterKeyService()) {
|
|
|
|
|
MasterKeyModel history = model.getOneMasterKey(
|
|
|
|
|
masterKeys: MasterKeysService.HistorySports,
|
|
|
|
|
id: element.historyId,
|
|
|
|
|
@ -87,11 +94,15 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
if (history != null) {
|
|
|
|
|
MySelectedHistory mySelectedHistory =
|
|
|
|
|
SoapUtils.generateMySelectedHistory(
|
|
|
|
|
history: history, isChecked: element.isChecked, remark: element.remarks, isLocal: false);
|
|
|
|
|
history: history,
|
|
|
|
|
isChecked: element.isChecked,
|
|
|
|
|
remark: element.remarks,
|
|
|
|
|
isLocal: false);
|
|
|
|
|
myHistoryList.add(mySelectedHistory);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (element.historyType == MasterKeysService.HistorySurgical.getMasterKeyService()) {
|
|
|
|
|
if (element.historyType ==
|
|
|
|
|
MasterKeysService.HistorySurgical.getMasterKeyService()) {
|
|
|
|
|
MasterKeyModel history = model.getOneMasterKey(
|
|
|
|
|
masterKeys: MasterKeysService.HistorySurgical,
|
|
|
|
|
id: element.historyId,
|
|
|
|
|
@ -99,7 +110,10 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
if (history != null) {
|
|
|
|
|
MySelectedHistory mySelectedHistory =
|
|
|
|
|
SoapUtils.generateMySelectedHistory(
|
|
|
|
|
history: history, isChecked: element.isChecked, remark: element.remarks, isLocal: false);
|
|
|
|
|
history: history,
|
|
|
|
|
isChecked: element.isChecked,
|
|
|
|
|
remark: element.remarks,
|
|
|
|
|
isLocal: false);
|
|
|
|
|
myHistoryList.add(mySelectedHistory);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -108,15 +122,19 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getAllergies(SOAPViewModel model) async {
|
|
|
|
|
|
|
|
|
|
if (model.patientAllergiesList.isNotEmpty) {
|
|
|
|
|
model.patientAllergiesList.forEach((element) {
|
|
|
|
|
MasterKeyModel selectedAllergy = model.getOneMasterKey(
|
|
|
|
|
masterKeys: MasterKeysService.Allergies, id: element.allergyDiseaseId, typeId: element.allergyDiseaseType);
|
|
|
|
|
masterKeys: MasterKeysService.Allergies,
|
|
|
|
|
id: element.allergyDiseaseId,
|
|
|
|
|
typeId: element.allergyDiseaseType);
|
|
|
|
|
MasterKeyModel selectedAllergySeverity;
|
|
|
|
|
if (element.severity == 0) {
|
|
|
|
|
selectedAllergySeverity = MasterKeyModel(
|
|
|
|
|
id: 0, typeId: MasterKeysService.AllergySeverity.getMasterKeyService(), nameAr: '', nameEn: '');
|
|
|
|
|
id: 0,
|
|
|
|
|
typeId: MasterKeysService.AllergySeverity.getMasterKeyService(),
|
|
|
|
|
nameAr: '',
|
|
|
|
|
nameEn: '');
|
|
|
|
|
} else {
|
|
|
|
|
selectedAllergySeverity = model.getOneMasterKey(
|
|
|
|
|
masterKeys: MasterKeysService.AllergySeverity,
|
|
|
|
|
@ -124,15 +142,17 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MySelectedAllergy mySelectedAllergy = SoapUtils.generateMySelectedAllergy(
|
|
|
|
|
allergy: selectedAllergy,
|
|
|
|
|
isChecked: element.isChecked,
|
|
|
|
|
createdBy: element.createdBy,
|
|
|
|
|
remark: element.remarks,
|
|
|
|
|
isLocal: false,
|
|
|
|
|
allergySeverity: selectedAllergySeverity);
|
|
|
|
|
MySelectedAllergy mySelectedAllergy =
|
|
|
|
|
SoapUtils.generateMySelectedAllergy(
|
|
|
|
|
allergy: selectedAllergy,
|
|
|
|
|
isChecked: element.isChecked,
|
|
|
|
|
createdBy: element.createdBy,
|
|
|
|
|
remark: element.remarks,
|
|
|
|
|
isLocal: false,
|
|
|
|
|
allergySeverity: selectedAllergySeverity);
|
|
|
|
|
|
|
|
|
|
if (selectedAllergy != null && selectedAllergySeverity != null) myAllergiesList.add(mySelectedAllergy);
|
|
|
|
|
if (selectedAllergy != null && selectedAllergySeverity != null)
|
|
|
|
|
myAllergiesList.add(mySelectedAllergy);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -148,11 +168,14 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
|
|
|
|
|
if (model.patientChiefComplaintList.isNotEmpty) {
|
|
|
|
|
isChiefExpand = true;
|
|
|
|
|
complaintsController.text = Helpers.parseHtmlString(model.patientChiefComplaintList[0].chiefComplaint);
|
|
|
|
|
complaintsController.text = Helpers.parseHtmlString(
|
|
|
|
|
model.patientChiefComplaintList[0].chiefComplaint);
|
|
|
|
|
illnessController.text = model.patientChiefComplaintList[0].hopi;
|
|
|
|
|
medicationController.text = !(model.patientChiefComplaintList[0].currentMedication).isNotEmpty
|
|
|
|
|
? model.patientChiefComplaintList[0].currentMedication + '\n \n'
|
|
|
|
|
: model.patientChiefComplaintList[0].currentMedication;
|
|
|
|
|
medicationController.text =
|
|
|
|
|
!(model.patientChiefComplaintList[0].currentMedication).isNotEmpty
|
|
|
|
|
? model.patientChiefComplaintList[0].currentMedication +
|
|
|
|
|
'\n \n'
|
|
|
|
|
: model.patientChiefComplaintList[0].currentMedication;
|
|
|
|
|
}
|
|
|
|
|
if (widget.patientInfo.admissionNo == null) {
|
|
|
|
|
await getHistory(model);
|
|
|
|
|
@ -200,7 +223,8 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
isExpanded: isChiefExpand,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: SizeConfig.heightMultiplier * (SizeConfig.isHeightVeryShort ? 4 : 2),
|
|
|
|
|
height: SizeConfig.heightMultiplier *
|
|
|
|
|
(SizeConfig.isHeightVeryShort ? 4 : 2),
|
|
|
|
|
),
|
|
|
|
|
if (widget.patientInfo.admissionNo == null)
|
|
|
|
|
ExpandableSOAPWidget(
|
|
|
|
|
@ -212,12 +236,15 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [UpdateHistoryWidget(myHistoryList: myHistoryList)],
|
|
|
|
|
children: [
|
|
|
|
|
UpdateHistoryWidget(myHistoryList: myHistoryList)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
isExpanded: isHistoryExpand,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: SizeConfig.heightMultiplier * (SizeConfig.isHeightVeryShort ? 4 : 2),
|
|
|
|
|
height: SizeConfig.heightMultiplier *
|
|
|
|
|
(SizeConfig.isHeightVeryShort ? 4 : 2),
|
|
|
|
|
),
|
|
|
|
|
if (widget.patientInfo.admissionNo == null)
|
|
|
|
|
ExpandableSOAPWidget(
|
|
|
|
|
@ -241,7 +268,8 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
isExpanded: isAllergiesExpand,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: SizeConfig.heightMultiplier * (SizeConfig.isHeightVeryShort ? 20 : 10),
|
|
|
|
|
height: SizeConfig.heightMultiplier *
|
|
|
|
|
(SizeConfig.isHeightVeryShort ? 20 : 10),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
@ -253,7 +281,9 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
addSubjectiveInfo(
|
|
|
|
|
{SOAPViewModel model, List<MySelectedAllergy> myAllergiesList, List<MySelectedHistory> myHistoryList}) async {
|
|
|
|
|
{SOAPViewModel model,
|
|
|
|
|
List<MySelectedAllergy> myAllergiesList,
|
|
|
|
|
List<MySelectedHistory> myHistoryList}) async {
|
|
|
|
|
if (FocusScope.of(context).hasFocus) FocusScope.of(context).unfocus();
|
|
|
|
|
widget.changeLoadingState(true);
|
|
|
|
|
formKey.currentState.save();
|
|
|
|
|
@ -265,22 +295,15 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
if (complaintsController.text.isNotEmpty &&
|
|
|
|
|
illnessController.text.isNotEmpty &&
|
|
|
|
|
complaintsController.text.length > 25) {
|
|
|
|
|
await postChiefComplaint(model: model);
|
|
|
|
|
if (model.state == ViewState.ErrorLocal) {
|
|
|
|
|
Helpers.showErrorToast(model.error);
|
|
|
|
|
}
|
|
|
|
|
if (myHistoryList.length != 0) {
|
|
|
|
|
await postHistories(model: model, myHistoryList: myHistoryList);
|
|
|
|
|
if (model.state == ViewState.ErrorLocal) {
|
|
|
|
|
Helpers.showErrorToast(model.error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (myAllergiesList.length != 0) {
|
|
|
|
|
await postAllergy(myAllergiesList: myAllergiesList, model: model);
|
|
|
|
|
if (model.state == ViewState.ErrorLocal) {
|
|
|
|
|
Helpers.showErrorToast(model.error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
await model.postSubjectServices(
|
|
|
|
|
patientInfo: widget.patientInfo,
|
|
|
|
|
complaintsText: complaintsController.text,
|
|
|
|
|
medicationText: medicationController.text,
|
|
|
|
|
illnessText: illnessController.text,
|
|
|
|
|
myHistoryList: myHistoryList,
|
|
|
|
|
myAllergiesList: myAllergiesList,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
widget.changeLoadingState(true);
|
|
|
|
|
|
|
|
|
|
widget.changePageViewIndex(1);
|
|
|
|
|
@ -311,112 +334,11 @@ class _UpdateSubjectivePageState extends State<UpdateSubjectivePage> implements
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
postAllergy(
|
|
|
|
|
{List<MySelectedAllergy> myAllergiesList, SOAPViewModel model}) async {
|
|
|
|
|
PostAllergyRequestModel postAllergyRequestModel =
|
|
|
|
|
new PostAllergyRequestModel();
|
|
|
|
|
|
|
|
|
|
Map profile = await sharedPref.getObj(DOCTOR_PROFILE);
|
|
|
|
|
|
|
|
|
|
DoctorProfileModel doctorProfile = DoctorProfileModel.fromJson(profile);
|
|
|
|
|
myAllergiesList.forEach((allergy) {
|
|
|
|
|
if (postAllergyRequestModel.listHisProgNotePatientAllergyDiseaseVM ==
|
|
|
|
|
null)
|
|
|
|
|
postAllergyRequestModel.listHisProgNotePatientAllergyDiseaseVM = [];
|
|
|
|
|
postAllergyRequestModel.listHisProgNotePatientAllergyDiseaseVM.add(
|
|
|
|
|
ListHisProgNotePatientAllergyDiseaseVM(
|
|
|
|
|
allergyDiseaseId: allergy.selectedAllergy.id,
|
|
|
|
|
allergyDiseaseType: allergy.selectedAllergy.typeId,
|
|
|
|
|
patientMRN: widget.patientInfo.patientMRN,
|
|
|
|
|
episodeId: widget.patientInfo.episodeNo,
|
|
|
|
|
appointmentNo: widget.patientInfo.appointmentNo,
|
|
|
|
|
severity: allergy.selectedAllergySeverity.id,
|
|
|
|
|
remarks: allergy.remark,
|
|
|
|
|
createdBy: allergy.createdBy ?? doctorProfile.doctorID,
|
|
|
|
|
createdOn: DateTime.now().toIso8601String(),
|
|
|
|
|
editedBy: doctorProfile.doctorID,
|
|
|
|
|
editedOn: DateTime.now().toIso8601String(),
|
|
|
|
|
isChecked: allergy.isChecked,
|
|
|
|
|
isUpdatedByNurse: false));
|
|
|
|
|
});
|
|
|
|
|
if (model.patientAllergiesList.isEmpty) {
|
|
|
|
|
await model.postAllergy(postAllergyRequestModel);
|
|
|
|
|
} else {
|
|
|
|
|
await model.patchAllergy(postAllergyRequestModel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (model.state == ViewState.ErrorLocal) {
|
|
|
|
|
Helpers.showErrorToast(model.error);
|
|
|
|
|
}
|
|
|
|
|
GeneralGetReqForSOAP generalGetReqForSOAP = GeneralGetReqForSOAP(
|
|
|
|
|
patientMRN: widget.patientInfo.patientMRN,
|
|
|
|
|
episodeId: widget.patientInfo.episodeNo,
|
|
|
|
|
appointmentNo: widget.patientInfo.appointmentNo,
|
|
|
|
|
doctorID: '',
|
|
|
|
|
editedBy: '');
|
|
|
|
|
await model.getPatientAllergy(generalGetReqForSOAP, isLocalBusy: true);
|
|
|
|
|
|
|
|
|
|
if (model.state == ViewState.ErrorLocal) {
|
|
|
|
|
Helpers.showErrorToast(model.error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
postHistories(
|
|
|
|
|
{List<MySelectedHistory> myHistoryList, SOAPViewModel model}) async {
|
|
|
|
|
PostHistoriesRequestModel postHistoriesRequestModel =
|
|
|
|
|
new PostHistoriesRequestModel(doctorID: '');
|
|
|
|
|
myHistoryList.forEach((history) {
|
|
|
|
|
if (postHistoriesRequestModel.listMedicalHistoryVM == null)
|
|
|
|
|
postHistoriesRequestModel.listMedicalHistoryVM = [];
|
|
|
|
|
postHistoriesRequestModel.listMedicalHistoryVM.add(ListMedicalHistoryVM(
|
|
|
|
|
patientMRN: widget.patientInfo.patientMRN,
|
|
|
|
|
episodeId: widget.patientInfo.episodeNo,
|
|
|
|
|
appointmentNo: widget.patientInfo.appointmentNo,
|
|
|
|
|
remarks: "",
|
|
|
|
|
historyId: history.selectedHistory.id,
|
|
|
|
|
historyType: history.selectedHistory.typeId,
|
|
|
|
|
isChecked: history.isChecked,
|
|
|
|
|
));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (model.patientHistoryList.isEmpty) {
|
|
|
|
|
await model.postHistories(postHistoriesRequestModel);
|
|
|
|
|
} else {
|
|
|
|
|
await model.patchHistories(postHistoriesRequestModel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (model.state == ViewState.ErrorLocal) {
|
|
|
|
|
Helpers.showErrorToast(model.error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
postChiefComplaint({SOAPViewModel model}) async {
|
|
|
|
|
formKey.currentState.save();
|
|
|
|
|
if (formKey.currentState.validate()) {
|
|
|
|
|
PostChiefComplaintRequestModel postChiefComplaintRequestModel = new PostChiefComplaintRequestModel(
|
|
|
|
|
admissionNo: widget.patientInfo.admissionNo != null ? int.parse(widget.patientInfo.admissionNo) : null,
|
|
|
|
|
patientMRN: widget.patientInfo.patientMRN,
|
|
|
|
|
episodeID: widget.patientInfo.episodeNo ?? 0,
|
|
|
|
|
appointmentNo: widget.patientInfo.appointmentNo ?? 0,
|
|
|
|
|
chiefComplaint: complaintsController.text,
|
|
|
|
|
currentMedication: medicationController.text,
|
|
|
|
|
hopi: illnessController.text,
|
|
|
|
|
isLactation: false,
|
|
|
|
|
ispregnant: false,
|
|
|
|
|
doctorID: '',
|
|
|
|
|
numberOfWeeks: 0);
|
|
|
|
|
if (model.patientChiefComplaintList.isEmpty) {
|
|
|
|
|
postChiefComplaintRequestModel.editedBy = '';
|
|
|
|
|
await model.postChiefComplaint(postChiefComplaintRequestModel);
|
|
|
|
|
} else {
|
|
|
|
|
postChiefComplaintRequestModel.editedBy = '';
|
|
|
|
|
await model.patchChiefComplaint(postChiefComplaintRequestModel);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Function nextFunction(model) {
|
|
|
|
|
addSubjectiveInfo(model: model, myAllergiesList: myAllergiesList, myHistoryList: myHistoryList);
|
|
|
|
|
addSubjectiveInfo(
|
|
|
|
|
model: model,
|
|
|
|
|
myAllergiesList: myAllergiesList,
|
|
|
|
|
myHistoryList: myHistoryList);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|