123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622 |
- import 'dart:convert';
- import 'package:fis_jsonrpc/rpc.dart';
- import 'package:flutter/material.dart';
- import 'package:get/get.dart';
- import 'package:vitalapp/architecture/defines.dart';
- import 'package:vitalapp/architecture/utils/prompt_box.dart';
- import 'package:vitalapp/architecture/values/features.dart';
- import 'package:vitalapp/components/alert_dialog.dart';
- import 'package:vitalapp/global.dart';
- import 'package:vitalapp/helper/id_card_helper.dart';
- import 'package:vitalapp/managers/interfaces/device.dart';
- import 'package:vitalapp/managers/interfaces/models/device.dart';
- import 'package:vitalapp/managers/interfaces/patient.dart';
- import 'package:vitalapp/managers/interfaces/permission.dart';
- import 'package:vitalapp/pages/controllers/blue_location_mixin.dart';
- import 'package:vitalapp/pages/controllers/crowd_labels.dart';
- import 'package:vitalapp/pages/controllers/home_nav_mixin.dart';
- import 'package:vitalapp/pages/patient/bluetooth_card_reader/view.dart';
- import 'package:vitalapp/pages/patient/card_reader/index.dart';
- import 'package:vitalapp/pages/patient/create/state.dart';
- import 'package:vitalapp/pages/patient/create/widgets/face_result_dialog.dart';
- import 'package:vitalapp/pages/patient/list/controller.dart';
- import 'package:vitalapp/routes/routes.dart';
- import 'package:vitalapp/store/store.dart';
- import 'package:vnote_device_plugin/consts/types.dart';
- import 'package:fis_common/logger/logger.dart';
- import '../../facial_recognition/index.dart';
- import '../../id_card_scan/index.dart';
- class CreatePatientController extends FControllerBase
- with HomeNavMixin, BluetoothAndLocationMixin {
- final _patientManager = Get.find<IPatientManager>();
- final crowdLabelsController = Get.find<CrowdLabelsController>();
- final _deviceManager = Get.find<IDeviceManager>();
- final state = CreatePatientState();
- @override
- Future<void> onLoad() {
- final params = Get.parameters;
- if (params.containsKey("from")) {
- if (params["from"] == "list") {
- state.isCreateOnly = true;
- }
- }
- if (Routes.parameters.containsKey('patientInfo')) {
- if (Routes.parameters['patientInfo'] != null) {
- PatientBaseDTO patientInfo = PatientBaseDTO.fromJson(
- jsonDecode(
- Routes.parameters['patientInfo']!,
- ),
- );
- patientInfoParse(patientInfo);
- }
- }
- return super.onLoad();
- }
- /// 保存档案,调整签约
- void gotoSignContract() async {
- setBusy("正在保存...");
- String? code;
- try {
- final validateMsg = await _validateForm();
- if (validateMsg != null) {
- toast(validateMsg);
- return null;
- }
- code = await _submitForm();
- if (code == null) {
- busy = false;
- PromptBox.toast("保存失败");
- return;
- }
- // final code = "13B95A2B2790464BBFD9B30A71F15C95";
- busy = false;
- Future.delayed(
- const Duration(milliseconds: 800),
- () {
- state.reset(); // 重置状态
- },
- );
- } finally {
- if (code != null) {
- Get.toNamed(
- "/contract/package_list",
- parameters: {"patientCode": code},
- );
- }
- }
- // Get.find<HomeController>().switchNavByName("/patient/list");
- // Future.delayed(
- // const Duration(milliseconds: 800),
- // () {
- // // TODO:
- // Get.find<PatientListController>().gotoDetail(code);
- // busy = false;
- // },
- // );
- }
- /// 存为档案,调整到档案详情
- void saveAndBack() async {
- final validateMsg = await _validateForm();
- if (validateMsg != null) {
- toast(validateMsg);
- return null;
- }
- final code = await _submitForm();
- if (code == null) {
- busy = false;
- logger.e('CreatePatientController saveAndBack code is null');
- // PromptBox.toast("保存失败");
- return;
- } else {
- busy = false;
- // await queryIsNeedFaceInput(); //询问是否录入人脸
- if (Store.user.hasFeature(FeatureKeys.FaceRecognition) && kIsOnline) {
- var photoUrl = await getPatientPhoto(state.cardNo);
- if (photoUrl.isEmpty) {
- await onFaceEntryClicked(); //不询问直接录入
- }
- }
- Future.delayed(
- ///这个800ms不能移除,移除后会导致建档失败
- const Duration(milliseconds: 800),
- () {
- state.reset(); // 重置状态
- busy = false;
- PromptBox.toast("保存成功");
- Get.find<PatientListController>().reloadList();
- },
- );
- }
- ///不跳转到详情页
- // Get.find<HomeController>().switchNavByName("/patient/list");
- // Get.put(PatientListController());
- Future.delayed(
- ///这个800ms不能移除,移除后会导致建档失败
- const Duration(milliseconds: 800),
- () async {
- onIdcardInfoIsCreateRecord(code);
- await Get.find<PatientListController>().gotoDetail(
- code,
- );
- busy = false;
- },
- );
- }
- /// 询问是否需要人脸录入
- Future<void> queryIsNeedFaceInput() async {
- /// 拥有人脸权限并且不是身份证扫码建档
- if (Store.user.hasFeature(FeatureKeys.FaceRecognition) && kIsOnline) {
- var photoUrl = await getPatientPhoto(state.cardNo);
- if (photoUrl.isNotEmpty) {
- await Get.dialog(VAlertDialog(
- contentPadding: const EdgeInsets.fromLTRB(20, 1, 20, 1),
- title: '提示',
- content: Container(
- margin: const EdgeInsets.only(bottom: 20),
- child: Column(
- mainAxisSize: MainAxisSize.min,
- children: [
- Image.network(photoUrl,
- width: 300, height: 220, fit: BoxFit.cover,
- loadingBuilder: (context, child, progress) {
- if (progress == null ||
- progress.cumulativeBytesLoaded ==
- progress.expectedTotalBytes) {
- return Image.network(
- photoUrl,
- width: 300,
- height: 220,
- fit: BoxFit.cover,
- );
- }
- return const CircularProgressIndicator(
- color: Colors.blueAccent);
- }),
- const Text("该居民已采集过人脸,是否重新采集?",
- style: TextStyle(fontSize: 20),
- textAlign: TextAlign.center),
- ],
- ),
- ),
- confirmLabel: '重新采集',
- cancelLabel: '跳过',
- showCancel: true,
- onConfirm: () async {
- await onFaceEntryClicked();
- Get.back();
- },
- onCanceled: () {
- Get.back();
- },
- ));
- } else {
- await Get.dialog(VAlertDialog(
- contentPadding: const EdgeInsets.fromLTRB(20, 1, 20, 1),
- title: '提示',
- content: Container(
- margin: const EdgeInsets.only(bottom: 20),
- child: const Text(
- '请采集人像,完成后可以使用人脸识别功能',
- style: TextStyle(fontSize: 20),
- textAlign: TextAlign.center,
- ),
- ),
- confirmLabel: '采集',
- cancelLabel: '暂不采集',
- showCancel: true,
- onConfirm: () async {
- await onFaceEntryClicked();
- Get.back();
- },
- onCanceled: () {
- Get.back();
- },
- ));
- }
- }
- }
- Future<DeviceModel?> getDevice(String type) async {
- List<DeviceModel> devices = await _deviceManager.getDeviceList();
- return devices.firstWhereOrNull((element) => element.type == type);
- }
- /// 点击读卡事件
- void onReadCardClicked() async {
- final DeviceModel? device = await getDevice(DeviceTypes.IC_READER);
- CardReaderResult? result;
- if (device != null) {
- final envPassed = await checkDeviceConnectEnv();
- if (envPassed) {
- result = await Get.dialog<CardReaderResult>(
- const BluetoothCardReaderDialog(),
- barrierDismissible: false,
- );
- }
- } else {
- result = await Get.dialog<CardReaderResult>(
- const CardReaderDialog(),
- barrierDismissible: false,
- );
- }
- if (result != null && result.success) {
- PromptBox.toast("读取成功");
- state.cardNo = result.cardNo; // 回填身份证号
- state.name = result.name; // 回填姓名
- state.gender = result.gender; // 回填性别
- state.nation = result.nation; // 回填民族
- state.birthday = result.birthday; // 回填出生日期
- state.censusRegister = result.address; // 回填户籍地址
- if (state.isSyncAddresses) {
- state.address = result.address; // 回填现住地址
- }
- } else {
- print("读卡取消");
- }
- }
- /// 点击读卡事件 (若已建档跳详情页面 若未建档跳创建页面)
- void onReadCardClickedToDetail() async {
- final DeviceModel? device = await getDevice(DeviceTypes.IC_READER);
- CardReaderResult? result;
- if (device != null) {
- final envPassed = await checkDeviceConnectEnv();
- if (envPassed) {
- result = await Get.dialog<CardReaderResult>(
- const BluetoothCardReaderDialog(),
- barrierDismissible: false,
- );
- }
- } else {
- result = await Get.dialog<CardReaderResult>(
- const CardReaderDialog(),
- barrierDismissible: false,
- );
- }
- if (result != null && result.success) {
- PromptBox.toast("读取成功");
- PatientBaseDTO patientInfo = PatientBaseDTO();
- patientInfo.cardNo = result.cardNo; // 回填身份证号
- patientInfo.patientName = result.name; // 回填姓名
- patientInfo.patientGender = result.gender; // 回填性别
- patientInfo.nationality = result.nation; // 回填民族
- patientInfo.birthday = result.birthday; // 回填出生日期
- patientInfo.patientAddress = result.address; // 回填户籍地址
- onIdcardInfoIsCreateRecord(patientInfo.cardNo!, patientInfo);
- } else {
- print("读卡取消");
- }
- }
- /// 点击身份识别建档(拍摄扫描身份证)
- void onIdCardScanClicked() async {
- var verifyResult = await _verifyCameraPermissions();
- if (!verifyResult) {
- return;
- }
- final IdCardScanResult? result = await Get.to<IdCardScanResult>(
- () => const IdCardScanPage(),
- );
- if (result != null && result.success) {
- PromptBox.toast("身份证信息识别成功");
- PatientBaseDTO patientInfo = result.patientBaseDTO;
- patientInfoParse(patientInfo);
- } else {
- print("识别取消");
- }
- }
- /// 点击身份识别(拍摄扫描身份证)
- void onIdCardScanClickedToDetail() async {
- var verifyResult = await _verifyCameraPermissions();
- if (!verifyResult) {
- return;
- }
- final IdCardScanResult? result = await Get.to<IdCardScanResult>(
- () => const IdCardScanPage(),
- );
- if (result != null && result.success) {
- PromptBox.toast("身份证信息识别成功");
- PatientBaseDTO patientInfo = result.patientBaseDTO;
- onIdcardInfoIsCreateRecord(patientInfo.cardNo!, patientInfo);
- } else {
- print("识别取消");
- }
- }
- void patientInfoParse(PatientBaseDTO patientInfo) {
- state.cardNo = patientInfo.cardNo ?? ""; // 回填身份证号
- state.name = patientInfo.patientName ?? ""; // 回填姓名
- state.gender = patientInfo.patientGender; // 回填性别
- state.nation = patientInfo.nationality ?? ""; // 回填民族
- state.birthday = patientInfo.birthday; // 回填出生日期
- state.censusRegister = patientInfo.patientAddress ?? ""; // 回填户籍地址
- if (state.isSyncAddresses) {
- state.address = patientInfo.patientAddress ?? ""; // 回填现住地址
- }
- }
- Future<bool> _verifyCameraPermissions() async {
- IPermissionManager permissionManager = Get.find<IPermissionManager>();
- var isCameraPermissions =
- await permissionManager.requestCameraPermissions();
- if (!isCameraPermissions) {
- await Get.dialog(
- VAlertDialog(
- title: "提示",
- width: 420,
- content: Container(
- height: 32,
- padding: const EdgeInsets.symmetric(horizontal: 24),
- alignment: Alignment.center,
- child: const Text(
- "未授予相机权限,前去设置",
- style: TextStyle(fontSize: 20),
- ),
- ),
- showCancel: false,
- onConfirm: () async {
- Get.back();
- await permissionManager.openAppSettingsAsync();
- },
- ),
- barrierDismissible: false,
- barrierColor: Colors.black.withOpacity(.4),
- );
- }
- return isCameraPermissions;
- }
- /// 点击人脸识别
- void onFaceIdLoginClicked() async {
- var verifyResult = await _verifyCameraPermissions();
- if (!verifyResult) {
- return;
- }
- final FaceRecognitionResult? result = await Get.to<FaceRecognitionResult>(
- () => const FacialRecognitionPage(
- mode: FacialRecognitionMode.faceRecognition,
- ),
- );
- if (result != null && result.success) {
- final patient = result.patientInfo;
- final hasConfirmed = await FaceResultDialog.show(patient, true);
- if (hasConfirmed) {
- await _checkinPatient(patient);
- }
- } else {
- print("识别取消");
- }
- }
- void onIdcardInfoIsCreateRecord(
- String cardNo, [
- PatientBaseDTO? patientInfo,
- ]) async {
- PatientDTO? patientInfoDto = await _patientManager.getDetail(cardNo);
- if (patientInfoDto != null) {
- Store.user.currentSelectPatientInfo = patientInfoDto;
- }
- if (patientInfo != null) {
- final hasConfirmed =
- await FaceResultDialog.show(patientInfo, patientInfoDto != null);
- if (hasConfirmed) {
- if (patientInfoDto != null) {
- await Get.find<PatientListController>()
- .gotoDetail(patientInfo.cardNo!, patientInfoDto, patientInfo);
- } else {
- await Get.find<PatientListController>().gotoCreate(
- patientInfo.cardNo!,
- patientInfoDto,
- patientInfo,
- );
- }
- }
- }
- }
- /// 点击录入人脸
- Future<void> onFaceEntryClicked() async {
- final PatientDTO patientInfo = PatientDTO(
- patientName: state.name,
- phone: state.phoneNo,
- emergencyPhone: state.emergencyPhone,
- cardNo: state.cardNo,
- nationality: state.nation,
- birthday: state.birthday,
- cardType: state.cardType,
- patientGender: state.gender!,
- code: state.cardNo,
- );
- bool? result = await Get.to<bool>(
- () => FacialRecognitionPage(
- mode: FacialRecognitionMode.faceInput,
- patientInfo: patientInfo,
- ),
- );
- if (result != null && result) {
- PromptBox.toast('人脸数据存入成功');
- }
- }
- /// 处理 “同户籍地址” 勾选变更事件
- void onSyncAddressCheckChanged(bool isChecked) {
- state.isSyncAddresses = isChecked;
- if (isChecked) {
- // 同步户籍地址到现住地址
- state.address = state.censusRegister;
- } else {
- state.address = "";
- }
- }
- /// 处理户籍地址变更
- void onCensusRegisterChanged(String value) {
- state.censusRegister = value;
- if (state.isSyncAddresses) {
- state.address = value;
- }
- }
- Future<String> getPatientPhoto(String patientCode) async {
- final dto = await _patientManager.getDetail(patientCode);
- if (dto != null && dto.photos != null && dto.photos!.isNotEmpty) {
- return dto.photos![0];
- }
- return "";
- }
- Future<String?> _submitForm() async {
- setBusy("正在保存...");
- final crowdLabelCodes = crowdLabelsController.state.selectedCodes;
- final request = CreatePatientRequest2(
- patientName: state.name,
- phone: state.phoneNo,
- emergencyPhone: state.emergencyPhone,
- patientGender: state.gender!,
- nationality: state.nation,
- birthday: state.birthday?.toUtc(),
- cardType: state.cardType,
- cardNo: state.cardNo,
- patientAddress: state.address,
- permanentResidenceAddress: state.censusRegister,
- crowdLabels: crowdLabelCodes,
- );
- final result = await _patientManager.create(request);
- return result;
- }
- bool isNumeric(String str) {
- if (str.isEmpty) {
- return false;
- }
- return double.tryParse(str) != null;
- }
- bool isAlphaNumeric(String str) {
- final RegExp alphaNumericRegExp = RegExp(r'^[a-zA-Z0-9]+$');
- return alphaNumericRegExp.hasMatch(str);
- }
- bool isAlphaNumericChineseWithSpace(String str) {
- final RegExp alphaNumericChineseWithSpaceRegExp =
- RegExp(r'^[a-zA-Z0-9\u4e00-\u9fa5\s]+$');
- return alphaNumericChineseWithSpaceRegExp.hasMatch(str);
- }
- Future<String?> _validateForm() async {
- if (state.name.isEmpty) {
- return "请填写姓名";
- }
- // else {
- // if (!isAlphaNumericChineseWithSpace(state.name) ||
- // state.name.length >= 20) {
- // return "姓名只能由中文、字母或数字组成,并且小于20个字符";
- // }
- // }
- if (state.cardNo.isEmpty) {
- return "请填写证件号";
- }
- if (state.phoneNo.isNotEmpty) {
- if (state.phoneNo.length != 11 || !isNumeric(state.phoneNo)) {
- return "请填写正确的手机号";
- }
- }
- if (state.emergencyPhone.isNotEmpty) {
- if (state.emergencyPhone.length != 11 ||
- !isNumeric(state.emergencyPhone)) {
- return "请填写正确的紧急联系手机号";
- }
- }
- if (state.cardType == CardTypeEnum.Identity) {
- bool isNotIDCard = IdCardHelper.validateIDCard(state.cardNo);
- if (!isNotIDCard) {
- return "请填写正确的证件号";
- }
- }
- if (state.cardType == CardTypeEnum.SocialInsurance) {
- if (state.cardNo.length != 18 || !isNumeric(state.cardNo)) {
- return "请填写正确的社保号";
- }
- }
- if (state.cardType == CardTypeEnum.Passport) {
- if (state.cardNo.length != 9 || !isAlphaNumeric(state.cardNo)) {
- return "请填写正确的护照号";
- }
- }
- if (state.gender == null) {
- return "请选择性别";
- }
- /// TODO 需求变更暂时删除
- // final selectedNormalCodes = crowdLabelsController.state.selectedNormalCodes;
- // if (selectedNormalCodes.length > 1) {
- // return "人群分类:一般人群、儿童、孕妇、老年人,只可选择其一!";
- // }
- // final crowdLabelCodes = crowdLabelsController.state.selectedCodes;
- // if (crowdLabelCodes.isEmpty) {
- // return "请选择人群分类";
- // }
- // if (state.gender == GenderEnum.Male &&
- // crowdLabelCodes.contains('RQFL_YF')) {
- // return "当前居民性别为“男”,人群分类不可选择孕妇!";
- // }
- return null;
- }
- /// 切换当前登记居民
- Future<void> _checkinPatient(PatientBaseDTO patient) async {
- final patientDTO = PatientDTO(
- code: patient.cardNo,
- cardNo: patient.cardNo,
- patientName: patient.patientName,
- nationality: patient.nationality,
- patientGender: patient.patientGender,
- birthday: patient.birthday,
- patientAddress: patient.patientAddress,
- );
- Store.user.currentSelectPatientInfo = patientDTO;
- logger.i(
- 'create居民 当前居民是:${patientDTO.patientName} 居民code:${patientDTO.code}');
- onIdcardInfoIsCreateRecord(patientDTO.code!);
- await Get.find<PatientListController>().gotoDetail(
- patient.cardNo!,
- );
- }
- Future<void> setGender(String cardNo) async {
- if (cardNo.isNotEmpty && cardNo.length > 17) {
- var sexNum = cardNo.substring(16, 17);
- if (sexNum.isNotEmpty && RegExp(r'^\d+$').hasMatch(sexNum)) {
- if (int.parse(sexNum) % 2 == 1) {
- state.gender = GenderEnum.Male;
- } else {
- state.gender = GenderEnum.Female;
- }
- } else {
- state.gender = GenderEnum.Unknown;
- }
- }
- }
- }
|