cats_core 1.0.40 → 1.0.44
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/cats/core/locations_controller.rb +1 -1
- data/app/models/cats/core/donation.rb +9 -2
- data/app/models/cats/core/gift_certificate.rb +0 -3
- data/app/models/cats/core/hrp.rb +1 -0
- data/app/models/cats/core/location.rb +2 -1
- data/db/migrate/20210716183620_create_cats_core_locations.rb +1 -0
- data/db/migrate/20210717031810_create_cats_core_hrps.rb +4 -0
- data/db/migrate/20210717032330_create_cats_core_donations.rb +9 -1
- data/db/migrate/20210717032602_create_cats_core_gift_certificates.rb +0 -4
- data/lib/cats/core/version.rb +1 -1
- data/spec/factories/cats/core/donations.rb +3 -1
- data/spec/factories/cats/core/gift_certificates.rb +0 -1
- data/spec/factories/cats/core/hrps.rb +1 -0
- data/spec/factories/cats/core/locations.rb +1 -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: 13bc9433b974cded9d6145d8bffc52e7669f3688b70ee861e5ad2c74110c3d2c
|
4
|
+
data.tar.gz: b8cdd5dae74d00d59ae9a75bf63aed63a8873dbd3a578b14c953ea2c52235a3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ae137b536163fbf766211a80ef278eebd5b4ab45023076b9c429594dd08cc5a976ad07bf3a063b11a3d601968112cd274385a54f1578cc10f9126589bfdb7a4
|
7
|
+
data.tar.gz: 1433945abdd51c8a3f367920cb7ebe63d291d71448f7d617324352c9bc958a16abfe3ae888f4237e42274db0dcc9f59e4fb4a626ebc13e0a6dc8a09373f9058f
|
@@ -8,14 +8,21 @@ module Cats
|
|
8
8
|
belongs_to :donor
|
9
9
|
belongs_to :hrp
|
10
10
|
belongs_to :currency, optional: true
|
11
|
+
belongs_to :commodity_category, optional: true
|
12
|
+
belongs_to :unit_of_measure, optional: true
|
11
13
|
|
12
|
-
validates :reference_no, :donation_type, :donated_on, presence: true
|
14
|
+
validates :reference_no, :amount, :donation_type, :donated_on, presence: true
|
13
15
|
validates :reference_no, uniqueness: true
|
14
16
|
validates :donation_type, inclusion: { in: DONATION_TYPES }
|
15
|
-
validates :currency,
|
17
|
+
validates :currency, presence: true, if: -> { donation_type == CASH }
|
18
|
+
validates :commodity_category, presence: true, if: -> { donation_type == KIND }
|
19
|
+
validates :unit_of_measure, presence: true, if: -> { donation_type == KIND }
|
16
20
|
|
17
21
|
delegate(:name, to: :donor, prefix: true)
|
18
22
|
delegate(:reference_no, to: :hrp, prefix: true)
|
23
|
+
delegate(:name, to: :commodity_category, prefix: true, allow_nil: true)
|
24
|
+
delegate(:code, to: :currency, prefix: true, allow_nil: true)
|
25
|
+
delegate(:abbreviation, to: :unit_of_measure, prefix: true, allow_nil: true)
|
19
26
|
end
|
20
27
|
end
|
21
28
|
end
|
@@ -2,12 +2,9 @@ module Cats
|
|
2
2
|
module Core
|
3
3
|
class GiftCertificate < ApplicationRecord
|
4
4
|
belongs_to :donation
|
5
|
-
belongs_to :commodity_category
|
6
5
|
|
7
6
|
validates :reference_no, presence: true, uniqueness: true
|
8
7
|
validates :gift_date, presence: true
|
9
|
-
|
10
|
-
delegate(:name, to: :commodity_category, prefix: true)
|
11
8
|
end
|
12
9
|
end
|
13
10
|
end
|
data/app/models/cats/core/hrp.rb
CHANGED
@@ -12,7 +12,8 @@ module Cats
|
|
12
12
|
|
13
13
|
has_ancestry
|
14
14
|
|
15
|
-
validates :name, :location_type, presence: true
|
15
|
+
validates :code, :name, :location_type, presence: true
|
16
|
+
validates :code, uniqueness: true
|
16
17
|
validates :location_type, inclusion: { in: LOCATION_TYPES }
|
17
18
|
validate :validate_location_parent
|
18
19
|
|
@@ -6,6 +6,10 @@ class CreateCatsCoreHrps < ActiveRecord::Migration[6.1]
|
|
6
6
|
t.string :season, null: false
|
7
7
|
t.string :status, null: false, default: 'Draft'
|
8
8
|
|
9
|
+
t.references :program,
|
10
|
+
null: false,
|
11
|
+
index: { name: 'program_on_hrp_indx' },
|
12
|
+
foreign_key: { to_table: :cats_core_programs }
|
9
13
|
t.references :ration,
|
10
14
|
null: true,
|
11
15
|
index: { name: 'ration_on_hrp_indx' },
|
@@ -12,11 +12,19 @@ class CreateCatsCoreDonations < ActiveRecord::Migration[6.1]
|
|
12
12
|
null: false,
|
13
13
|
index: { name: 'hrp_on_donation_indx' },
|
14
14
|
foreign_key: { to_table: :cats_core_hrps }
|
15
|
-
t.float :amount
|
15
|
+
t.float :amount, null: false
|
16
16
|
t.references :currency,
|
17
17
|
null: true,
|
18
18
|
index: { name: 'currency_on_donation_indx' },
|
19
19
|
foreign_key: { to_table: :cats_core_currencies }
|
20
|
+
t.references :commodity_category,
|
21
|
+
null: true,
|
22
|
+
index: { name: 'cc_on_donation_indx' },
|
23
|
+
foreign_key: { to_table: :cats_core_commodity_categories }
|
24
|
+
t.references :unit_of_measure,
|
25
|
+
null: true,
|
26
|
+
index: { name: 'uom_on_donation_indx' },
|
27
|
+
foreign_key: { to_table: :cats_core_unit_of_measures }
|
20
28
|
|
21
29
|
t.timestamps
|
22
30
|
end
|
@@ -8,10 +8,6 @@ class CreateCatsCoreGiftCertificates < ActiveRecord::Migration[6.1]
|
|
8
8
|
null: false,
|
9
9
|
index: { name: 'gc_on_donation_indx' },
|
10
10
|
foreign_key: { to_table: :cats_core_donations }
|
11
|
-
t.references :commodity_category,
|
12
|
-
null: false,
|
13
|
-
index: { name: 'gc_on_cc_indx' },
|
14
|
-
foreign_key: { to_table: :cats_core_commodity_categories }
|
15
11
|
|
16
12
|
t.string :vessel
|
17
13
|
t.string :port
|
data/lib/cats/core/version.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.0.
|
4
|
+
version: 1.0.44
|
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-09-
|
11
|
+
date: 2021-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_model_serializers
|