cats_core 1.5.9 → 1.5.10
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b4bc4794cd5e6b77b2db5b95b9164ad5a6d3cd031a7ca32716586b4e89ff6d9
|
4
|
+
data.tar.gz: d26bae7c4c4a290c17aeec1c4bb059809ca0b5112f46991f9aaad660868dac0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b60c83380471fb433a0a2a5174a676a23d633a622a8edefcb391b9555fc132a6fed25695a8bcd7fff771e4ac8c86318666a85b896f6e6eb8da2a244c0546936
|
7
|
+
data.tar.gz: 55d298f3113118d57864e4e67bdf5d9a8960061e2b1b24d7651b0ca8e63b2d8e619f52230c88181239ef9b4a010a7f1dc36dbe8650bcb2318ba8a736487d5faf
|
@@ -87,8 +87,8 @@ module Cats
|
|
87
87
|
woreda: detail.beneficiary_round_plan_item.round_plan_item.woreda.name,
|
88
88
|
fdp: detail.beneficiary_round_plan_item.round_plan_item.fdp.name,
|
89
89
|
commodity_category: detail.round_ration.commodity_category.name,
|
90
|
-
unit_id: detail.
|
91
|
-
unit: detail.
|
90
|
+
unit_id: detail.unit_id,
|
91
|
+
unit: detail.unit.abbreviation,
|
92
92
|
quantity: detail.quantity,
|
93
93
|
source_id: nil,
|
94
94
|
destination_id: detail.beneficiary_round_plan_item.round_plan_item.fdp.id,
|
@@ -19,9 +19,10 @@ module Cats
|
|
19
19
|
round_rations.each do |ration|
|
20
20
|
quantity = (no_of_days / ration.no_of_days * ration.quantity) * plan_item.beneficiaries *
|
21
21
|
round_plan.rounds.count
|
22
|
+
quantity = quantity.truncate(2)
|
22
23
|
unit = ration.unit
|
23
24
|
if ration.unit.abbreviation.downcase != 'pc'
|
24
|
-
quantity = UnitConversion.convert(unit, mt, quantity)
|
25
|
+
quantity = UnitConversion.convert(unit, mt, quantity).truncate(2)
|
25
26
|
unit = mt
|
26
27
|
end
|
27
28
|
|
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.5.
|
4
|
+
version: 1.5.10
|
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-10-
|
11
|
+
date: 2022-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_model_serializers
|