Merge branch 'adminbsb_material_ui' of bitbucket.org:code2lab/sxrestaurant
This commit is contained in:
@@ -73,8 +73,9 @@ $(function() {
|
|||||||
}
|
}
|
||||||
//end show list function
|
//end show list function
|
||||||
//click menu sidebar menu category
|
//click menu sidebar menu category
|
||||||
$(".menu_category").on("click", function(){
|
// $(".menu_category").on("click", function(){
|
||||||
var menu_id = $(this).find(".menu-id").text();
|
$(document).on('click', '.menu_category', function(event){
|
||||||
|
var menu_id = $(this).attr("data-id");
|
||||||
var url = "get_menu_category/"+menu_id;
|
var url = "get_menu_category/"+menu_id;
|
||||||
show_menu_item_list(url);
|
show_menu_item_list(url);
|
||||||
});
|
});
|
||||||
@@ -918,6 +919,47 @@ $(function() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//click menu sidebar menu category
|
||||||
|
|
||||||
|
$(".sub_click").on("click", function(){
|
||||||
|
var menu_id = $(this).attr("data-id");
|
||||||
|
var url = "get_menu_sub_category/"+menu_id;
|
||||||
|
sub_category = $(this).find('.sub_category_list');
|
||||||
|
show_sub_category_list(url,sub_category);
|
||||||
|
});
|
||||||
|
//End menu category Click
|
||||||
|
|
||||||
|
//show menu item list when click menu category
|
||||||
|
function show_sub_category_list(url,sub_category){
|
||||||
|
|
||||||
|
var menu_list = $('.sub_category_list');
|
||||||
|
menu_list.empty();
|
||||||
|
//Start Ajax
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
url: url,
|
||||||
|
data: {},
|
||||||
|
dataType: "json",
|
||||||
|
success: function(data) {
|
||||||
|
var sub_category_list = $('.sub_category_list');
|
||||||
|
sub_category_list.empty();
|
||||||
|
data = data.sub_category;
|
||||||
|
|
||||||
|
if (data.length>0) {
|
||||||
|
$(sub_category).removeClass('hidden');
|
||||||
|
for(var i in data) {
|
||||||
|
|
||||||
|
row = '<li class="menu_category" data-id="'+data[i].id+'">'
|
||||||
|
+'<a class="nav-link" data-toggle="tab" href="" role="tab">'+ data[i].name+'</a>'
|
||||||
|
+'</li>' ;
|
||||||
|
$(sub_category).append(row);
|
||||||
|
//end is_sub_item false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
//end Ajax
|
||||||
|
}
|
||||||
/* $("input").keypress(function(){
|
/* $("input").keypress(function(){
|
||||||
$("span").text(i += 1);
|
$("span").text(i += 1);
|
||||||
});*/
|
});*/
|
||||||
|
|||||||
@@ -69,7 +69,17 @@ section .content{
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-color: #fff #fff #fff #54A5AF;
|
border-color: #fff #fff #fff #54A5AF;
|
||||||
}
|
}
|
||||||
|
.sub_category_list{
|
||||||
|
background:#fff;
|
||||||
|
margin-top:8px;
|
||||||
|
}
|
||||||
|
.sub_category_list > li{
|
||||||
|
list-style:none;
|
||||||
|
margin-left:-40px;
|
||||||
|
}
|
||||||
|
.sub_category_list > li > a.nav-link{
|
||||||
|
border-bottom:1px solid #eee;
|
||||||
|
}
|
||||||
.custom-modal-dialog {
|
.custom-modal-dialog {
|
||||||
left:auto;
|
left:auto;
|
||||||
right: auto;
|
right: auto;
|
||||||
|
|||||||
@@ -180,6 +180,7 @@ class Origami::DiscountsController < BaseOrigamiController
|
|||||||
end
|
end
|
||||||
|
|
||||||
generic_customer_id = sale.customer.membership_id
|
generic_customer_id = sale.customer.membership_id
|
||||||
|
account_no = sale.customer.paypar_account_no
|
||||||
receipt_no = sale.receipt_no
|
receipt_no = sale.receipt_no
|
||||||
membership = MembershipSetting.find_by_membership_type("paypar_url")
|
membership = MembershipSetting.find_by_membership_type("paypar_url")
|
||||||
memberaction = MembershipAction.find_by_membership_type("member_discount")
|
memberaction = MembershipAction.find_by_membership_type("member_discount")
|
||||||
|
|||||||
@@ -91,8 +91,9 @@ class Origami::PaymentsController < BaseOrigamiController
|
|||||||
if customer.membership_id != nil && rebate
|
if customer.membership_id != nil && rebate
|
||||||
member_info = Customer.get_member_account(customer)
|
member_info = Customer.get_member_account(customer)
|
||||||
rebate_amount = Customer.get_membership_transactions(customer,saleObj.receipt_no)
|
rebate_amount = Customer.get_membership_transactions(customer,saleObj.receipt_no)
|
||||||
|
current_balance = SaleAudit.paymal_search(sale_id)
|
||||||
end
|
end
|
||||||
|
|
||||||
# get printer info
|
# get printer info
|
||||||
print_settings=PrintSetting.find_by_unique_code(unique_code)
|
print_settings=PrintSetting.find_by_unique_code(unique_code)
|
||||||
# Calculate Food and Beverage Total
|
# Calculate Food and Beverage Total
|
||||||
@@ -100,7 +101,7 @@ class Origami::PaymentsController < BaseOrigamiController
|
|||||||
discount_price_by_accounts = SaleItem.get_discount_price_by_accounts(saleObj.sale_items)
|
discount_price_by_accounts = SaleItem.get_discount_price_by_accounts(saleObj.sale_items)
|
||||||
|
|
||||||
printer = Printer::ReceiptPrinter.new(print_settings)
|
printer = Printer::ReceiptPrinter.new(print_settings)
|
||||||
printer.print_receipt_bill(print_settings,cashier_terminal,saleObj.sale_items,saleObj,customer.name, item_price_by_accounts, discount_price_by_accounts, member_info,rebate_amount,shop_details, "Paid")
|
printer.print_receipt_bill(print_settings,cashier_terminal,saleObj.sale_items,saleObj,customer.name, item_price_by_accounts, discount_price_by_accounts, member_info,rebate_amount,shop_details, "Paid",current_balance)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -212,6 +213,7 @@ class Origami::PaymentsController < BaseOrigamiController
|
|||||||
if customer.membership_id != nil && rebate
|
if customer.membership_id != nil && rebate
|
||||||
member_info = Customer.get_member_account(customer)
|
member_info = Customer.get_member_account(customer)
|
||||||
rebate_amount = Customer.get_membership_transactions(customer,saleObj.receipt_no)
|
rebate_amount = Customer.get_membership_transactions(customer,saleObj.receipt_no)
|
||||||
|
current_balance = SaleAudit.paymal_search(sale_id)
|
||||||
end
|
end
|
||||||
# get printer info
|
# get printer info
|
||||||
print_settings=PrintSetting.find_by_unique_code(unique_code)
|
print_settings=PrintSetting.find_by_unique_code(unique_code)
|
||||||
@@ -221,7 +223,7 @@ class Origami::PaymentsController < BaseOrigamiController
|
|||||||
discount_price_by_accounts = SaleItem.get_discount_price_by_accounts(saleObj.sale_items)
|
discount_price_by_accounts = SaleItem.get_discount_price_by_accounts(saleObj.sale_items)
|
||||||
|
|
||||||
printer = Printer::ReceiptPrinter.new(print_settings)
|
printer = Printer::ReceiptPrinter.new(print_settings)
|
||||||
printer.print_receipt_bill(print_settings,cashier_terminal,saleObj.sale_items,saleObj,customer.name, item_price_by_accounts, discount_price_by_accounts, member_info,rebate_amount,shop_details, "Re-print")
|
printer.print_receipt_bill(print_settings,cashier_terminal,saleObj.sale_items,saleObj,customer.name, item_price_by_accounts, discount_price_by_accounts, member_info,rebate_amount,shop_details, "Re-print",current_balance)
|
||||||
end
|
end
|
||||||
|
|
||||||
def foc
|
def foc
|
||||||
@@ -230,6 +232,7 @@ class Origami::PaymentsController < BaseOrigamiController
|
|||||||
sub_total = params[:sub_total]
|
sub_total = params[:sub_total]
|
||||||
member_info = nil
|
member_info = nil
|
||||||
rebate_amount = nil
|
rebate_amount = nil
|
||||||
|
current_balance = nil
|
||||||
|
|
||||||
if(Sale.exists?(sale_id))
|
if(Sale.exists?(sale_id))
|
||||||
saleObj = Sale.find(sale_id)
|
saleObj = Sale.find(sale_id)
|
||||||
|
|||||||
@@ -65,12 +65,12 @@ class Printer::ReceiptPrinter < Printer::PrinterWorker
|
|||||||
end
|
end
|
||||||
|
|
||||||
#Bill Receipt Print
|
#Bill Receipt Print
|
||||||
def print_receipt_bill(printer_settings,cashier_terminal,sale_items,sale_data, customer_name, item_price_by_accounts, discount_price_by_accounts, member_info = nil,rebate_amount=nil,shop_details, printed_status)
|
def print_receipt_bill(printer_settings,cashier_terminal,sale_items,sale_data, customer_name, item_price_by_accounts, discount_price_by_accounts, member_info = nil,rebate_amount=nil,shop_details, printed_status,balance)
|
||||||
#Use CUPS service
|
#Use CUPS service
|
||||||
#Generate PDF
|
#Generate PDF
|
||||||
#Print
|
#Print
|
||||||
|
|
||||||
pdf = ReceiptBillPdf.new(printer_settings, sale_items, sale_data, customer_name, item_price_by_accounts, discount_price_by_accounts, member_info,rebate_amount,shop_details,printed_status)
|
pdf = ReceiptBillPdf.new(printer_settings, sale_items, sale_data, customer_name, item_price_by_accounts, discount_price_by_accounts, member_info,rebate_amount,shop_details,printed_status,balance)
|
||||||
|
|
||||||
# print as print copies in printer setting
|
# print as print copies in printer setting
|
||||||
count = printer_settings.print_copies
|
count = printer_settings.print_copies
|
||||||
|
|||||||
@@ -89,6 +89,25 @@ class SaleAudit < ApplicationRecord
|
|||||||
sale_audit.save!
|
sale_audit.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def self.paymal_search(sale_id)
|
||||||
|
paymal = SaleAudit.where("sale_id =? and action = 'PAYMAL'",sale_id)
|
||||||
|
remark = paymal[0].remark.split("}")
|
||||||
|
response = "["+remark[0]+'}]'
|
||||||
|
response = JSON.parse(response)
|
||||||
|
puts response
|
||||||
|
if response[0]["status"] == true
|
||||||
|
if response[0]["current_rebate_amount"].present?
|
||||||
|
amount = response[0]["current_rebate_amount"]
|
||||||
|
else
|
||||||
|
amount = response[0]["current_balance_amount"]
|
||||||
|
end
|
||||||
|
else
|
||||||
|
amount = nil
|
||||||
|
end
|
||||||
|
return amount
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
def generate_custom_id
|
def generate_custom_id
|
||||||
self.sale_audit_id = SeedGenerator.generate_id(self.class.name, "SAI")
|
self.sale_audit_id = SeedGenerator.generate_id(self.class.name, "SAI")
|
||||||
|
|||||||
@@ -327,7 +327,7 @@ class SalePayment < ApplicationRecord
|
|||||||
response = rebat(sObj)
|
response = rebat(sObj)
|
||||||
|
|
||||||
#record an payment in sale-audit
|
#record an payment in sale-audit
|
||||||
remark = "#{response} Redeem- for Customer #{self.sale.customer_id} | Sale Id [#{self.sale.sale_id}]| pay amount -> #{self.received_amount} "
|
remark = "#{response} Rebate- for Customer #{self.sale.customer_id} | Sale Id [#{self.sale.sale_id}]| pay amount -> #{self.received_amount} "
|
||||||
sale_audit = SaleAudit.record_paymal(self.sale.sale_id, remark, "Cashier")
|
sale_audit = SaleAudit.record_paymal(self.sale.sale_id, remark, "Cashier")
|
||||||
|
|
||||||
if !response.nil?
|
if !response.nil?
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
class ReceiptBillPdf < Prawn::Document
|
class ReceiptBillPdf < Prawn::Document
|
||||||
include ActionView::Helpers::NumberHelper
|
include ActionView::Helpers::NumberHelper
|
||||||
attr_accessor :label_width,:price_column_width,:page_width, :page_height, :margin, :price_width, :item_width, :header_font_size, :item_font_size,:item_height,:qty_width,:total_width,:item_description_width, :description_width, :price_num_width
|
attr_accessor :label_width,:price_column_width,:page_width, :page_height, :margin, :price_width, :item_width, :header_font_size, :item_font_size,:item_height,:qty_width,:total_width,:item_description_width, :description_width, :price_num_width
|
||||||
def initialize(printer_settings, sale_items, sale_data, customer_name, item_price_by_accounts, discount_price_by_accounts, member_info = nil,rebate_amount = nil,shop_details, printed_status)
|
def initialize(printer_settings, sale_items, sale_data, customer_name, item_price_by_accounts, discount_price_by_accounts, member_info = nil,rebate_amount = nil,shop_details, printed_status,current_balance)
|
||||||
self.page_width = printer_settings.page_width
|
self.page_width = printer_settings.page_width
|
||||||
self.page_height = printer_settings.page_height
|
self.page_height = printer_settings.page_height
|
||||||
self.margin = 5
|
self.margin = 5
|
||||||
@@ -55,7 +55,7 @@ class ReceiptBillPdf < Prawn::Document
|
|||||||
|
|
||||||
|
|
||||||
if member_info != nil
|
if member_info != nil
|
||||||
member_info(member_info,customer_name,rebate_amount,sale_data,printer_settings.precision,delimiter)
|
member_info(member_info,customer_name,rebate_amount,sale_data,printer_settings.precision,delimiter,current_balance)
|
||||||
end
|
end
|
||||||
|
|
||||||
customer(customer_name)
|
customer(customer_name)
|
||||||
@@ -286,7 +286,7 @@ class ReceiptBillPdf < Prawn::Document
|
|||||||
end
|
end
|
||||||
|
|
||||||
# show member information
|
# show member information
|
||||||
def member_info(member_info,customer_name,rebate_amount,sale_data,precision,delimiter)
|
def member_info(member_info,customer_name,rebate_amount,sale_data,precision,delimiter,current_balance)
|
||||||
if rebate_amount != nil
|
if rebate_amount != nil
|
||||||
if rebate_amount["status"] == true
|
if rebate_amount["status"] == true
|
||||||
stroke_horizontal_rule
|
stroke_horizontal_rule
|
||||||
@@ -342,22 +342,15 @@ class ReceiptBillPdf < Prawn::Document
|
|||||||
text "#{number_with_precision(redeem, :precision => precision.to_i, :delimiter => delimiter)}", :size => self.item_font_size,:align => :right
|
text "#{number_with_precision(redeem, :precision => precision.to_i, :delimiter => delimiter)}", :size => self.item_font_size,:align => :right
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if current_balance != nil
|
||||||
if redeem == 0
|
move_down 5
|
||||||
old = total - rebate_balance
|
|
||||||
else
|
|
||||||
# if redeem_count == 0
|
|
||||||
old = balance + redeem
|
|
||||||
# end
|
|
||||||
end
|
|
||||||
|
|
||||||
move_down 5
|
|
||||||
y_position = cursor
|
y_position = cursor
|
||||||
bounding_box([0,y_position], :width =>self.item_description_width, :height => self.item_height) do
|
bounding_box([0,y_position], :width =>self.item_description_width, :height => self.item_height) do
|
||||||
text "Old Balance", :size => self.item_font_size,:align => :left
|
text "Old Balance", :size => self.item_font_size,:align => :left
|
||||||
end
|
end
|
||||||
bounding_box([self.item_description_width,y_position], :width =>self.label_width) do
|
bounding_box([self.item_description_width,y_position], :width =>self.label_width) do
|
||||||
text "#{number_with_precision(old, :precision => precision.to_i, :delimiter => delimiter)}", :size => self.item_font_size,:align => :right
|
text "#{number_with_precision(current_balance, :precision => precision.to_i, :delimiter => delimiter)}", :size => self.item_font_size,:align => :right
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
@@ -371,7 +364,6 @@ class ReceiptBillPdf < Prawn::Document
|
|||||||
total_balance = total_balance + res["balance"]
|
total_balance = total_balance + res["balance"]
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
move_down 5
|
move_down 5
|
||||||
y_position = cursor
|
y_position = cursor
|
||||||
|
|||||||
@@ -9,20 +9,15 @@
|
|||||||
<ul class="nav nav-tabs flex-column" role="tablist" >
|
<ul class="nav nav-tabs flex-column" role="tablist" >
|
||||||
<% @menu.each do |menu| %>
|
<% @menu.each do |menu| %>
|
||||||
<% if menu.menu_category_id.nil?%>
|
<% if menu.menu_category_id.nil?%>
|
||||||
<li class="nav-item menu_category">
|
<li class="nav-item menu_category sub_click" data-id="<%=menu.id%>">
|
||||||
<p class="hidden menu-id"><%= menu.id %></p>
|
<p class="hidden menu-id"><%= menu.id %></p>
|
||||||
<a class="nav-link" data-toggle="tab" href="" role="tab"> <%= menu.name%></a>
|
<a class="nav-link" data-toggle="tab" href="" role="tab"> <%= menu.name%>
|
||||||
|
<ul class=" sub_category_list hidden" id="sub_category_list">
|
||||||
|
</ul>
|
||||||
|
</a>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<% end%>
|
<% end%>
|
||||||
<!-- Sub-Category -->
|
|
||||||
<% if !menu.menu_category_id.nil? %>
|
|
||||||
<ul class="collapse" id="<%= menu.menu_category_id %>">
|
|
||||||
<li>
|
|
||||||
<p class="hidden menu-id"><%= menu.id %></p>
|
|
||||||
<a class="nav-link" data-toggle="tab" role="tab"> <%= menu.name%></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<% end%>
|
|
||||||
<%end %>
|
<%end %>
|
||||||
<!-- <li class="nav-item menu_category">
|
<!-- <li class="nav-item menu_category">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Menu 1 <b class="caret"></b></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Menu 1 <b class="caret"></b></a>
|
||||||
|
|||||||
Reference in New Issue
Block a user