cats_core 1.1.9 → 1.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/cats/core/dispatch_transactions_controller.rb +5 -0
- data/app/controllers/cats/core/locations_controller.rb +5 -0
- data/app/controllers/cats/core/receipt_transactions_controller.rb +5 -0
- data/app/models/cats/core/allocation.rb +1 -0
- data/app/models/cats/core/notification_rule.rb +8 -0
- data/app/models/cats/core/rhn_request.rb +2 -1
- data/config/routes.rb +6 -2
- data/db/migrate/20210718042755_create_cats_core_rhn_requests.rb +1 -0
- data/db/migrate/20211002050739_create_cats_core_notification_rules.rb +10 -0
- data/lib/cats/core/version.rb +1 -1
- data/lib/cats_core.rb +1 -0
- data/spec/factories/cats/core/notification_rules.rb +6 -0
- data/spec/factories/cats/core/rhn_requests.rb +1 -0
- metadata +19 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7f1333a43773f878d178ee7f3daad6af88994875ac5fc4584e4b8ebf3fb0c87
|
4
|
+
data.tar.gz: c37663a1516cbc7847360a10efa6dfbf64d2f743b59beebc0916d0ec4b0766fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b15f41ff65b916ae635fb575c95a24d6f7982fd79b517581f47f7cf09e50b9f90953df6b8d41e5776857807ee7cf480d9d7169365c57f5f4260ae73ea11620e
|
7
|
+
data.tar.gz: 428f6deffeafecd95811843973aaae91567543b408955d556c35049f0cf94bc1b2addcd0a2e417728e7fd8cb5190ac8cdb930568570ae3ffa5f761189bf58732
|
@@ -3,6 +3,11 @@ module Cats
|
|
3
3
|
class DispatchTransactionsController < ApplicationController
|
4
4
|
include Common
|
5
5
|
|
6
|
+
def index
|
7
|
+
transactions = Cats::Core::DispatchTransaction.where(destination_id: params[:id])
|
8
|
+
render json: { success: true, data: serialize(transactions) }
|
9
|
+
end
|
10
|
+
|
6
11
|
private
|
7
12
|
|
8
13
|
def model_params
|
@@ -13,6 +13,11 @@ module Cats
|
|
13
13
|
render json: { success: true, data: serialize(parent.children) }
|
14
14
|
end
|
15
15
|
|
16
|
+
def filter
|
17
|
+
query = Cats::Core::Location.ransack(params[:q])
|
18
|
+
render json: { success: true, data: serialize(query.result) }
|
19
|
+
end
|
20
|
+
|
16
21
|
private
|
17
22
|
|
18
23
|
def model_params
|
@@ -3,6 +3,11 @@ module Cats
|
|
3
3
|
class ReceiptTransactionsController < ApplicationController
|
4
4
|
include Common
|
5
5
|
|
6
|
+
def index
|
7
|
+
transactions = Cats::Core::ReceiptTransaction.where(source_id: params[:id])
|
8
|
+
render json: { success: true, data: serialize(transactions) }
|
9
|
+
end
|
10
|
+
|
6
11
|
private
|
7
12
|
|
8
13
|
def model_params
|
@@ -8,6 +8,7 @@ module Cats
|
|
8
8
|
belongs_to :rhn_request, optional: true
|
9
9
|
belongs_to :commodity
|
10
10
|
belongs_to :source, class_name: 'Cats::Core::Location'
|
11
|
+
has_many :allocation_items
|
11
12
|
|
12
13
|
validates :commodity_status, :allocation_status, presence: true
|
13
14
|
validates :reference_no, presence: true, uniqueness: true
|
@@ -3,8 +3,9 @@ module Cats
|
|
3
3
|
class RhnRequest < ApplicationRecord
|
4
4
|
belongs_to :commodity
|
5
5
|
|
6
|
-
validates :reference_no, :request_date, presence: true
|
6
|
+
validates :reference_no, :request_date, :quantity, presence: true
|
7
7
|
validates :reference_no, uniqueness: true
|
8
|
+
validates :quantity, numericality: { greater_than: 0 }
|
8
9
|
|
9
10
|
delegate(:batch_no, to: :commodity, prefix: true)
|
10
11
|
end
|
data/config/routes.rb
CHANGED
@@ -23,6 +23,8 @@ Cats::Core::Engine.routes.draw do
|
|
23
23
|
get 'warehouses', controller: :users, action: :warehouses
|
24
24
|
end
|
25
25
|
end
|
26
|
+
|
27
|
+
post '/locations/filter', controller: :locations, action: :filter
|
26
28
|
resources :locations, except: %i[destroy] do
|
27
29
|
member do
|
28
30
|
get 'children'
|
@@ -59,6 +61,7 @@ Cats::Core::Engine.routes.draw do
|
|
59
61
|
get '/dispatches/search', controller: :dispatches, action: :search, as: :search_dispatches
|
60
62
|
resources :dispatches, except: %i[index destroy] do
|
61
63
|
member do
|
64
|
+
get 'transactions', controller: :dispatch_transactions, action: :index
|
62
65
|
get 'receipts', controller: :receipts, action: :index
|
63
66
|
get 'commodity'
|
64
67
|
post 'approve'
|
@@ -66,12 +69,13 @@ Cats::Core::Engine.routes.draw do
|
|
66
69
|
post 'confirm'
|
67
70
|
end
|
68
71
|
end
|
69
|
-
resources :dispatch_transactions, except: %i[new edit destroy]
|
72
|
+
resources :dispatch_transactions, except: %i[index new edit destroy]
|
70
73
|
resources :receipts, except: %i[index new edit destroy] do
|
71
74
|
member do
|
75
|
+
get 'transactions', controller: :receipt_transactions, action: :index
|
72
76
|
post 'start_stacking'
|
73
77
|
post 'finish_stacking'
|
74
78
|
end
|
75
79
|
end
|
76
|
-
resources :receipt_transactions, except: %i[new edit destroy]
|
80
|
+
resources :receipt_transactions, except: %i[index new edit destroy]
|
77
81
|
end
|
@@ -6,6 +6,7 @@ class CreateCatsCoreRhnRequests < ActiveRecord::Migration[6.1]
|
|
6
6
|
null: false,
|
7
7
|
index: { name: 'commodity_on_rhn_indx' },
|
8
8
|
foreign_key: { to_table: :cats_core_commodities }
|
9
|
+
t.float :quantity, null: false
|
9
10
|
t.date :request_date, null: false
|
10
11
|
t.string :requested_by
|
11
12
|
|
data/lib/cats/core/version.rb
CHANGED
data/lib/cats_core.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cats_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henock L.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_model_serializers
|
@@ -94,6 +94,20 @@ dependencies:
|
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: 6.1.4
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: ransack
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 2.4.2
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.4.2
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
112
|
name: rolify
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -252,6 +266,7 @@ files:
|
|
252
266
|
- app/models/cats/core/menu.rb
|
253
267
|
- app/models/cats/core/menu_item.rb
|
254
268
|
- app/models/cats/core/notification.rb
|
269
|
+
- app/models/cats/core/notification_rule.rb
|
255
270
|
- app/models/cats/core/operator.rb
|
256
271
|
- app/models/cats/core/program.rb
|
257
272
|
- app/models/cats/core/purchase_order.rb
|
@@ -325,6 +340,7 @@ files:
|
|
325
340
|
- db/migrate/20210727074646_create_cats_core_receipts.rb
|
326
341
|
- db/migrate/20210814160628_create_cats_core_receipt_transactions.rb
|
327
342
|
- db/migrate/20210814175406_create_cats_core_stack_transactions.rb
|
343
|
+
- db/migrate/20211002050739_create_cats_core_notification_rules.rb
|
328
344
|
- lib/cats/core.rb
|
329
345
|
- lib/cats/core/engine.rb
|
330
346
|
- lib/cats/core/version.rb
|
@@ -347,6 +363,7 @@ files:
|
|
347
363
|
- spec/factories/cats/core/locations.rb
|
348
364
|
- spec/factories/cats/core/menu_items.rb
|
349
365
|
- spec/factories/cats/core/menus.rb
|
366
|
+
- spec/factories/cats/core/notification_rules.rb
|
350
367
|
- spec/factories/cats/core/notifications.rb
|
351
368
|
- spec/factories/cats/core/operators.rb
|
352
369
|
- spec/factories/cats/core/programs.rb
|