This commit is contained in:
BoHung Chiu 2021-10-25 18:36:12 +08:00
parent c0261a90d8
commit e98009f659
4 changed files with 11 additions and 3 deletions

View File

@ -170,8 +170,13 @@ class PropertyHiresController < ApplicationController
params = OrbitHelper.params
@property = Property.where(:uid => params[:uid]).first rescue nil
page = OrbitHelper.page rescue Page.where(:page_id => params[:page_id]).first
back_url = (page.url + (params[:slug].present? ? "/#{params[:slug]}#{property.disable_content_page ? "?method=hire" : ""}" : "") rescue "#")
{"back_url"=>back_url}
back_button_text = I18n.t("property_hire.go_to_infos_page")
back_url = (page.url + (params[:slug].present? ? "/#{params[:slug]}" : "") rescue "#")
if @property.disable_content_page
back_url += "?method=hire" if params[:slug].present?
back_button_text = I18n.t("property_hire.back_to_hire_page")
end
{"back_url"=>back_url,"back_button_text"=>back_button_text}
end
def make_booking
booking_p = booking_params

View File

@ -1,8 +1,9 @@
<%
data = action_data
back_url = data["back_url"]
back_button_text = data["back_button_text"]
%>
<h4><%=t("property_hire.the_reservation_was_successfully_sent")%></h4>
<div>
<a href="<%=back_url%>" class="btn btn-warning"><%=t("property_hire.go_to_infos_page")%></a>
<a href="<%=back_url%>" class="btn btn-warning"><%=back_button_text%></a>
</div>

View File

@ -5,6 +5,7 @@ en:
restful_actions:
fields_display_order: "Fields display order"
property_hire:
back_to_hire_page: "Back to Reserve Page"
apply_default_time_settings: Apply default time settings
default_time_settings: Default time settings
the_reservation_was_successfully_sent: "The reservation was successfully sent!Please see email to get more information"

View File

@ -5,6 +5,7 @@ zh_tw:
restful_actions:
fields_display_order: "欄位顯示順序"
property_hire:
back_to_hire_page: "回到預約頁面"
apply_default_time_settings: 套用預設時段設定
default_time_settings: 預設時段設定
the_reservation_was_successfully_sent: "預約成功送出請查看Email確認預約資訊!"