Hotel Raxa - Advanced Booking System Implementation
🏨 Hotel Booking Enhancements: - Implemented Eagle Booking Advanced Pricing add-on - Added Booking.com-style rate management system - Created professional calendar interface for pricing - Integrated deals and discounts functionality 💰 Advanced Pricing Features: - Dynamic pricing models (per room, per person, per adult) - Base rates, adult rates, and child rates management - Length of stay discounts and early bird deals - Mobile rates and secret deals implementation - Seasonal promotions and flash sales 📅 Availability Management: - Real-time availability tracking - Stop sell and restriction controls - Closed to arrival/departure functionality - Minimum/maximum stay requirements - Automatic sold-out management 💳 Payment Integration: - Maintained Redsys payment gateway integration - Seamless integration with existing Eagle Booking - No modifications to core Eagle Booking plugin 🛠️ Technical Implementation: - Custom database tables for advanced pricing - WordPress hooks and filters integration - AJAX-powered admin interface - Data migration from existing Eagle Booking - Professional calendar view for revenue management 📊 Admin Interface: - Booking.com-style management dashboard - Visual rate and availability calendar - Bulk operations for date ranges - Statistics and analytics dashboard - Modal dialogs for quick editing 🔧 Code Quality: - WordPress coding standards compliance - Secure database operations with prepared statements - Proper input validation and sanitization - Error handling and logging - Responsive admin interface 🤖 Generated with Claude Code (https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,247 @@
|
||||
<?php
|
||||
|
||||
/* --------------------------------------------------------------------------
|
||||
* Insert booking into the db
|
||||
* @since 1.0.0
|
||||
* modified 1.3.3
|
||||
---------------------------------------------------------------------------*/
|
||||
function eb_insert_booking_into_db(
|
||||
|
||||
$eb_room_id,
|
||||
$eb_room_title,
|
||||
$eb_date,
|
||||
$eb_checkin,
|
||||
$eb_checkout,
|
||||
$eb_guests,
|
||||
$eb_adults,
|
||||
$eb_children,
|
||||
$eb_room_price,
|
||||
$eb_final_trip_price,
|
||||
$eb_deposit_amount,
|
||||
$eb_extra_services,
|
||||
$eb_user_id,
|
||||
$eb_user_first_name,
|
||||
$eb_user_last_name,
|
||||
$eb_user_email,
|
||||
$eb_user_ip,
|
||||
$eb_user_phone,
|
||||
$eb_user_address,
|
||||
$eb_user_city,
|
||||
$eb_user_country,
|
||||
$eb_user_message,
|
||||
$eb_user_arrival,
|
||||
$eb_user_coupon,
|
||||
$eb_payment_status,
|
||||
$eb_payment_currency,
|
||||
$eb_transaction_id,
|
||||
$eb_action_type,
|
||||
$eb_source
|
||||
|
||||
) {
|
||||
|
||||
global $wpdb;
|
||||
|
||||
// Tables
|
||||
$eb_main_table = $wpdb->prefix . 'eagle_booking';
|
||||
$eb_meta_table = $wpdb->prefix . 'eagle_booking_meta';
|
||||
|
||||
/**
|
||||
* Insert Booking Details into the Eagle Booking Main Table
|
||||
*/
|
||||
$eb_insert_booking_into_db = $wpdb->insert(
|
||||
|
||||
$eb_main_table,
|
||||
|
||||
array(
|
||||
'id_post' => $eb_room_id,
|
||||
'title_post' => $eb_room_title,
|
||||
'date' => $eb_date,
|
||||
'date_from' => $eb_checkin,
|
||||
'date_to' => $eb_checkout,
|
||||
'guests' => $eb_guests,
|
||||
'adults' => $eb_adults,
|
||||
'children' => $eb_children,
|
||||
'final_trip_price' => $eb_final_trip_price,
|
||||
'deposit_amount' => $eb_deposit_amount,
|
||||
'extra_services' => $eb_extra_services,
|
||||
'id_user' => $eb_user_id,
|
||||
'user_first_name' => $eb_user_first_name,
|
||||
'user_last_name' => $eb_user_last_name,
|
||||
'paypal_email' => $eb_user_email,
|
||||
'user_ip' => $eb_user_ip,
|
||||
'user_phone' => $eb_user_phone,
|
||||
'user_address' => $eb_user_address,
|
||||
'user_city' => $eb_user_city,
|
||||
'user_country' => $eb_user_country,
|
||||
'user_message' => $eb_user_message,
|
||||
'user_arrival' => $eb_user_arrival,
|
||||
'user_coupon' => $eb_user_coupon,
|
||||
'paypal_payment_status' => $eb_payment_status,
|
||||
'paypal_currency' => $eb_payment_currency,
|
||||
'paypal_tx' => $eb_transaction_id,
|
||||
'action_type' => $eb_action_type,
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
global $eb_booking_id;
|
||||
|
||||
/**
|
||||
* Insert Booking Details into the Eagle Booking Meta Table
|
||||
*/
|
||||
$eb_booking_id = $wpdb->insert_id;
|
||||
$eb_taxes = eb_room_taxes( $eb_room_id );
|
||||
$eb_fees = eb_room_fees( $eb_room_id );
|
||||
|
||||
// Insert Room Taxes
|
||||
if ( $eb_taxes ) foreach( $eb_taxes as $key => $tax ) {
|
||||
|
||||
$entry_id = $tax;
|
||||
|
||||
$eb_insert_booking_into_db = $wpdb->insert(
|
||||
|
||||
$eb_meta_table,
|
||||
array(
|
||||
'booking_id' => $eb_booking_id,
|
||||
'meta_key' => 'tax',
|
||||
'meta_value' => $entry_id,
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
// Insert Room Fees into the Eagle Booking Meta Table
|
||||
if ( $eb_fees ) foreach( $eb_fees as $key => $fee ) {
|
||||
|
||||
$entry_id = $fee[0];
|
||||
|
||||
$eb_insert_booking_into_db = $wpdb->insert(
|
||||
|
||||
$eb_meta_table,
|
||||
array(
|
||||
'booking_id' => $eb_booking_id,
|
||||
'meta_key' => 'fee',
|
||||
'meta_value' => $entry_id,
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
// Insert Room Price Without Taxes/Fees into the Eagle Booking Meta Table
|
||||
if ( $eb_room_price ) {
|
||||
|
||||
$eb_insert_booking_into_db = $wpdb->insert(
|
||||
|
||||
$eb_meta_table,
|
||||
array(
|
||||
'booking_id' => $eb_booking_id,
|
||||
'meta_key' => 'room_price',
|
||||
'meta_value' => $eb_room_price,
|
||||
)
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
// Insert Booking Source into the Eagle Booking Meta Table [1.3.3.8.2]
|
||||
if ( $eb_source ) {
|
||||
|
||||
$eb_insert_booking_into_db = $wpdb->insert(
|
||||
|
||||
$eb_meta_table,
|
||||
array(
|
||||
'booking_id' => $eb_booking_id,
|
||||
'meta_key' => 'booking_source',
|
||||
'meta_value' => $eb_source,
|
||||
)
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
// Add booking into DB
|
||||
if ($eb_insert_booking_into_db) {
|
||||
do_action(
|
||||
'eb_insert_booking_in_db',
|
||||
$eb_room_id,
|
||||
$eb_room_title,
|
||||
$eb_date,
|
||||
$eb_checkin,
|
||||
$eb_checkout,
|
||||
$eb_guests,
|
||||
$eb_adults,
|
||||
$eb_children,
|
||||
$eb_final_trip_price,
|
||||
$eb_deposit_amount,
|
||||
$eb_extra_services,
|
||||
$eb_user_id,
|
||||
$eb_user_first_name,
|
||||
$eb_user_last_name,
|
||||
$eb_user_email,
|
||||
$eb_user_ip,
|
||||
$eb_user_phone,
|
||||
$eb_user_address,
|
||||
$eb_user_city,
|
||||
$eb_user_country,
|
||||
$eb_user_message,
|
||||
$eb_user_arrival,
|
||||
$eb_user_coupon,
|
||||
$eb_payment_status,
|
||||
$eb_payment_currency,
|
||||
$eb_transaction_id,
|
||||
$eb_action_type
|
||||
);
|
||||
|
||||
return 1;
|
||||
|
||||
|
||||
// $postarr['ID'] = $post->$eb_room_id;
|
||||
// $postarr['post_modified'] = $post->post_modified;
|
||||
|
||||
// // update default post
|
||||
// wp_update_post($postarr);
|
||||
|
||||
// $data = array();
|
||||
|
||||
// $post = array(
|
||||
// 'ID' => $eb_room_id,
|
||||
// 'post_status' => 'publish',
|
||||
// 'edit_date' => true // what is edit_date?
|
||||
// );
|
||||
|
||||
// $result = wp_update_post( $post, true );
|
||||
// if ( $result && ! is_wp_error( $result ) ) {
|
||||
// $data[] = $post_id;
|
||||
// }
|
||||
|
||||
|
||||
|
||||
} else {
|
||||
|
||||
// Add a debug option in the plugin settings
|
||||
|
||||
// // Debug
|
||||
// $wpdb->print_error();
|
||||
// $wpdb->show_errors();
|
||||
//
|
||||
//
|
||||
|
||||
// echo $wpdb->last_query;
|
||||
// echo $wpdb->last_error;
|
||||
|
||||
// foreach ( $wpdb->get_col( "DESC " . $eb_main_table, 0 ) as $column_name ) {
|
||||
// echo $column_name;
|
||||
// echo "<br/>";
|
||||
// }
|
||||
|
||||
// if($wpdb->get_var("SHOW TABLES LIKE '$eb_main_table'") != $eb_main_table) {
|
||||
// echo "Table Doesn't Exist";
|
||||
// }
|
||||
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user