Order queue stations
This commit is contained in:
@@ -4,7 +4,7 @@ class CreateCashierTerminals < ActiveRecord::Migration[5.0]
|
||||
t.string :name, :null => false
|
||||
t.boolean :is_active, :null => false, :default => true
|
||||
t.boolean :is_currently_login, :null => false, :default => false
|
||||
t.string :auto_print_receipt, :null => false, :default => false
|
||||
t.boolean :auto_print_receipt, :null => false, :default => false
|
||||
t.string :printer_name
|
||||
t.json :header
|
||||
t.json :footer
|
||||
|
||||
@@ -18,3 +18,5 @@ rails generate scaffold_controller Setup/PaymentMethodSetting payment_method:str
|
||||
|
||||
rails generate scaffold Setup/TaxProfile name:string rate:decimal inclusive:boolean order_by:integer created_by:string --no-migration --skip-model
|
||||
rails generate scaffold_controller Setup/CashierTerminal name:string is_active:boolean is_currently_login:boolean auto_print_receipt:string printer_name:string header:json footer:json font:string font_size:string show_tax:boolean show_cashier:boolean show_guest_info:boolean --no-migration
|
||||
|
||||
rails generate scaffold_controller Settings/OrderQueueStation station_name:string is_active:boolean processing_items:json print_copy:boolean printer_name:string font_size:integer cut_per_item:boolean use_alternate_name:boolean created_by:string --no-migration
|
||||
|
||||
Reference in New Issue
Block a user