cats_core 1.1.27 → 1.1.28
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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: 3bb7f4884a8008cb1804e3b27f2dd5794209ea373d7a417a97efba3e4999fd2c
|
4
|
+
data.tar.gz: d584449483c92b6c6b012de61fbeb89f330544fd1bba69737ff4bbc0fff5acae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 354676867bc3fa31abb3e368791e70e3ef97af8efe4900e55aa38200b0a3ca5cefb6c0b53ecd937df97eccbf90f86e3611956027505e954f9dd94436356cd382
|
7
|
+
data.tar.gz: d804eb6c6735fc5179d3a48408a1b25be1b04a3e7fa9f323648a34051f2c1d64ed9f41fe09a7f7e7b9accc1eaf6de544a32f74bfe8f4e768a8cf865d7d144a4e
|
@@ -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, :transaction_date,
|
5
|
+
: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.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: 2021-10-
|
11
|
+
date: 2021-10-10 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
|