order queue and print station
This commit is contained in:
4
app/models/cashier_login_log.rb
Normal file
4
app/models/cashier_login_log.rb
Normal file
@@ -0,0 +1,4 @@
|
||||
class CashierLoginLog < ApplicationRecord
|
||||
belongs_to :cashier_station
|
||||
belongs_to :employee
|
||||
end
|
||||
2
app/models/cashier_terminal.rb
Normal file
2
app/models/cashier_terminal.rb
Normal file
@@ -0,0 +1,2 @@
|
||||
class CashierTerminal < ApplicationRecord
|
||||
end
|
||||
2
app/models/employee.rb
Normal file
2
app/models/employee.rb
Normal file
@@ -0,0 +1,2 @@
|
||||
class Employee < ApplicationRecord
|
||||
end
|
||||
3
app/models/order_queue_process_by_zone.rb
Normal file
3
app/models/order_queue_process_by_zone.rb
Normal file
@@ -0,0 +1,3 @@
|
||||
class OrderQueueProcessByZone < ApplicationRecord
|
||||
belongs_to :zone
|
||||
end
|
||||
3
app/models/order_queue_process_log.rb
Normal file
3
app/models/order_queue_process_log.rb
Normal file
@@ -0,0 +1,3 @@
|
||||
class OrderQueueProcessLog < ApplicationRecord
|
||||
belongs_to :order
|
||||
end
|
||||
2
app/models/order_queue_station.rb
Normal file
2
app/models/order_queue_station.rb
Normal file
@@ -0,0 +1,2 @@
|
||||
class OrderQueueStation < ApplicationRecord
|
||||
end
|
||||
2
app/models/payment_method_setting.rb
Normal file
2
app/models/payment_method_setting.rb
Normal file
@@ -0,0 +1,2 @@
|
||||
class PaymentMethodSetting < ApplicationRecord
|
||||
end
|
||||
Reference in New Issue
Block a user