Update to stores VersionID 19.4

master
haroon amjad 5 days ago
parent 696432a028
commit 13cf05819e

@ -53,7 +53,7 @@ var PHARMACY_REDIRECT_URL = 'https://bit.ly/AlhabibPharmacy';
// RC API URL
var RC_BASE_URL = 'https://rc.hmg.com/';
// var RC_BASE_URL = 'https://rc.hmg.com/test/';
// var RC_BASE_URL = 'https://rc.hmg.com/uat/';
// var RC_BASE_URL = 'https://ms.hmg.com/rc/';
@ -357,7 +357,7 @@ var CAN_PAY_FOR_FOR_WALKIN_APPOINTMENT = 'Services/Doctors.svc/REST/CanPayForWal
var CHANNEL = 3;
var GENERAL_ID = 'Cs2020@2016\$2958';
var IP_ADDRESS = '10.20.10.20';
var VERSION_ID = 19.3;
var VERSION_ID = 19.4;
var SETUP_ID = '91877';
var LANGUAGE = 2;
// var PATIENT_OUT_SA = 0;

@ -187,7 +187,7 @@ class BaseAppClient {
// body['IdentificationNo'] = 1023854217;
// body['MobileNo'] = "531940021"; //0560717232
// body['PatientID'] = 1231755; //4609100
// body['PatientID'] = 4772161; //4609100
// body['TokenID'] = "@dm!n";
// Patient ID: 3027574
@ -572,7 +572,8 @@ class BaseAppClient {
} else {
var bodyUtf = json.decode(utf8.decode(response.bodyBytes));
// print(bodyUtf);
onFailure!(bodyUtf['error']['ErrorEndUserMsg'], statusCode);
// onFailure!(bodyUtf['error']['ErrorEndUserMsg'], statusCode);
onFailure!(bodyUtf['error'], statusCode);
logApiEndpointError(endPoint, bodyUtf['error']['ErrorEndUserMsg'], statusCode);
}
} else {

@ -112,7 +112,7 @@ class _PrescriptionDeliveryAddressPageState extends State<PrescriptionDeliveryAd
Widget build(BuildContext context) {
projectViewModel = Provider.of(context);
return BaseView<PrescriptionDeliveryViewModel>(
onModelReady: (model) => model.getCustomerInfo(),
// onModelReady: (model) => model.getCustomerInfo(),
builder: (_, model, w) => AppScaffold(
isShowAppBar: true,
appBarTitle: TranslationBase.of(context).shippingAddresss,

@ -69,6 +69,7 @@ class LocationUtils {
getCurrentLocation(callBack: callBack);
} else {
setZeroLocation();
if (callBack != null) callBack(LatLng(0.0, 0.0));
if (isShowConfirmDialog) showErrorLocationDialog(false, failureCallBack: () {});
}
}

@ -355,7 +355,7 @@ class ItemResultCardWidgetWithParams extends StatelessWidget {
borderRadius: const BorderRadius.all(Radius.circular(10)),
border: BorderDirectional(
start: BorderSide(
color: getColorForResultType(type),
color: shouldShowResultBarAndGraph ? getColorForResultType(type) : Colors.grey.shade700,
width: MediaQuery.of(context).size.width * 0.015,
),
),
@ -402,7 +402,7 @@ class ItemResultCardWidgetWithParams extends StatelessWidget {
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
ResultStatusWidget(type: type),
shouldShowResultBarAndGraph ? ResultStatusWidget(type: type) : SizedBox.shrink(),
SizedBox(width: 5),
Column(
crossAxisAlignment: CrossAxisAlignment.start,

@ -1,8 +1,8 @@
name: hmg_patient_app
description: A new Flutter application.
version: 4.6.019+1
#version: 4.6.0978+40500978
#version: 4.6.019+1
version: 4.6.0979+40500979
environment:
# sdk: ">=3.0.0 <3.13.0"

Loading…
Cancel
Save