order queue and print station

This commit is contained in:
Min Zeya Phyo
2017-04-03 22:30:27 +06:30
parent 30b4a0f5ff
commit 95454b4f0f
22 changed files with 158 additions and 9 deletions

View File

@@ -0,0 +1,4 @@
class CashierLoginLog < ApplicationRecord
belongs_to :cashier_station
belongs_to :employee
end

View File

@@ -0,0 +1,2 @@
class CashierTerminal < ApplicationRecord
end

2
app/models/employee.rb Normal file
View File

@@ -0,0 +1,2 @@
class Employee < ApplicationRecord
end

View File

@@ -0,0 +1,3 @@
class OrderQueueProcessByZone < ApplicationRecord
belongs_to :zone
end

View File

@@ -0,0 +1,3 @@
class OrderQueueProcessLog < ApplicationRecord
belongs_to :order
end

View File

@@ -0,0 +1,2 @@
class OrderQueueStation < ApplicationRecord
end

View File

@@ -0,0 +1,2 @@
class PaymentMethodSetting < ApplicationRecord
end