cats_core 1.1.27 → 1.1.31
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/stack.rb +1 -1
- data/app/serializers/cats/core/commodity_category_serializer.rb +6 -2
- data/app/serializers/cats/core/currency_serializer.rb +6 -2
- data/app/serializers/cats/core/dispatch_serializer.rb +9 -5
- data/app/serializers/cats/core/dispatch_transaction_serializer.rb +7 -3
- data/app/serializers/cats/core/location_serializer.rb +6 -2
- data/app/serializers/cats/core/receipt_serializer.rb +7 -3
- data/app/serializers/cats/core/receipt_transaction_serializer.rb +9 -5
- data/app/serializers/cats/core/role_serializer.rb +6 -2
- data/app/serializers/cats/core/unit_of_measure_serializer.rb +6 -2
- data/app/serializers/cats/core/user_serializer.rb +6 -2
- data/lib/cats/core/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b571da2ebc4626e336d086166396fcd2c653d68f579344ca3676b51af2039ea9
|
4
|
+
data.tar.gz: ac911493b34fd36b4fa10c880712450606e6f53c4cefc2e11490914f87b029c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc57fb3aaad06227d4a802a70810ff56a1b0552d3b63014026942c79a0fd3c4cc1b0c954fb4629ff52d8e0b516fbad4c4c63b065b5df5ca8d4a9752bf80e20f4
|
7
|
+
data.tar.gz: 6f788725919d5a6627410ded3a6c046a21abe7d7f1efb48de82592a8221dddb917fa6fbd1e7f086b02d1c8172ce42cae46ed6b100ec6b8b1ab95e658c01622d3
|
@@ -20,7 +20,7 @@ module Cats
|
|
20
20
|
validates :commodity_status, inclusion: { in: Cats::Core::Commodity::COMMODITY_STATUSES }
|
21
21
|
validates :stack_status, inclusion: { in: STACK_STATUSES }
|
22
22
|
validate :validate_coordinates, :validate_dimensions, :validate_distance_from_wall, :validate_overlap,
|
23
|
-
:validate_space_between_stack
|
23
|
+
:validate_space_between_stack, unless: -> { store && store.code == 'SUP-STORE' }
|
24
24
|
|
25
25
|
after_save :update_store_space
|
26
26
|
|
@@ -1,3 +1,7 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
module Cats
|
2
|
+
module Core
|
3
|
+
class CommodityCategorySerializer < ActiveModel::Serializer
|
4
|
+
attributes :id, :code, :name, :description, :parent_id
|
5
|
+
end
|
6
|
+
end
|
3
7
|
end
|
@@ -1,8 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
module Cats
|
2
|
+
module Core
|
3
|
+
class DispatchSerializer < ActiveModel::Serializer
|
4
|
+
attributes :id, :reference_no, :allocation_item_id, :transporter_id, :transporter_name, :plate_no, :driver_name,
|
5
|
+
:driver_phone, :quantity, :remark, :prepared_by_id, :prepared_by_email, :dispatch_status, :destination
|
4
6
|
|
5
|
-
|
6
|
-
|
7
|
+
def destination
|
8
|
+
object.allocation_item.destination.name
|
9
|
+
end
|
10
|
+
end
|
7
11
|
end
|
8
12
|
end
|
@@ -1,4 +1,8 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
module Cats
|
2
|
+
module Core
|
3
|
+
class DispatchTransactionSerializer < ActiveModel::Serializer
|
4
|
+
attributes :id, :source_id, :source_code, :destination_id, :destination_reference_no, :quantity,
|
5
|
+
:transaction_date, :status
|
6
|
+
end
|
7
|
+
end
|
4
8
|
end
|
@@ -1,3 +1,7 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
module Cats
|
2
|
+
module Core
|
3
|
+
class LocationSerializer < ActiveModel::Serializer
|
4
|
+
attributes :id, :code, :name, :location_type, :description, :parent_id
|
5
|
+
end
|
6
|
+
end
|
3
7
|
end
|
@@ -1,4 +1,8 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
module Cats
|
2
|
+
module Core
|
3
|
+
class ReceiptSerializer < ActiveModel::Serializer
|
4
|
+
attributes :id, :dispatch_id, :dispatch_reference_no, :commodity_status, :quantity, :status, :remark,
|
5
|
+
:prepared_by_id, :prepared_by_email
|
6
|
+
end
|
7
|
+
end
|
4
8
|
end
|
@@ -1,8 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
module Cats
|
2
|
+
module Core
|
3
|
+
class ReceiptTransactionSerializer < ActiveModel::Serializer
|
4
|
+
attributes :id, :source_id, :dispatch_reference, :destination_id, :destination_code, :quantity, :transaction_date,
|
5
|
+
:status
|
4
6
|
|
5
|
-
|
6
|
-
|
7
|
+
def dispatch_reference
|
8
|
+
object.source.dispatch.reference_no
|
9
|
+
end
|
10
|
+
end
|
7
11
|
end
|
8
12
|
end
|
@@ -1,3 +1,7 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
module Cats
|
2
|
+
module Core
|
3
|
+
class UserSerializer < ActiveModel::Serializer
|
4
|
+
attributes :id, :first_name, :last_name, :email, :phone_number, :active, :details, :application_module_id
|
5
|
+
end
|
6
|
+
end
|
3
7
|
end
|
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.1.
|
4
|
+
version: 1.1.31
|
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-10-
|
11
|
+
date: 2021-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_model_serializers
|
@@ -409,7 +409,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
409
409
|
- !ruby/object:Gem::Version
|
410
410
|
version: '0'
|
411
411
|
requirements: []
|
412
|
-
rubygems_version: 3.2.
|
412
|
+
rubygems_version: 3.2.22
|
413
413
|
signing_key:
|
414
414
|
specification_version: 4
|
415
415
|
summary: Core module for CATS applications
|