cats_core 1.3.24 → 1.3.28
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/cats/core/commodity.rb +12 -2
- data/app/models/cats/core/dispatch_plan.rb +4 -0
- data/app/models/cats/core/donation.rb +1 -1
- data/app/models/cats/core/gift_certificate.rb +2 -1
- data/app/models/cats/core/purchase_order.rb +9 -1
- data/app/services/cats/core/dispatch_plan_service.rb +1 -1
- data/db/migrate/20210717032330_create_cats_core_donations.rb +2 -0
- data/db/migrate/20210717032602_create_cats_core_gift_certificates.rb +7 -0
- data/db/migrate/20210717032855_create_cats_core_purchase_orders.rb +6 -0
- data/lib/cats/core/version.rb +1 -1
- data/spec/factories/cats/core/dispatch_plans.rb +4 -0
- data/spec/factories/cats/core/donations.rb +2 -0
- data/spec/factories/cats/core/gift_certificates.rb +4 -0
- data/spec/factories/cats/core/purchase_orders.rb +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83f9bfdc22317ca433717055d41463cf8d70aed78994c62a9a924bcead85c561
|
4
|
+
data.tar.gz: ffcb5a3122bd29126aa6902388af57a8979b414fa8378f5bd9f4c364aea6029d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b77e70633822f0dcc6db6caedd36c1f7baecd232b466a1bc975c02b29c32e7129fd6d767e800a5dd1c7b17ff9e2da9250f74d136797591a9c19043b07bddd8d
|
7
|
+
data.tar.gz: 2d29e1087a864c93d57a050f5fa6df3ff993abd63b060604f88bc7d2df282aa94ca5f48e1183b852a2974c1e5c0b36d5fd94082f3517181f1a2023363fb819bb
|
@@ -14,9 +14,19 @@ module Cats
|
|
14
14
|
|
15
15
|
# Arrival Statuses
|
16
16
|
AT_SOURCE = 'At Source'.freeze
|
17
|
-
|
17
|
+
AT_ORIGIN_PORT = 'At Origin Port'.freeze
|
18
|
+
IN_LOCAL_TRANSIT = 'In Local Transit'.freeze
|
19
|
+
IN_INTERNATIONAL_TRANSIT = 'In International Transit'.freeze
|
20
|
+
AT_DESTINATION_PORT = 'At Destination Port'.freeze
|
18
21
|
ARRIVED = 'Arrived'.freeze
|
19
|
-
ARRIVAL_STATUSES = [
|
22
|
+
ARRIVAL_STATUSES = [
|
23
|
+
AT_SOURCE,
|
24
|
+
AT_ORIGIN_PORT,
|
25
|
+
IN_LOCAL_TRANSIT,
|
26
|
+
IN_INTERNATIONAL_TRANSIT,
|
27
|
+
AT_DESTINATION_PORT,
|
28
|
+
ARRIVED
|
29
|
+
].freeze
|
20
30
|
|
21
31
|
belongs_to :unit_of_measure
|
22
32
|
belongs_to :source, polymorphic: true
|
@@ -19,6 +19,10 @@ module Cats
|
|
19
19
|
delegate(:request_reference, to: :dispatchable, allow_nil: true)
|
20
20
|
delegate(:request_quantity, to: :dispatchable, allow_nil: true)
|
21
21
|
|
22
|
+
before_save do |plan|
|
23
|
+
plan.upstream = !plan.dispatchable.nil? && plan.dispatchable_type == RhnRequest.name
|
24
|
+
end
|
25
|
+
|
22
26
|
def approve
|
23
27
|
raise(StandardError, 'Dispatch plan already approved.') if status == APPROVED
|
24
28
|
|
@@ -11,7 +11,7 @@ module Cats
|
|
11
11
|
belongs_to :commodity_category, optional: true
|
12
12
|
belongs_to :unit_of_measure, optional: true
|
13
13
|
|
14
|
-
validates :reference_no, :amount, :donation_type, :donated_on, presence: true
|
14
|
+
validates :reference_no, :amount, :donation_type, :donated_on, :agency, presence: true
|
15
15
|
validates :reference_no, uniqueness: true
|
16
16
|
validates :donation_type, inclusion: { in: DONATION_TYPES }
|
17
17
|
validates :currency, presence: true, if: -> { donation_type == CASH }
|
@@ -4,9 +4,10 @@ module Cats
|
|
4
4
|
belongs_to :donation, optional: true
|
5
5
|
belongs_to :commodity_category
|
6
6
|
belongs_to :unit_of_measure
|
7
|
+
belongs_to :destination_warehouse, class_name: 'Cats::Core::Location'
|
7
8
|
|
8
9
|
validates :reference_no, presence: true, uniqueness: true
|
9
|
-
validates :gift_date, :quantity, presence: true
|
10
|
+
validates :gift_date, :quantity, :requested_by, :request_reference, presence: true
|
10
11
|
validates :quantity, numericality: { greater_than: 0 }
|
11
12
|
|
12
13
|
delegate(:name, to: :commodity_category, prefix: true)
|
@@ -1,13 +1,21 @@
|
|
1
1
|
module Cats
|
2
2
|
module Core
|
3
3
|
class PurchaseOrder < ApplicationRecord
|
4
|
+
LOCAL = 'Local'.freeze
|
5
|
+
FOREIGN = 'Foreign'.freeze
|
6
|
+
PURCHASE_TYPES = [LOCAL, FOREIGN].freeze
|
7
|
+
|
4
8
|
belongs_to :donation
|
5
9
|
belongs_to :commodity_category
|
10
|
+
belongs_to :unit, class_name: 'Cats::Core::UnitOfMeasure'
|
6
11
|
|
7
|
-
validates :reference_no, :order_date, :supplier, presence: true
|
12
|
+
validates :reference_no, :order_date, :supplier, :quantity, :purchase_type, presence: true
|
8
13
|
validates :reference_no, uniqueness: true
|
14
|
+
validates :purchase_type, inclusion: { in: PURCHASE_TYPES }
|
15
|
+
validates :quantity, numericality: { greater_than: 0 }
|
9
16
|
|
10
17
|
delegate(:name, to: :commodity_category, prefix: true)
|
18
|
+
delegate(:name, to: :unit, prefix: true)
|
11
19
|
|
12
20
|
after_create :update_donation
|
13
21
|
|
@@ -4,7 +4,9 @@ class CreateCatsCoreDonations < ActiveRecord::Migration[6.1]
|
|
4
4
|
t.string :reference_no, unique: true
|
5
5
|
t.string :description
|
6
6
|
t.string :donation_type, null: false
|
7
|
+
t.string :shipping_reference
|
7
8
|
t.date :donated_on, null: false
|
9
|
+
t.string :agency, null: false
|
8
10
|
t.references :donor,
|
9
11
|
null: false,
|
10
12
|
index: { name: 'donor_on_donation_indx' },
|
@@ -24,8 +24,15 @@ class CreateCatsCoreGiftCertificates < ActiveRecord::Migration[6.1]
|
|
24
24
|
null: false,
|
25
25
|
index: { name: 'uom_on_gc_indx' },
|
26
26
|
foreign_key: { to_table: :cats_core_unit_of_measures }
|
27
|
+
t.references :destination_warehouse,
|
28
|
+
null: false,
|
29
|
+
index: { name: 'dw_on_gc_indx' },
|
30
|
+
foreign_key: { to_table: :cats_core_locations }
|
27
31
|
t.float :estimated_price
|
28
32
|
t.float :estimated_tax
|
33
|
+
t.string :registration_no
|
34
|
+
t.string :requested_by, null: false
|
35
|
+
t.string :request_reference, null: false
|
29
36
|
|
30
37
|
t.timestamps
|
31
38
|
end
|
@@ -5,6 +5,8 @@ class CreateCatsCorePurchaseOrders < ActiveRecord::Migration[6.1]
|
|
5
5
|
t.date :order_date, null: false
|
6
6
|
t.string :requisition_no
|
7
7
|
t.string :supplier, null: false
|
8
|
+
t.float :quantity, null: false
|
9
|
+
t.string :purchase_type, null: false
|
8
10
|
|
9
11
|
t.references :donation,
|
10
12
|
null: false,
|
@@ -14,6 +16,10 @@ class CreateCatsCorePurchaseOrders < ActiveRecord::Migration[6.1]
|
|
14
16
|
null: false,
|
15
17
|
index: { name: 'po_on_cc_indx' },
|
16
18
|
foreign_key: { to_table: :cats_core_commodity_categories }
|
19
|
+
t.references :unit,
|
20
|
+
null: false,
|
21
|
+
index: { name: 'unit_on_po_indx' },
|
22
|
+
foreign_key: { to_table: :cats_core_unit_of_measures }
|
17
23
|
|
18
24
|
t.timestamps
|
19
25
|
end
|
data/lib/cats/core/version.rb
CHANGED
@@ -5,6 +5,7 @@ FactoryBot.define do
|
|
5
5
|
donation
|
6
6
|
commodity_category { donation.commodity_category }
|
7
7
|
unit_of_measure
|
8
|
+
destination_warehouse factory: :warehouse
|
8
9
|
vessel { FFaker::Name.name }
|
9
10
|
port { FFaker::Name.name }
|
10
11
|
customs_declaration_no { FFaker::Name.name }
|
@@ -14,5 +15,8 @@ FactoryBot.define do
|
|
14
15
|
quantity { 1.5 }
|
15
16
|
estimated_price { 1.5 }
|
16
17
|
estimated_tax { 1.5 }
|
18
|
+
registration_no { FFaker::Name.name }
|
19
|
+
requested_by { FFaker::Name.name }
|
20
|
+
request_reference { FFaker::Name.name }
|
17
21
|
end
|
18
22
|
end
|
@@ -4,7 +4,10 @@ FactoryBot.define do
|
|
4
4
|
order_date { Date.today }
|
5
5
|
requisition_no { FFaker::Name.name }
|
6
6
|
supplier { FFaker::Name.name }
|
7
|
+
quantity { 100 }
|
8
|
+
purchase_type { Cats::Core::PurchaseOrder::LOCAL }
|
7
9
|
donation
|
8
10
|
commodity_category
|
11
|
+
unit factory: :unit_of_measure
|
9
12
|
end
|
10
13
|
end
|
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.3.
|
4
|
+
version: 1.3.28
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henock L.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-02-
|
11
|
+
date: 2022-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_model_serializers
|