Update to stores VersionID 19.4

login_other_country
haroon amjad 4 months ago
parent 696432a028
commit 13cf05819e

@ -53,7 +53,7 @@ var PHARMACY_REDIRECT_URL = 'https://bit.ly/AlhabibPharmacy';
// RC API URL // RC API URL
var RC_BASE_URL = 'https://rc.hmg.com/'; 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/'; // 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 CHANNEL = 3;
var GENERAL_ID = 'Cs2020@2016\$2958'; var GENERAL_ID = 'Cs2020@2016\$2958';
var IP_ADDRESS = '10.20.10.20'; var IP_ADDRESS = '10.20.10.20';
var VERSION_ID = 19.3; var VERSION_ID = 19.4;
var SETUP_ID = '91877'; var SETUP_ID = '91877';
var LANGUAGE = 2; var LANGUAGE = 2;
// var PATIENT_OUT_SA = 0; // var PATIENT_OUT_SA = 0;

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

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

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

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

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

Loading…
Cancel
Save