-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1303 from shreesh-webkul/patch-service-price
Fixed: incorrect service price calculation when multiple hotels are added in cart
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1046,7 +1046,7 @@ public function insertDefaultHotelEntries() | |
|
||
Configuration::updateValue( | ||
'WK_HOTEL_GLOBAL_ADDRESS', | ||
'The Hotel Prime, Monticello Dr, Montgomery, AL 36117, USA' | ||
'The Hotel Prime, Monticello Dr, Montgomery, 10010' | ||
); | ||
Configuration::updateValue('WK_HOTEL_GLOBAL_CONTACT_NUMBER', '0987654321'); | ||
Configuration::updateValue('WK_HOTEL_GLOBAL_CONTACT_EMAIL', '[email protected]'); | ||
|
@@ -1612,7 +1612,7 @@ public function saveDummyHotelBranchInfo() | |
$objAddress->id_state = $state_id; | ||
$objAddress->id_country = $def_cont_id; | ||
$objAddress->postcode = Tools::generateRandomZipcode($def_cont_id); | ||
$objAddress->address1 = 'Monticello Dr, Montgomery, AL 36117, USA'; | ||
$objAddress->address1 = 'Monticello Dr, Montgomery, 10010'; | ||
$objAddress->alias = 'The Hotel Prime'; | ||
$objAddress->lastname = 'The Hotel Prime'; | ||
$objAddress->firstname = 'The Hotel Prime'; | ||
|