cats_core 1.3.25 → 1.3.26

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b3911b5d99f63d3bf4e2f3b1f6a1a1cf64107affebb1eed6e33c69a51a38d28
4
- data.tar.gz: 7be0d6a7f7dfe4e92541d44655a41d35450d9e782dc7b6436b52ecdca20f6647
3
+ metadata.gz: 2f481bcc7803014db0c3db658b15064be22767d067276c5c89dbf783ae38b3af
4
+ data.tar.gz: 316ad648dcbb23aa8615354922c83c0aa287f6a66f5520fe2bf50ba42d757295
5
5
  SHA512:
6
- metadata.gz: b828e8e63c64cd816007746b340ca942b875f702026e2d1949e3176f7235c7d373a8aedb782706a2921f1f918fef31ef3dc2df05ab4a80ef2072dd4e32c2d949
7
- data.tar.gz: beac85a8bcfad3ab5278f99bcb91eab751ebfb82d7ac10feb00e67e753d4831ed8a8a9f8b49524c65e8f7dc4811bd3c0e0cc2451c65be220c4dea22bef21c511
6
+ metadata.gz: 1d4ea070ce7b41661c532d8e5f6b7d9f499ac7d566698681e603c331aef729d2341b70d16df730f5d8d9f0bd947e8c391afe40244de26af2c1428a407a043076
7
+ data.tar.gz: ee48e5c321a596e34cd9215dfe8b8219e67cbd9c9e8e392dc620a94e68b5220e04795a65267c24063f40b90a5f30f913acab6b82b5770a2b49c649e0719d8cb5
@@ -14,9 +14,19 @@ module Cats
14
14
 
15
15
  # Arrival Statuses
16
16
  AT_SOURCE = 'At Source'.freeze
17
- IN_TRANSIT = 'In Transit'.freeze
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 = [AT_SOURCE, IN_TRANSIT, ARRIVED].freeze
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
@@ -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 }
@@ -5,6 +5,7 @@ class CreateCatsCoreDonations < ActiveRecord::Migration[6.1]
5
5
  t.string :description
6
6
  t.string :donation_type, null: false
7
7
  t.date :donated_on, null: false
8
+ t.string :agency, null: false
8
9
  t.references :donor,
9
10
  null: false,
10
11
  index: { name: 'donor_on_donation_indx' },
@@ -1,5 +1,5 @@
1
1
  module Cats
2
2
  module Core
3
- VERSION = '1.3.25'.freeze
3
+ VERSION = '1.3.26'.freeze
4
4
  end
5
5
  end
@@ -4,6 +4,7 @@ FactoryBot.define do
4
4
  description { FFaker::Name.name }
5
5
  donation_type { Cats::Core::Donation::KIND }
6
6
  donated_on { Date.today }
7
+ agency { 'WFP' }
7
8
  donor
8
9
  plan
9
10
  amount { 100 }
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.25
4
+ version: 1.3.26
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-04 00:00:00.000000000 Z
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