implemented services price list page, Update to stores 19.6

master
haroon amjad 10 hours ago
parent f71353ebb8
commit 466bb22654

@ -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.5;
var VERSION_ID = 19.6;
var SETUP_ID = '91877';
var LANGUAGE = 2;
// var PATIENT_OUT_SA = 0;

@ -51,7 +51,7 @@ class ServicesPriceList extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"Service Name",
TranslationBase.of(context).serviceName,
style: TextStyle(
color: CustomColors.textDarkColor,
fontSize: 16,
@ -60,7 +60,7 @@ class ServicesPriceList extends StatelessWidget {
),
),
Text(
"Prices",
TranslationBase.of(context).price,
style: TextStyle(
color: CustomColors.textDarkColor,
fontSize: 16,
@ -337,13 +337,16 @@ class ServicesPriceList extends StatelessWidget {
decoration: cardRadius(10),
child: Row(
children: [
Text(
TranslationBase.of(context).servicePriceListRights,
style: TextStyle(
color: CustomColors.textColor,
fontSize: 12,
fontWeight: FontWeight.w500,
letterSpacing: -0.64,
Expanded(
child: Text(
TranslationBase.of(context).servicePriceListRights,
maxLines: 2,
style: TextStyle(
color: CustomColors.textColor,
fontSize: 12,
fontWeight: FontWeight.w500,
letterSpacing: -0.64,
),
),
),
],

@ -12,13 +12,13 @@ class PenguinMethodChannel {
try {
await _channel.invokeMethod('launchPenguin', {
"storyboardName": storyboardName,
// "baseURL": "https://prod.hmg.nav.penguinin.com",
// "dataURL": "https://prod.hmg.nav.penguinin.com",
// "positionURL": "https://prod.hmg.nav.penguinin.com",
"baseURL": "https://prod.hmg.nav.penguinin.com",
"dataURL": "https://prod.hmg.nav.penguinin.com",
"positionURL": "https://prod.hmg.nav.penguinin.com",
"baseURL": "https://penguinuat.hmg.com",
"dataURL": "https://penguinuat.hmg.com",
"positionURL": "https://penguinuat.hmg.com",
// "baseURL": "https://penguinuat.hmg.com",
// "dataURL": "https://penguinuat.hmg.com",
// "positionURL": "https://penguinuat.hmg.com",
"dataServiceName": "api",
"positionServiceName": "pe",
"clientID": "HMG",

@ -88,27 +88,28 @@ class Utils {
"MainProjectID": 130,
"ProjectOutSA": false,
"UsingInDoctorApp": false
},{
"Desciption": "Jeddah Fayhaa Hospital",
"DesciptionN": "مستشفى جدة الفيحاء",
"ID": 3, // Campus ID
"LegalName": "Jeddah Fayhaa Hospital",
"LegalNameN": "مستشفى جدة الفيحاء",
"Name": "Jeddah Fayhaa Hospital",
"NameN": "مستشفى جدة الفيحاء",
"PhoneNumber": "+966115222222",
"SetupID": "013311",
"DistanceInKilometers": 0,
"HasVida3": false,
"IsActive": true,
"IsHmg": true,
"IsVidaPlus": false,
"Latitude": "24.8113774",
"Longitude": "46.6239813",
"MainProjectID": 130,
"ProjectOutSA": false,
"UsingInDoctorApp": false
}
},
// {
// "Desciption": "Jeddah Fayhaa Hospital",
// "DesciptionN": "مستشفى جدة الفيحاء",
// "ID": 3, // Campus ID
// "LegalName": "Jeddah Fayhaa Hospital",
// "LegalNameN": "مستشفى جدة الفيحاء",
// "Name": "Jeddah Fayhaa Hospital",
// "NameN": "مستشفى جدة الفيحاء",
// "PhoneNumber": "+966115222222",
// "SetupID": "013311",
// "DistanceInKilometers": 0,
// "HasVida3": false,
// "IsActive": true,
// "IsHmg": true,
// "IsVidaPlus": false,
// "Latitude": "24.8113774",
// "Longitude": "46.6239813",
// "MainProjectID": 130,
// "ProjectOutSA": false,
// "UsingInDoctorApp": false
// }
];
///show custom Error Toast

@ -471,6 +471,7 @@ class _AppDrawerState extends State<AppDrawer> {
InkWell(
child: DrawerItem(TranslationBase.of(context).servicePriceList, Icons.bookmark_added_sharp, letterSpacing: -0.84, fontSize: 14, bottomLine: false),
onTap: () {
Navigator.pop(context);
Navigator.of(context).push(FadePage(page: ServicesPriceList()));
},
),

Loading…
Cancel
Save